[C++]80 Slot Pazar

LDrago

The Dragon's Excalibur
Üye
Mesaj
162
Çözümler
1
Beğeni
179
Puan
726
Ticaret Puanı
0
Sa arkadaşlar yapamayanlar için paylaşıyorum...

common/length.h açılır ve aratılır


Kod:
SHOP_HOST_ITEM_MAX_NUM = 40

Alttaki Gibi Değiştirilir
Kod:
SHOP_HOST_ITEM_MAX_NUM = 80

Tekrar Aratılır
Kod:
SHOP_PRICELIST_MAX_NUM = 40

Alttaki Gibi Değiştirilir
Kod:
SHOP_PRICELIST_MAX_NUM = 80


game/shop.cpp açılır ve aratılır
Kod:
m_pGrid = M2_NEW CGrid(5, 9)

Alttaki Gibi Değiştirilir
Kod:
m_pGrid = M2_NEW CGrid(10, 9)

game/shop_manager.cpp açılır ve aratılır
Kod:
CGrid grid = CGrid(5, 9)

Alttaki Gibi Değiştirilir
Kod:
CGrid grid = CGrid(10, 9)

CLİENT


UserInterface/Packet.h Açılır ve Aratılır

Kod:
SHOP_HOST_ITEM_MAX_NUM = 40

Alttaki Gibi Değiştirilir
Kod:
SHOP_HOST_ITEM_MAX_NUM = 80

Bitmiştir ve Son Olarak
Alttakı Kodu Metin belgesi acarak içine yapıstırın Farkı kaydet dıyerek Dosya adını shopdialog.py yapınız.

shopdialog.py uiscript e atıp sorunsuz kullanabilirsiniz.

Kod:
import uiScriptLocale

window = {
   "name" : "ShopDialog",


   "x" : SCREEN_WIDTH - 400,
   "y" : 10,


   "style" : ("movable", "float",),


   "width" : 184 + 160,
   "height" : 328,


   "children" :
   (
       {
           "name" : "board",
           "type" : "board",
           "style" : ("attach",),


           "x" : 0,
           "y" : 0,


           "width" : 184 + 160,
           "height" : 328,


           "children" :
           (
               ## Title
               {
                   "name" : "TitleBar",
                   "type" : "titlebar",
                   "style" : ("attach",),


                   "x" : 8,
                   "y" : 8,


                   "width" : 169 + 160,
                   "color" : "gray",


                   "children" :
                   (
                       { "name":"TitleName", "type":"text", "x":84+80, "y":4, "text":uiScriptLocale.SHOP_TITLE, "text_horizontal_align":"center" },
                   ),
               },


               ## Item Slot
               {
                   "name" : "ItemSlot",
                   "type" : "grid_table",


                   "x" : 12,
                   "y" : 34,


                   "start_index" : 0,
                   "x_count" : 10,
                   "y_count" : 8,
                   "x_step" : 32,
                   "y_step" : 32,


                   "image" : "d:/ymir work/ui/public/Slot_Base.sub",
               },


               ## Buy
               {
                   "name" : "BuyButton",
                   "type" : "toggle_button",


                   "x" : 21,
                   "y" : 295,


                   "width" : 61,
                   "height" : 21,


                   "text" : uiScriptLocale.SHOP_BUY,


                   "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                   "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                   "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
               },


               ## Sell
               {
                   "name" : "SellButton",
                   "type" : "toggle_button",


                   "x" : 104 + 160,
                   "y" : 295,


                   "width" : 61,
                   "height" : 21,


                   "text" : uiScriptLocale.SHOP_SELL,


                   "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                   "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                   "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
               },


               ## Close
               {
                   "name" : "CloseButton",
                   "type" : "button",


                   "x" : 0,
                   "y" : 295,


                   "horizontal_align" : "center",


                   "text" : uiScriptLocale.PRIVATE_SHOP_CLOSE_BUTTON,


                   "default_image" : "d:/ymir work/ui/public/large_button_01.sub",
                   "over_image" : "d:/ymir work/ui/public/large_button_02.sub",
                   "down_image" : "d:/ymir work/ui/public/large_button_03.sub",
               },


           ),
       },
   ),
}

Düzenleme: Konu içeriği test edildi ve düzgün çalışıyor ancak eksik olduğu için bu güncelleme yazısı eklenmiştir.
Pazar kurarken item koyulan ekran 40lı olarak kalıyor fakat pazar ismine tıklayıp açılınca 80 slot olarak açılıyor. Bunu çözmek için bir üstteki shopdialog.py kodlarını inceleyerek, uiscript/privateshopbuilder.py dosyasında da ilgili yerlerde düzenleme yapıp, pazar kurma(item koyulan) ekranını büyütmeniz gerekiyor.
 
En son bir moderatör tarafından düzenlenmiş:
Sa arkadaşlar yapamayanlar için paylaşıyorum...

common/length.h açılır ve aratılır

Kod:
SHOP_HOST_ITEM_MAX_NUM = 40

Alttaki Gibi Değiştirilir
Kod:
SHOP_HOST_ITEM_MAX_NUM = 80

Tekrar Aratılır
Kod:
SHOP_PRICELIST_MAX_NUM = 40

Alttaki Gibi Değiştirilir
Kod:
SHOP_PRICELIST_MAX_NUM = 80


game/shop.cpp açılır ve aratılır
Kod:
m_pGrid = M2_NEW CGrid(5, 9)

Alttaki Gibi Değiştirilir
Kod:
m_pGrid = M2_NEW CGrid(10, 9)

game/shop_manager.cpp açılır ve aratılır
Kod:
CGrid grid = CGrid(5, 9)

Alttaki Gibi Değiştirilir
Kod:
CGrid grid = CGrid(10, 9)

CLİENT


UserInterface/Packet.h Açılır ve Aratılır
Kod:
SHOP_HOST_ITEM_MAX_NUM = 40

Alttaki Gibi Değiştirilir
Kod:
SHOP_HOST_ITEM_MAX_NUM = 80

Bitmiştir ve Son Olarak
Alttakı Kodu Metin belgesi acarak içine yapıstırın Farkı kaydet dıyerek Dosya adını shopdialog.py yapınız.

shopdialog.py uiscript e atıp sorunsuz kullanabilirsiniz.

Kod:
import uiScriptLocale

window = {
   "name" : "ShopDialog",


   "x" : SCREEN_WIDTH - 400,
   "y" : 10,


   "style" : ("movable", "float",),


   "width" : 184 + 160,
   "height" : 328,


   "children" :
   (
       {
           "name" : "board",
           "type" : "board",
           "style" : ("attach",),


           "x" : 0,
           "y" : 0,


           "width" : 184 + 160,
           "height" : 328,


           "children" :
           (
               ## Title
               {
                   "name" : "TitleBar",
                   "type" : "titlebar",
                   "style" : ("attach",),


                   "x" : 8,
                   "y" : 8,


                   "width" : 169 + 160,
                   "color" : "gray",


                   "children" :
                   (
                       { "name":"TitleName", "type":"text", "x":84+80, "y":4, "text":uiScriptLocale.SHOP_TITLE, "text_horizontal_align":"center" },
                   ),
               },


               ## Item Slot
               {
                   "name" : "ItemSlot",
                   "type" : "grid_table",


                   "x" : 12,
                   "y" : 34,


                   "start_index" : 0,
                   "x_count" : 10,
                   "y_count" : 8,
                   "x_step" : 32,
                   "y_step" : 32,


                   "image" : "d:/ymir work/ui/public/Slot_Base.sub",
               },


               ## Buy
               {
                   "name" : "BuyButton",
                   "type" : "toggle_button",


                   "x" : 21,
                   "y" : 295,


                   "width" : 61,
                   "height" : 21,


                   "text" : uiScriptLocale.SHOP_BUY,


                   "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                   "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                   "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
               },


               ## Sell
               {
                   "name" : "SellButton",
                   "type" : "toggle_button",


                   "x" : 104 + 160,
                   "y" : 295,


                   "width" : 61,
                   "height" : 21,


                   "text" : uiScriptLocale.SHOP_SELL,


                   "default_image" : "d:/ymir work/ui/public/middle_button_01.sub",
                   "over_image" : "d:/ymir work/ui/public/middle_button_02.sub",
                   "down_image" : "d:/ymir work/ui/public/middle_button_03.sub",
               },


               ## Close
               {
                   "name" : "CloseButton",
                   "type" : "button",


                   "x" : 0,
                   "y" : 295,


                   "horizontal_align" : "center",


                   "text" : uiScriptLocale.PRIVATE_SHOP_CLOSE_BUTTON,


                   "default_image" : "d:/ymir work/ui/public/large_button_01.sub",
                   "over_image" : "d:/ymir work/ui/public/large_button_02.sub",
                   "down_image" : "d:/ymir work/ui/public/large_button_03.sub",
               },


           ),
       },
   ),
}

Hocam 1 1 aynısını yaptım Channel hata veriyor
 
Ch açılıyor gözüküyor derken Puttyden tablolar vb yükleniyor. Ama chler kapalı yanlıs ıd şifre yazınca tepki veriyor yanlıs ıd şifre diye
 
db içindeki syserr atabilir misiniz?

Buyrun Komple kopyaladım
Kod:
Jul 13 17:00:04.225236 :: [    86550] return 0/0/0 async 0/0/0
Jul 13 17:00:09.225420 :: [    86600] return 0/0/0 async 0/0/0
Jul 13 17:00:14.225468 :: [    86650] return 0/0/0 async 0/0/0
Jul 13 17:00:19.222940 :: [    86700] return 0/0/0 async 0/0/0
Jul 13 17:00:24.225568 :: [    86750] return 0/0/0 async 0/0/0
Jul 13 17:00:29.225441 :: [    86800] return 0/0/0 async 0/0/0
Jul 13 17:00:34.225510 :: [    86850] return 0/0/0 async 0/0/0
Jul 13 17:00:39.225535 :: [    86900] return 0/0/0 async 0/0/0
Jul 13 17:00:44.225971 :: [    86950] return 0/0/0 async 0/0/0
Jul 13 17:00:49.226538 :: [    87000] return 0/0/0 async 0/0/0
Jul 13 17:00:54.226432 :: [    87050] return 0/0/0 async 0/0/0
Jul 13 17:00:59.227796 :: [    87100] return 0/0/0 async 0/0/0
Jul 13 17:01:04.226330 :: [    87150] return 0/0/0 async 0/0/0
Jul 13 17:01:09.232282 :: [    87200] return 0/0/0 async 0/0/0
Jul 13 17:01:14.228167 :: [    87250] return 0/0/0 async 0/0/0
Jul 13 17:01:19.231068 :: [    87300] return 0/0/0 async 0/0/0
Jul 13 17:01:24.225449 :: [    87350] return 0/0/0 async 0/0/0
Jul 13 17:01:29.225389 :: [    87400] return 0/0/0 async 0/0/0
Jul 13 17:01:34.226435 :: [    87450] return 0/0/0 async 0/0/0
Jul 13 17:01:39.225477 :: [    87500] return 0/0/0 async 0/0/0
Jul 13 17:01:44.225816 :: [    87550] return 0/0/0 async 0/0/0
Jul 13 17:01:49.224631 :: [    87600] return 0/0/0 async 0/0/0
Jul 13 17:01:54.225232 :: [    87650] return 0/0/0 async 0/0/0
Jul 13 17:01:59.225402 :: [    87700] return 0/0/0 async 0/0/0
Jul 13 17:02:04.225407 :: [    87750] return 0/0/0 async 0/0/0
Jul 13 17:02:09.225416 :: [    87800] return 0/0/0 async 0/0/0
Jul 13 17:02:14.225416 :: [    87850] return 0/0/0 async 0/0/0
Jul 13 17:02:19.225428 :: [    87900] return 0/0/0 async 0/0/0
Jul 13 17:02:24.224048 :: [    87950] return 0/0/0 async 0/0/0
Jul 13 17:02:29.223179 :: [    88000] return 0/0/0 async 0/0/0
Jul 13 17:02:34.225414 :: [    88050] return 0/0/0 async 0/0/0
Jul 13 17:02:39.224250 :: [    88100] return 0/0/0 async 0/0/0
Jul 13 17:02:44.225438 :: [    88150] return 0/0/0 async 0/0/0
Jul 13 17:02:49.224230 :: [    88200] return 0/0/0 async 0/0/0
Jul 13 17:02:54.225580 :: [    88250] return 0/0/0 async 0/0/0
Jul 13 17:02:59.225433 :: [    88300] return 0/0/0 async 0/0/0
Jul 13 17:03:04.225432 :: [    88350] return 0/0/0 async 0/0/0
Jul 13 17:03:09.225385 :: [    88400] return 0/0/0 async 0/0/0
Jul 13 17:03:14.225570 :: [    88450] return 0/0/0 async 0/0/0
Jul 13 17:03:19.225635 :: [    88500] return 0/0/0 async 0/0/0
Jul 13 17:03:24.223224 :: [    88550] return 0/0/0 async 0/0/0
Jul 13 17:03:29.225457 :: [    88600] return 0/0/0 async 0/0/0
Jul 13 17:03:34.225579 :: [    88650] return 0/0/0 async 0/0/0
Jul 13 17:03:39.223715 :: [    88700] return 0/0/0 async 0/0/0
Jul 13 17:03:44.224598 :: [    88750] return 0/0/0 async 0/0/0
Jul 13 17:03:49.226844 :: [    88800] return 0/0/0 async 0/0/0
Jul 13 17:03:54.225454 :: [    88850] return 0/0/0 async 0/0/0
Jul 13 17:03:59.225510 :: [    88900] return 0/0/0 async 0/0/0
Jul 13 17:04:04.223962 :: [    88950] return 0/0/0 async 0/0/0
Jul 13 17:04:09.223001 :: [    89000] return 0/0/0 async 0/0/0
Jul 13 17:04:14.225469 :: [    89050] return 0/0/0 async 0/0/0
Jul 13 17:04:19.225407 :: [    89100] return 0/0/0 async 0/0/0
Jul 13 17:04:24.225504 :: [    89150] return 0/0/0 async 0/0/0
Jul 13 17:04:29.225688 :: [    89200] return 0/0/0 async 0/0/0
Jul 13 17:04:34.224170 :: [    89250] return 0/0/0 async 0/0/0
Jul 13 17:04:39.225551 :: [    89300] return 0/0/0 async 0/0/0
Jul 13 17:04:44.225614 :: [    89350] return 0/0/0 async 0/0/0
Jul 13 17:04:49.225752 :: [    89400] return 0/0/0 async 0/0/0
Jul 13 17:04:54.226648 :: [    89450] return 0/0/0 async 0/0/0
Jul 13 17:04:59.224701 :: [    89500] return 0/0/0 async 0/0/0
Jul 13 17:05:04.221734 :: [    89550] return 0/0/0 async 0/0/0
Jul 13 17:05:09.222889 :: [    89600] return 0/0/0 async 0/0/0
Jul 13 17:05:14.223296 :: [    89650] return 0/0/0 async 0/0/0
Jul 13 17:05:19.221670 :: [    89700] return 0/0/0 async 0/0/0
Jul 13 17:05:24.225701 :: [    89750] return 0/0/0 async 0/0/0
Jul 13 17:05:29.225262 :: [    89800] return 0/0/0 async 0/0/0
Jul 13 17:05:34.223940 :: [    89850] return 0/0/0 async 0/0/0
Jul 13 17:05:39.222517 :: [    89900] return 0/0/0 async 0/0/0
Jul 13 17:05:44.221538 :: [    89950] return 0/0/0 async 0/0/0
Jul 13 17:05:49.225500 :: [    90000] return 0/0/0 async 0/0/0
Jul 13 17:05:54.225431 :: [    90050] return 0/0/0 async 0/0/0
Jul 13 17:05:59.225504 :: [    90100] return 0/0/0 async 0/0/0
Jul 13 17:06:04.225770 :: [    90150] return 0/0/0 async 0/0/0
Jul 13 17:06:09.221412 :: [    90200] return 0/0/0 async 0/0/0
Jul 13 17:06:14.225464 :: [    90250] return 0/0/0 async 0/0/0
Jul 13 17:06:19.220660 :: [    90300] return 0/0/0 async 0/0/0
Jul 13 17:06:24.219640 :: [    90350] return 0/0/0 async 0/0/0
Jul 13 17:06:29.225704 :: [    90400] return 0/0/0 async 0/0/0
Jul 13 17:06:34.220876 :: [    90450] return 0/0/0 async 0/0/0
Jul 13 17:06:39.220963 :: [    90500] return 0/0/0 async 0/0/0
Jul 13 17:06:44.222295 :: [    90550] return 0/0/0 async 0/0/0
Jul 13 17:06:49.220204 :: [    90600] return 0/0/0 async 0/0/0
Jul 13 17:06:54.221871 :: [    90650] return 0/0/0 async 0/0/0
Jul 13 17:06:59.225929 :: [    90700] return 0/0/0 async 0/0/0
Jul 13 17:07:04.220669 :: [    90750] return 0/0/0 async 0/0/0
Jul 13 17:07:09.219838 :: [    90800] return 0/0/0 async 0/0/0
Jul 13 17:07:14.219863 :: [    90850] return 0/0/0 async 0/0/0
Jul 13 17:07:19.220689 :: [    90900] return 0/0/0 async 0/0/0
Jul 13 17:07:24.221197 :: [    90950] return 0/0/0 async 0/0/0
Jul 13 17:07:29.225512 :: [    91000] return 0/0/0 async 0/0/0
Jul 13 17:07:34.220730 :: [    91050] return 0/0/0 async 0/0/0
Jul 13 17:07:39.221115 :: [    91100] return 0/0/0 async 0/0/0
Jul 13 17:07:44.225552 :: [    91150] return 0/0/0 async 0/0/0
Jul 13 17:07:49.219634 :: [    91200] return 0/0/0 async 0/0/0
Jul 13 17:07:54.219681 :: [    91250] return 0/0/0 async 0/0/0
Jul 13 17:07:59.226009 :: [    91300] return 0/0/0 async 0/0/0
Jul 13 17:08:04.225727 :: [    91350] return 0/0/0 async 0/0/0
Jul 13 17:08:09.219959 :: [    91400] return 0/0/0 async 0/0/0
Jul 13 17:08:14.220070 :: [    91450] return 0/0/0 async 0/0/0
Jul 13 17:08:19.221868 :: [    91500] return 0/0/0 async 0/0/0
Jul 13 17:08:24.219943 :: [    91550] return 0/0/0 async 0/0/0
Jul 13 17:08:29.225145 :: [    91600] return 0/0/0 async 0/0/0
Jul 13 17:08:34.225831 :: [    91650] return 0/0/0 async 0/0/0
Jul 13 17:08:39.223005 :: [    91700] return 0/0/0 async 0/0/0
Jul 13 17:08:44.219963 :: [    91750] return 0/0/0 async 0/0/0
Jul 13 17:08:49.225580 :: [    91800] return 0/0/0 async 0/0/0
Jul 13 17:08:54.225797 :: [    91850] return 0/0/0 async 0/0/0
Jul 13 17:08:59.225528 :: [    91900] return 0/0/0 async 0/0/0
Jul 13 17:09:04.225410 :: [    91950] return 0/0/0 async 0/0/0
Jul 13 17:09:09.225480 :: [    92000] return 0/0/0 async 0/0/0
Jul 13 17:09:14.225561 :: [    92050] return 0/0/0 async 0/0/0
Jul 13 17:09:19.219646 :: [    92100] return 0/0/0 async 0/0/0
Jul 13 17:09:24.225550 :: [    92150] return 0/0/0 async 0/0/0
Jul 13 17:09:29.220748 :: [    92200] return 0/0/0 async 0/0/0
Jul 13 17:09:34.221468 :: [    92250] return 0/0/0 async 0/0/0
Jul 13 17:09:39.221481 :: [    92300] return 0/0/0 async 0/0/0
Jul 13 17:09:44.219858 :: [    92350] return 0/0/0 async 0/0/0
Jul 13 17:09:49.221769 :: [    92400] return 0/0/0 async 0/0/0
Jul 13 17:09:54.258672 :: [    92450] return 0/0/0 async 0/0/0
Jul 13 17:09:59.225591 :: [    92500] return 0/0/0 async 0/0/0
Jul 13 17:10:04.219986 :: [    92550] return 0/0/0 async 0/0/0
Jul 13 17:10:09.221939 :: [    92600] return 0/0/0 async 0/0/0
Jul 13 17:10:14.225426 :: [    92650] return 0/0/0 async 0/0/0
Jul 13 17:10:19.223932 :: [    92700] return 0/0/0 async 0/0/0
Jul 13 17:10:24.224955 :: [    92750] return 0/0/0 async 0/0/0
Jul 13 17:10:29.222175 :: [    92800] return 0/0/0 async 0/0/0
Jul 13 17:10:34.225439 :: [    92850] return 0/0/0 async 0/0/0
Jul 13 17:10:39.225512 :: [    92900] return 0/0/0 async 0/0/0
Jul 13 17:10:44.226029 :: [    92950] return 0/0/0 async 0/0/0
Jul 13 17:10:49.222812 :: [    93000] return 0/0/0 async 0/0/0
Jul 13 17:10:54.225454 :: [    93050] return 0/0/0 async 0/0/0
Jul 13 17:10:59.225543 :: [    93100] return 0/0/0 async 0/0/0
Jul 13 17:11:04.225451 :: [    93150] return 0/0/0 async 0/0/0
Jul 13 17:11:09.225559 :: [    93200] return 0/0/0 async 0/0/0
Jul 13 17:11:14.222683 :: [    93250] return 0/0/0 async 0/0/0
Jul 13 17:11:19.225428 :: [    93300] return 0/0/0 async 0/0/0
Jul 13 17:11:24.225474 :: [    93350] return 0/0/0 async 0/0/0
Jul 13 17:11:29.225495 :: [    93400] return 0/0/0 async 0/0/0
Jul 13 17:11:34.225506 :: [    93450] return 0/0/0 async 0/0/0
Jul 13 17:11:39.225553 :: [    93500] return 0/0/0 async 0/0/0
Jul 13 17:11:44.225436 :: [    93550] return 0/0/0 async 0/0/0
Jul 13 17:11:49.226571 :: [    93600] return 0/0/0 async 0/0/0
Jul 13 17:11:54.222886 :: [    93650] return 0/0/0 async 0/0/0
Jul 13 17:11:59.224913 :: [    93700] return 0/0/0 async 0/0/0
Jul 13 17:12:04.225500 :: [    93750] return 0/0/0 async 0/0/0
Jul 13 17:12:09.225514 :: [    93800] return 0/0/0 async 0/0/0
Jul 13 17:12:14.225436 :: [    93850] return 0/0/0 async 0/0/0
Jul 13 17:12:19.225443 :: [    93900] return 0/0/0 async 0/0/0
Jul 13 17:12:24.225481 :: [    93950] return 0/0/0 async 0/0/0
Jul 13 17:12:29.225805 :: [    94000] return 0/0/0 async 0/0/0
Jul 13 17:12:34.225447 :: [    94050] return 0/0/0 async 0/0/0
Jul 13 17:12:39.225445 :: [    94100] return 0/0/0 async 0/0/0
Jul 13 17:12:44.225398 :: [    94150] return 0/0/0 async 0/0/0
Jul 13 17:12:49.225423 :: [    94200] return 0/0/0 async 0/0/0
Jul 13 17:12:54.225435 :: [    94250] return 0/0/0 async 0/0/0
Jul 13 17:12:59.226441 :: [    94300] return 0/0/0 async 0/0/0
Jul 13 17:13:04.219658 :: [    94350] return 0/0/0 async 0/0/0
Jul 13 17:13:09.225502 :: [    94400] return 0/0/0 async 0/0/0
Jul 13 17:13:14.225438 :: [    94450] return 0/0/0 async 0/0/0
Jul 13 17:13:19.225554 :: [    94500] return 0/0/0 async 0/0/0
Jul 13 17:13:24.224039 :: [    94550] return 0/0/0 async 0/0/0
Jul 13 17:13:29.225789 :: [    94600] return 0/0/0 async 0/0/0
Jul 13 17:13:34.225743 :: [    94650] return 0/0/0 async 0/0/0
Jul 13 17:13:39.225438 :: [    94700] return 0/0/0 async 0/0/0
Jul 13 17:13:44.225444 :: [    94750] return 0/0/0 async 0/0/0
Jul 13 17:13:49.223177 :: [    94800] return 0/0/0 async 0/0/0
Jul 13 17:13:54.225497 :: [    94850] return 0/0/0 async 0/0/0
Jul 13 17:13:59.225657 :: [    94900] return 0/0/0 async 0/0/0
Jul 13 17:14:04.225420 :: [    94950] return 0/0/0 async 0/0/0
Jul 13 17:14:09.222106 :: [    95000] return 0/0/0 async 0/0/0
Jul 13 17:14:14.225474 :: [    95050] return 0/0/0 async 0/0/0
Jul 13 17:14:19.225744 :: [    95100] return 0/0/0 async 0/0/0
Jul 13 17:14:24.225533 :: [    95150] return 0/0/0 async 0/0/0
Jul 13 17:14:29.220202 :: [    95200] return 0/0/0 async 0/0/0
Jul 13 17:14:34.221623 :: [    95250] return 0/0/0 async 0/0/0
Jul 13 17:14:39.220837 :: [    95300] return 0/0/0 async 0/0/0
Jul 13 17:14:44.220194 :: [    95350] return 0/0/0 async 0/0/0
Jul 13 17:14:49.225596 :: [    95400] return 0/0/0 async 0/0/0
Jul 13 17:14:54.224647 :: [    95450] return 0/0/0 async 0/0/0
Jul 13 17:14:59.223369 :: [    95500] return 0/0/0 async 0/0/0
Jul 13 17:15:04.225504 :: [    95550] return 0/0/0 async 0/0/0
Jul 13 17:15:09.225416 :: [    95600] return 0/0/0 async 0/0/0
Jul 13 17:15:14.225516 :: [    95650] return 0/0/0 async 0/0/0
Jul 13 17:15:19.225415 :: [    95700] return 0/0/0 async 0/0/0
Jul 13 17:15:24.225399 :: [    95750] return 0/0/0 async 0/0/0
Jul 13 17:15:29.220669 :: [    95800] return 0/0/0 async 0/0/0
Jul 13 17:15:34.225468 :: [    95850] return 0/0/0 async 0/0/0
Jul 13 17:15:39.219899 :: [    95900] return 0/0/0 async 0/0/0
Jul 13 17:15:44.225485 :: [    95950] return 0/0/0 async 0/0/0
Jul 13 17:15:49.225503 :: [    96000] return 0/0/0 async 0/0/0
Jul 13 17:15:54.225424 :: [    96050] return 0/0/0 async 0/0/0
Jul 13 17:15:59.225485 :: [    96100] return 0/0/0 async 0/0/0
Jul 13 17:16:04.225396 :: [    96150] return 0/0/0 async 0/0/0
Jul 13 17:16:09.225514 :: [    96200] return 0/0/0 async 0/0/0
Jul 13 17:16:14.225487 :: [    96250] return 0/0/0 async 0/0/0
Jul 13 17:16:19.225489 :: [    96300] return 0/0/0 async 0/0/0
Jul 13 17:16:24.226516 :: [    96350] return 0/0/0 async 0/0/0
Jul 13 17:16:29.225526 :: [    96400] return 0/0/0 async 0/0/0
Jul 13 17:16:34.225620 :: [    96450] return 0/0/0 async 0/0/0
Jul 13 17:16:39.225421 :: [    96500] return 0/0/0 async 0/0/0
Jul 13 17:16:44.225609 :: [    96550] return 0/0/0 async 0/0/0
Jul 13 17:16:49.225421 :: [    96600] return 0/0/0 async 0/0/0
Jul 13 17:16:54.225488 :: [    96650] return 0/0/0 async 0/0/0
Jul 13 17:16:59.225468 :: [    96700] return 0/0/0 async 0/0/0
Jul 13 17:17:04.225535 :: [    96750] return 0/0/0 async 0/0/0
Jul 13 17:17:09.225485 :: [    96800] return 0/0/0 async 0/0/0
Jul 13 17:17:14.225405 :: [    96850] return 0/0/0 async 0/0/0
Jul 13 17:17:19.225443 :: [    96900] return 0/0/0 async 0/0/0
Jul 13 17:17:24.225464 :: [    96950] return 0/0/0 async 0/0/0
Jul 13 17:17:29.225416 :: [    97000] return 0/0/0 async 0/0/0
Jul 13 17:17:34.225467 :: [    97050] return 0/0/0 async 0/0/0
Jul 13 17:17:39.225473 :: [    97100] return 0/0/0 async 0/0/0
Jul 13 17:17:44.225337 :: [    97150] return 0/0/0 async 0/0/0
Jul 13 17:17:49.225463 :: [    97200] return 0/0/0 async 0/0/0
Jul 13 17:17:54.225702 :: [    97250] return 0/0/0 async 0/0/0
Jul 13 17:17:59.225565 :: [    97300] return 0/0/0 async 0/0/0
Jul 13 17:18:04.225384 :: [    97350] return 0/0/0 async 0/0/0
Jul 13 17:18:09.225627 :: [    97400] return 0/0/0 async 0/0/0
Jul 13 17:18:14.225426 :: [    97450] return 0/0/0 async 0/0/0
Jul 13 17:18:19.225785 :: [    97500] return 0/0/0 async 0/0/0
Jul 13 17:18:24.223894 :: [    97550] return 0/0/0 async 0/0/0
Jul 13 17:18:29.220677 :: [    97600] return 0/0/0 async 0/0/0
Jul 13 17:18:34.225788 :: [    97650] return 0/0/0 async 0/0/0
Jul 13 17:18:39.224627 :: [    97700] return 0/0/0 async 0/0/0
Jul 13 17:18:44.225477 :: [    97750] return 0/0/0 async 0/0/0
Jul 13 17:18:49.225904 :: [    97800] return 0/0/0 async 0/0/0
Jul 13 17:18:54.225551 :: [    97850] return 0/0/0 async 0/0/0
Jul 13 17:18:59.225598 :: [    97900] return 0/0/0 async 0/0/0
Jul 13 17:19:04.225383 :: [    97950] return 0/0/0 async 0/0/0
Jul 13 17:19:09.225522 :: [    98000] return 0/0/0 async 0/0/0
Jul 13 17:19:14.225463 :: [    98050] return 0/0/0 async 0/0/0
Jul 13 17:19:19.225456 :: [    98100] return 0/0/0 async 0/0/0
Jul 13 17:19:24.225603 :: [    98150] return 0/0/0 async 0/0/0
Jul 13 17:19:29.225559 :: [    98200] return 0/0/0 async 0/0/0
Jul 13 17:19:34.222623 :: [    98250] return 0/0/0 async 0/0/0
Jul 13 17:19:39.225522 :: [    98300] return 0/0/0 async 0/0/0
Jul 13 17:19:44.225439 :: [    98350] return 0/0/0 async 0/0/0
Jul 13 17:19:49.225561 :: [    98400] return 0/0/0 async 0/0/0
Jul 13 17:19:54.225484 :: [    98450] return 0/0/0 async 0/0/0
Jul 13 17:19:59.225554 :: [    98500] return 0/0/0 async 0/0/0
Jul 13 17:20:04.220640 :: [    98550] return 0/0/0 async 0/0/0
Jul 13 17:20:09.225456 :: [    98600] return 0/0/0 async 0/0/0
Jul 13 17:20:14.225451 :: [    98650] return 0/0/0 async 0/0/0
Jul 13 17:20:19.225440 :: [    98700] return 0/0/0 async 0/0/0
Jul 13 17:20:24.225540 :: [    98750] return 0/0/0 async 0/0/0
Jul 13 17:20:29.225514 :: [    98800] return 0/0/0 async 0/0/0
Jul 13 17:20:34.225409 :: [    98850] return 0/0/0 async 0/0/0
Jul 13 17:20:39.225462 :: [    98900] return 0/0/0 async 0/0/0
Jul 13 17:20:44.225541 :: [    98950] return 0/0/0 async 0/0/0
Jul 13 17:20:49.225571 :: [    99000] return 0/0/0 async 0/0/0
Jul 13 17:20:54.225570 :: [    99050] return 0/0/0 async 0/0/0
Jul 13 17:20:59.225468 :: [    99100] return 0/0/0 async 0/0/0
Jul 13 17:21:04.225498 :: [    99150] return 0/0/0 async 0/0/0
Jul 13 17:21:09.225621 :: [    99200] return 0/0/0 async 0/0/0
Jul 13 17:21:14.225408 :: [    99250] return 0/0/0 async 0/0/0
Jul 13 17:21:19.220512 :: [    99300] return 0/0/0 async 0/0/0
Jul 13 17:21:24.225773 :: [    99350] return 0/0/0 async 0/0/0
Jul 13 17:21:29.225512 :: [    99400] return 0/0/0 async 0/0/0
Jul 13 17:21:34.225531 :: [    99450] return 0/0/0 async 0/0/0
Jul 13 17:21:39.224097 :: [    99500] return 0/0/0 async 0/0/0
Jul 13 17:21:44.225382 :: [    99550] return 0/0/0 async 0/0/0
Jul 13 17:21:49.225459 :: [    99600] return 0/0/0 async 0/0/0
Jul 13 17:21:54.225438 :: [    99650] return 0/0/0 async 0/0/0
Jul 13 17:21:59.225582 :: [    99700] return 0/0/0 async 0/0/0
Jul 13 17:22:04.223725 :: [    99750] return 0/0/0 async 0/0/0
Jul 13 17:22:09.225335 :: [    99800] return 0/0/0 async 0/0/0
Jul 13 17:22:14.226663 :: [    99850] return 0/0/0 async 0/0/0
Jul 13 17:22:19.225380 :: [    99900] return 0/0/0 async 0/0/0
Jul 13 17:22:24.224810 :: [    99950] return 0/0/0 async 0/0/0
Jul 13 17:22:29.225348 :: [   100000] return 0/0/0 async 0/0/0
Jul 13 17:22:34.225460 :: [   100050] return 0/0/0 async 0/0/0
Jul 13 17:22:39.225512 :: [   100100] return 0/0/0 async 0/0/0
Jul 13 17:22:44.219901 :: [   100150] return 0/0/0 async 0/0/0
Jul 13 17:22:49.225447 :: [   100200] return 0/0/0 async 0/0/0
Jul 13 17:22:54.225451 :: [   100250] return 0/0/0 async 0/0/0
Jul 13 17:22:59.225457 :: [   100300] return 0/0/0 async 0/0/0
Jul 13 17:23:04.225569 :: [   100350] return 0/0/0 async 0/0/0
Jul 13 17:23:09.225457 :: [   100400] return 0/0/0 async 0/0/0
Jul 13 17:23:14.225938 :: [   100450] return 0/0/0 async 0/0/0
Jul 13 17:23:19.225406 :: [   100500] return 0/0/0 async 0/0/0
Jul 13 17:23:24.225363 :: [   100550] return 0/0/0 async 0/0/0
Jul 13 17:23:29.225432 :: [   100600] return 0/0/0 async 0/0/0
Jul 13 17:23:34.225515 :: [   100650] return 0/0/0 async 0/0/0
Jul 13 17:23:39.225392 :: [   100700] return 0/0/0 async 0/0/0
Jul 13 17:23:44.225518 :: [   100750] return 0/0/0 async 0/0/0
Jul 13 17:23:49.225637 :: [   100800] return 0/0/0 async 0/0/0
Jul 13 17:23:54.225614 :: [   100850] return 0/0/0 async 0/0/0
Jul 13 17:23:59.225468 :: [   100900] return 0/0/0 async 0/0/0
Jul 13 17:24:04.224658 :: [   100950] return 0/0/0 async 0/0/0
Jul 13 17:24:09.225507 :: [   101000] return 0/0/0 async 0/0/0
Jul 13 17:24:14.225396 :: [   101050] return 0/0/0 async 0/0/0
Jul 13 17:24:19.229847 :: [   101100] return 0/0/0 async 0/0/0
Jul 13 17:24:24.225539 :: [   101150] return 0/0/0 async 0/0/0
Jul 13 17:24:29.228429 :: [   101200] return 0/0/0 async 0/0/0
Jul 13 17:24:34.219989 :: [   101250] return 0/0/0 async 0/0/0
Jul 13 17:24:39.225877 :: [   101300] return 0/0/0 async 0/0/0
Jul 13 17:24:44.228572 :: [   101350] return 0/0/0 async 0/0/0
Jul 13 17:24:49.230171 :: [   101400] return 0/0/0 async 0/0/0
Jul 13 17:24:54.225435 :: [   101450] return 0/0/0 async 0/0/0
Jul 13 17:24:59.225369 :: [   101500] return 0/0/0 async 0/0/0
Jul 13 17:25:04.225672 :: [   101550] return 0/0/0 async 0/0/0
Jul 13 17:25:09.225477 :: [   101600] return 0/0/0 async 0/0/0
Jul 13 17:25:14.225445 :: [   101650] return 0/0/0 async 0/0/0
Jul 13 17:25:19.225495 :: [   101700] return 0/0/0 async 0/0/0
Jul 13 17:25:24.225546 :: [   101750] return 0/0/0 async 0/0/0
Jul 13 17:25:29.225442 :: [   101800] return 0/0/0 async 0/0/0
Jul 13 17:25:34.225580 :: [   101850] return 0/0/0 async 0/0/0
Jul 13 17:25:39.225294 :: [   101900] return 0/0/0 async 0/0/0
Jul 13 17:25:44.225477 :: [   101950] return 0/0/0 async 0/0/0
Jul 13 17:25:49.226731 :: [   102000] return 0/0/0 async 0/0/0
Jul 13 17:25:54.225510 :: [   102050] return 0/0/0 async 0/0/0
Jul 13 17:25:59.226549 :: [   102100] return 0/0/0 async 0/0/0
Jul 13 17:26:04.225518 :: [   102150] return 0/0/0 async 0/0/0
Jul 13 17:26:09.225503 :: [   102200] return 0/0/0 async 0/0/0
Jul 13 17:26:14.225504 :: [   102250] return 0/0/0 async 0/0/0
Jul 13 17:26:19.225452 :: [   102300] return 0/0/0 async 0/0/0
Jul 13 17:26:24.225619 :: [   102350] return 0/0/0 async 0/0/0
Jul 13 17:26:29.225495 :: [   102400] return 0/0/0 async 0/0/0
Jul 13 17:26:34.225532 :: [   102450] return 0/0/0 async 0/0/0
Jul 13 17:26:39.225488 :: [   102500] return 0/0/0 async 0/0/0
Jul 13 17:26:44.225433 :: [   102550] return 0/0/0 async 0/0/0
Jul 13 17:26:49.225471 :: [   102600] return 0/0/0 async 0/0/0
Jul 13 17:26:54.225474 :: [   102650] return 0/0/0 async 0/0/0
Jul 13 17:26:59.225642 :: [   102700] return 0/0/0 async 0/0/0
Jul 13 17:27:04.225904 :: [   102750] return 0/0/0 async 0/0/0
Jul 13 17:27:09.225542 :: [   102800] return 0/0/0 async 0/0/0
Jul 13 17:27:14.225517 :: [   102850] return 0/0/0 async 0/0/0
Jul 13 17:27:19.225525 :: [   102900] return 0/0/0 async 0/0/0
Jul 13 17:27:24.225591 :: [   102950] return 0/0/0 async 0/0/0
Jul 13 17:27:29.224883 :: [   103000] return 0/0/0 async 0/0/0
Jul 13 17:27:34.225531 :: [   103050] return 0/0/0 async 0/0/0
Jul 13 17:27:39.226012 :: [   103100] return 0/0/0 async 0/0/0
Jul 13 17:27:44.225492 :: [   103150] return 0/0/0 async 0/0/0
Jul 13 17:27:49.224610 :: [   103200] return 0/0/0 async 0/0/0
Jul 13 17:27:54.225551 :: [   103250] return 0/0/0 async 0/0/0
Jul 13 17:27:59.225703 :: [   103300] return 0/0/0 async 0/0/0
Jul 13 17:28:04.225628 :: [   103350] return 0/0/0 async 0/0/0
Jul 13 17:28:09.223992 :: [   103400] return 0/0/0 async 0/0/0
Jul 13 17:28:14.225526 :: [   103450] return 0/0/0 async 0/0/0
Jul 13 17:28:19.225455 :: [   103500] return 0/0/0 async 0/0/0
Jul 13 17:28:24.225492 :: [   103550] return 0/0/0 async 0/0/0
Jul 13 17:28:29.224474 :: [   103600] return 0/0/0 async 0/0/0
Jul 13 17:28:34.225540 :: [   103650] return 0/0/0 async 0/0/0
Jul 13 17:28:39.225600 :: [   103700] return 0/0/0 async 0/0/0
Jul 13 17:28:44.225482 :: [   103750] return 0/0/0 async 0/0/0
Jul 13 17:28:49.225438 :: [   103800] return 0/0/0 async 0/0/0
Jul 13 17:28:54.225472 :: [   103850] return 0/0/0 async 0/0/0
Jul 13 17:28:59.225772 :: [   103900] return 0/0/0 async 0/0/0
Jul 13 17:29:04.225452 :: [   103950] return 0/0/0 async 0/0/0
Jul 13 17:29:09.225733 :: [   104000] return 0/0/0 async 0/0/0
Jul 13 17:29:14.225458 :: [   104050] return 0/0/0 async 0/0/0
Jul 13 17:29:19.225545 :: [   104100] return 0/0/0 async 0/0/0
Jul 13 17:29:24.225552 :: [   104150] return 0/0/0 async 0/0/0
Jul 13 17:29:29.219876 :: [   104200] return 0/0/0 async 0/0/0
Jul 13 17:29:34.225504 :: [   104250] return 0/0/0 async 0/0/0
Jul 13 17:29:39.223727 :: [   104300] return 0/0/0 async 0/0/0
Jul 13 17:29:44.223821 :: [   104350] return 0/0/0 async 0/0/0
Jul 13 17:29:49.223882 :: [   104400] return 0/0/0 async 0/0/0
Jul 13 17:29:54.223155 :: [   104450] return 0/0/0 async 0/0/0
Jul 13 17:29:59.225275 :: [   104500] return 0/0/0 async 0/0/0
Jul 13 17:30:04.225447 :: [   104550] return 0/0/0 async 0/0/0
Jul 13 17:30:09.225579 :: [   104600] return 0/0/0 async 0/0/0
Jul 13 17:30:14.224554 :: [   104650] return 0/0/0 async 0/0/0
Jul 13 17:30:19.223542 :: [   104700] return 0/0/0 async 0/0/0
Jul 13 17:30:24.225577 :: [   104750] return 0/0/0 async 0/0/0
Jul 13 17:30:29.222308 :: [   104800] return 0/0/0 async 0/0/0
Jul 13 17:30:34.222994 :: [   104850] return 0/0/0 async 0/0/0
Jul 13 17:30:39.225598 :: [   104900] return 0/0/0 async 0/0/0
Jul 13 17:30:44.225607 :: [   104950] return 0/0/0 async 0/0/0
Jul 13 17:30:49.223209 :: [   105000] return 0/0/0 async 0/0/0
Jul 13 17:30:54.225533 :: [   105050] return 0/0/0 async 0/0/0
Jul 13 17:30:59.222271 :: [   105100] return 0/0/0 async 0/0/0
Jul 13 17:31:04.221986 :: [   105150] return 0/0/0 async 0/0/0
Jul 13 17:31:09.224481 :: [   105200] return 0/0/0 async 0/0/0
Jul 13 17:31:14.223827 :: [   105250] return 0/0/0 async 0/0/0
Jul 13 17:31:19.222577 :: [   105300] return 0/0/0 async 0/0/0
Jul 13 17:31:24.225547 :: [   105350] return 0/0/0 async 0/0/0
Jul 13 17:31:29.223434 :: [   105400] return 0/0/0 async 0/0/0
Jul 13 17:31:34.225487 :: [   105450] return 0/0/0 async 0/0/0
Jul 13 17:31:39.223592 :: [   105500] return 0/0/0 async 0/0/0
Jul 13 17:31:44.225522 :: [   105550] return 0/0/0 async 0/0/0
Jul 13 17:31:49.225491 :: [   105600] return 0/0/0 async 0/0/0
Jul 13 17:31:54.225530 :: [   105650] return 0/0/0 async 0/0/0
Jul 13 17:31:59.222671 :: [   105700] return 0/0/0 async 0/0/0
Jul 13 17:32:04.223525 :: [   105750] return 0/0/0 async 0/0/0
Jul 13 17:32:09.222531 :: [   105800] return 0/0/0 async 0/0/0
Jul 13 17:32:14.223560 :: [   105850] return 0/0/0 async 0/0/0
Jul 13 17:32:19.221774 :: [   105900] return 0/0/0 async 0/0/0
Jul 13 17:32:24.222171 :: [   105950] return 0/0/0 async 0/0/0
Jul 13 17:32:29.222552 :: [   106000] return 0/0/0 async 0/0/0
Jul 13 17:32:34.222839 :: [   106050] return 0/0/0 async 0/0/0
Jul 13 17:32:39.221111 :: [   106100] return 0/0/0 async 0/0/0
Jul 13 17:32:44.222565 :: [   106150] return 0/0/0 async 0/0/0
Jul 13 17:32:49.225587 :: [   106200] return 0/0/0 async 0/0/0
Jul 13 17:32:54.223644 :: [   106250] return 0/0/0 async 0/0/0
Jul 13 17:32:59.225691 :: [   106300] return 0/0/0 async 0/0/0
Jul 13 17:33:04.225358 :: [   106350] return 0/0/0 async 0/0/0
Jul 13 17:33:09.221203 :: [   106400] return 0/0/0 async 0/0/0
Jul 13 17:33:14.225659 :: [   106450] return 0/0/0 async 0/0/0
Jul 13 17:33:19.223947 :: [   106500] return 0/0/0 async 0/0/0
Jul 13 17:33:24.225687 :: [   106550] return 0/0/0 async 0/0/0
Jul 13 17:33:29.221556 :: [   106600] return 0/0/0 async 0/0/0
Jul 13 17:33:34.219557 :: [   106650] return 0/0/0 async 0/0/0
Jul 13 17:33:39.225740 :: [   106700] return 0/0/0 async 0/0/0
Jul 13 17:33:44.223796 :: [   106750] return 0/0/0 async 0/0/0
Jul 13 17:33:49.221581 :: [   106800] return 0/0/0 async 0/0/0
Jul 13 17:33:54.220549 :: [   106850] return 0/0/0 async 0/0/0
Jul 13 17:33:59.225481 :: [   106900] return 0/0/0 async 0/0/0
Jul 13 17:34:04.221609 :: [   106950] return 0/0/0 async 0/0/0
Jul 13 17:34:09.220027 :: [   107000] return 0/0/0 async 0/0/0
Jul 13 17:34:14.224564 :: [   107050] return 0/0/0 async 0/0/0
Jul 13 17:34:19.220261 :: [   107100] return 0/0/0 async 0/0/0
Jul 13 17:34:24.221786 :: [   107150] return 0/0/0 async 0/0/0
Jul 13 17:34:29.225697 :: [   107200] return 0/0/0 async 0/0/0
Jul 13 17:34:34.225467 :: [   107250] return 0/0/0 async 0/0/0
Jul 13 17:34:39.219774 :: [   107300] return 0/0/0 async 0/0/0
Jul 13 17:34:44.225745 :: [   107350] return 0/0/0 async 0/0/0
Jul 13 17:34:49.225546 :: [   107400] return 0/0/0 async 0/0/0
Jul 13 17:34:54.221679 :: [   107450] return 0/0/0 async 0/0/0
Jul 13 17:34:59.224669 :: [   107500] return 0/0/0 async 0/0/0
Jul 13 17:35:04.225732 :: [   107550] return 0/0/0 async 0/0/0
Jul 13 17:35:09.225519 :: [   107600] return 0/0/0 async 0/0/0
Jul 13 17:35:14.225484 :: [   107650] return 0/0/0 async 0/0/0
Jul 13 17:35:19.225658 :: [   107700] return 0/0/0 async 0/0/0
Jul 13 17:35:24.223579 :: [   107750] return 0/0/0 async 0/0/0
Jul 13 17:35:29.220229 :: [   107800] return 0/0/0 async 0/0/0
Jul 13 17:35:34.225508 :: [   107850] return 0/0/0 async 0/0/0
Jul 13 17:35:39.225512 :: [   107900] return 0/0/0 async 0/0/0
Jul 13 17:35:44.224618 :: [   107950] return 0/0/0 async 0/0/0
Jul 13 17:35:49.223860 :: [   108000] return 0/0/0 async 0/0/0
Jul 13 17:35:54.225501 :: [   108050] return 0/0/0 async 0/0/0
Jul 13 17:35:59.225306 :: [   108100] return 0/0/0 async 0/0/0
Jul 13 17:36:04.223605 :: [   108150] return 0/0/0 async 0/0/0
Jul 13 17:36:09.219913 :: [   108200] return 0/0/0 async 0/0/0
Jul 13 17:36:14.224700 :: [   108250] return 0/0/0 async 0/0/0
Jul 13 17:36:19.224115 :: [   108300] return 0/0/0 async 0/0/0
Jul 13 17:36:24.225482 :: [   108350] return 0/0/0 async 0/0/0
Jul 13 17:36:29.225846 :: [   108400] return 0/0/0 async 0/0/0
Jul 13 17:36:34.220577 :: [   108450] return 0/0/0 async 0/0/0
Jul 13 17:36:39.226580 :: [   108500] return 0/0/0 async 0/0/0
Jul 13 17:36:44.223501 :: [   108550] return 0/0/0 async 0/0/0
Jul 13 17:36:49.226477 :: [   108600] return 0/0/0 async 0/0/0
Jul 13 17:36:54.222918 :: [   108650] return 0/0/0 async 0/0/0
Jul 13 17:36:59.224570 :: [   108700] return 0/0/0 async 0/0/0
Jul 13 17:37:04.222284 :: [   108750] return 0/0/0 async 0/0/0
Jul 13 17:37:09.221842 :: [   108800] return 0/0/0 async 0/0/0
Jul 13 17:37:14.221165 :: [   108850] return 0/0/0 async 0/0/0
Jul 13 17:37:19.220931 :: [   108900] return 0/0/0 async 0/0/0
Jul 13 17:37:24.220801 :: [   108950] return 0/0/0 async 0/0/0
Jul 13 17:37:29.225201 :: [   109000] return 0/0/0 async 0/0/0
Jul 13 17:37:34.225453 :: [   109050] return 0/0/0 async 0/0/0
Jul 13 17:37:39.221841 :: [   109100] return 0/0/0 async 0/0/0
Jul 13 17:37:44.222449 :: [   109150] return 0/0/0 async 0/0/0
Jul 13 17:37:49.224402 :: [   109200] return 0/0/0 async 0/0/0
Jul 13 17:37:54.220579 :: [   109250] return 0/0/0 async 0/0/0
Jul 13 17:37:59.222590 :: [   109300] return 0/0/0 async 0/0/0
Jul 13 17:38:04.221080 :: [   109350] return 0/0/0 async 0/0/0
Jul 13 17:38:09.219587 :: [   109400] return 0/0/0 async 0/0/0
Jul 13 17:38:14.221159 :: [   109450] return 0/0/0 async 0/0/0
Jul 13 17:38:19.224414 :: [   109500] return 0/0/0 async 0/0/0
Jul 13 17:38:24.220223 :: [   109550] return 0/0/0 async 0/0/0
Jul 13 17:38:29.225553 :: [   109600] return 0/0/0 async 0/0/0
Jul 13 17:38:34.225644 :: [   109650] return 0/0/0 async 0/0/0
Jul 13 17:38:39.225486 :: [   109700] return 0/0/0 async 0/0/0
Jul 13 17:38:44.220741 :: [   109750] return 0/0/0 async 0/0/0
Jul 13 17:38:49.222258 :: [   109800] return 0/0/0 async 0/0/0
Jul 13 17:38:54.222206 :: [   109850] return 0/0/0 async 0/0/0
Jul 13 17:38:59.222205 :: [   109900] return 0/0/0 async 0/0/0
Jul 13 17:39:04.221444 :: [   109950] return 0/0/0 async 0/0/0
Jul 13 17:39:09.221730 :: [   110000] return 0/0/0 async 0/0/0
Jul 13 17:39:14.221660 :: [   110050] return 0/0/0 async 0/0/0
Jul 13 17:39:19.221581 :: [   110100] return 0/0/0 async 0/0/0
Jul 13 17:39:24.220502 :: [   110150] return 0/0/0 async 0/0/0
Jul 13 17:39:29.223071 :: [   110200] return 0/0/0 async 0/0/0
Jul 13 17:39:34.226220 :: [   110250] return 0/0/0 async 0/0/0
Jul 13 17:39:39.220722 :: [   110300] return 0/0/0 async 0/0/0
Jul 13 17:39:44.220156 :: [   110350] return 0/0/0 async 0/0/0
Jul 13 17:39:49.221545 :: [   110400] return 0/0/0 async 0/0/0
Jul 13 17:39:54.225813 :: [   110450] return 0/0/0 async 0/0/0
Jul 13 17:39:59.220395 :: [   110500] return 0/0/0 async 0/0/0
Jul 13 17:40:04.220606 :: [   110550] return 0/0/0 async 0/0/0
Jul 13 17:40:09.220297 :: [   110600] return 0/0/0 async 0/0/0
Jul 13 17:40:14.220153 :: [   110650] return 0/0/0 async 0/0/0
Jul 13 17:40:19.219842 :: [   110700] return 0/0/0 async 0/0/0
Jul 13 17:40:24.219778 :: [   110750] return 0/0/0 async 0/0/0
Jul 13 17:40:29.219656 :: [   110800] return 0/0/0 async 0/0/0
Jul 13 17:40:34.220270 :: [   110850] return 0/0/0 async 0/0/0
Jul 13 17:40:39.225507 :: [   110900] return 0/0/0 async 0/0/0
Jul 13 17:40:44.225506 :: [   110950] return 0/0/0 async 0/0/0
Jul 13 17:40:49.225479 :: [   111000] return 0/0/0 async 0/0/0
Jul 13 17:40:54.221556 :: [   111050] return 0/0/0 async 0/0/0
Jul 13 17:40:59.225440 :: [   111100] return 0/0/0 async 0/0/0
Jul 13 17:41:04.225493 :: [   111150] return 0/0/0 async 0/0/0
Jul 13 17:41:09.221874 :: [   111200] return 0/0/0 async 0/0/0
Jul 13 17:41:14.219295 :: [   111250] return 0/0/0 async 0/0/0
Jul 13 17:41:19.225038 :: [   111300] return 0/0/0 async 0/0/0
Jul 13 17:41:24.219627 :: [   111350] return 0/0/0 async 0/0/0
Jul 13 17:41:29.225802 :: [   111400] return 0/0/0 async 0/0/0
Jul 13 17:41:34.225890 :: [   111450] return 0/0/0 async 0/0/0
Jul 13 17:41:39.225299 :: [   111500] return 0/0/0 async 0/0/0
Jul 13 17:41:44.225851 :: [   111550] return 0/0/0 async 0/0/0
Jul 13 17:41:49.225795 :: [   111600] return 0/0/0 async 0/0/0
Jul 13 17:41:54.224860 :: [   111650] return 0/0/0 async 0/0/0
Jul 13 17:41:59.224921 :: [   111700] return 0/0/0 async 0/0/0
Jul 13 17:42:04.225823 :: [   111750] return 0/0/0 async 0/0/0
Jul 13 17:42:09.225829 :: [   111800] return 0/0/0 async 0/0/0
Jul 13 17:42:14.220530 :: [   111850] return 0/0/0 async 0/0/0
Jul 13 17:42:19.219876 :: [   111900] return 0/0/0 async 0/0/0
Jul 13 17:42:24.240673 :: [   111950] return 0/0/0 async 0/0/0
Jul 13 17:42:29.221214 :: [   112000] return 0/0/0 async 0/0/0
Jul 13 17:42:34.221370 :: [   112050] return 0/0/0 async 0/0/0
Jul 13 17:42:39.226900 :: [   112100] return 0/0/0 async 0/0/0
Jul 13 17:42:44.219674 :: [   112150] return 0/0/0 async 0/0/0
Jul 13 17:42:49.225446 :: [   112200] return 0/0/0 async 0/0/0
Jul 13 17:42:54.225453 :: [   112250] return 0/0/0 async 0/0/0
Jul 13 17:42:59.225707 :: [   112300] return 0/0/0 async 0/0/0
Jul 13 17:43:04.225424 :: [   112350] return 0/0/0 async 0/0/0
Jul 13 17:43:09.225507 :: [   112400] return 0/0/0 async 0/0/0
Jul 13 17:43:14.225422 :: [   112450] return 0/0/0 async 0/0/0
Jul 13 17:43:19.225436 :: [   112500] return 0/0/0 async 0/0/0
Jul 13 17:43:24.225434 :: [   112550] return 0/0/0 async 0/0/0
Jul 13 17:43:29.225487 :: [   112600] return 0/0/0 async 0/0/0
Jul 13 17:43:34.225444 :: [   112650] return 0/0/0 async 0/0/0
Jul 13 17:43:39.225461 :: [   112700] return 0/0/0 async 0/0/0
Jul 13 17:43:44.225503 :: [   112750] return 0/0/0 async 0/0/0
Jul 13 17:43:49.225746 :: [   112800] return 0/0/0 async 0/0/0
Jul 13 17:43:54.224472 :: [   112850] return 0/0/0 async 0/0/0
Jul 13 17:43:59.225482 :: [   112900] return 0/0/0 async 0/0/0
Jul 13 17:44:04.225507 :: [   112950] return 0/0/0 async 0/0/0
Jul 13 17:44:09.225445 :: [   113000] return 0/0/0 async 0/0/0
Jul 13 17:44:14.225459 :: [   113050] return 0/0/0 async 0/0/0
Jul 13 17:44:19.225470 :: [   113100] return 0/0/0 async 0/0/0
Jul 13 17:44:24.225389 :: [   113150] return 0/0/0 async 0/0/0
Jul 13 17:44:29.225450 :: [   113200] return 0/0/0 async 0/0/0
Jul 13 17:44:34.225743 :: [   113250] return 0/0/0 async 0/0/0
Jul 13 17:44:39.225464 :: [   113300] return 0/0/0 async 0/0/0
Jul 13 17:44:44.225523 :: [   113350] return 0/0/0 async 0/0/0
Jul 13 17:44:49.225459 :: [   113400] return 0/0/0 async 0/0/0
Jul 13 17:44:54.219772 :: [   113450] return 0/0/0 async 0/0/0
Jul 13 17:44:59.225460 :: [   113500] return 0/0/0 async 0/0/0
Jul 13 17:45:04.225335 :: [   113550] return 0/0/0 async 0/0/0
Jul 13 17:45:09.225449 :: [   113600] return 0/0/0 async 0/0/0
Jul 13 17:45:14.225466 :: [   113650] return 0/0/0 async 0/0/0
Jul 13 17:45:19.225638 :: [   113700] return 0/0/0 async 0/0/0
Jul 13 17:45:24.225633 :: [   113750] return 0/0/0 async 0/0/0
Jul 13 17:45:29.222764 :: [   113800] return 0/0/0 async 0/0/0
Jul 13 17:45:34.225473 :: [   113850] return 0/0/0 async 0/0/0
Jul 13 17:45:39.225460 :: [   113900] return 0/0/0 async 0/0/0
Jul 13 17:45:44.225000 :: [   113950] return 0/0/0 async 0/0/0
Jul 13 17:45:49.224855 :: [   114000] return 0/0/0 async 0/0/0
Jul 13 17:45:54.226448 :: [   114050] return 0/0/0 async 0/0/0
Jul 13 17:45:59.225469 :: [   114100] return 0/0/0 async 0/0/0
Jul 13 17:46:04.225473 :: [   114150] return 0/0/0 async 0/0/0
Jul 13 17:46:09.223496 :: [   114200] return 0/0/0 async 0/0/0
Jul 13 17:46:14.225472 :: [   114250] return 0/0/0 async 0/0/0
Jul 13 17:46:19.225482 :: [   114300] return 0/0/0 async 0/0/0
Jul 13 17:46:24.223533 :: [   114350] return 0/0/0 async 0/0/0
Jul 13 17:46:29.225786 :: [   114400] return 0/0/0 async 0/0/0
Jul 13 17:46:34.225472 :: [   114450] return 0/0/0 async 0/0/0
Jul 13 17:46:39.225466 :: [   114500] return 0/0/0 async 0/0/0
Jul 13 17:46:44.225516 :: [   114550] return 0/0/0 async 0/0/0
Jul 13 17:46:49.225430 :: [   114600] return 0/0/0 async 0/0/0
Jul 13 17:46:54.225455 :: [   114650] return 0/0/0 async 0/0/0
Jul 13 17:46:59.224003 :: [   114700] return 0/0/0 async 0/0/0
Jul 13 17:47:04.225435 :: [   114750] return 0/0/0 async 0/0/0
Jul 13 17:47:09.225510 :: [   114800] return 0/0/0 async 0/0/0
Jul 13 17:47:14.220520 :: [   114850] return 0/0/0 async 0/0/0
Jul 13 17:47:19.225507 :: [   114900] return 0/0/0 async 0/0/0
Jul 13 17:47:24.219847 :: [   114950] return 0/0/0 async 0/0/0
Jul 13 17:47:29.225363 :: [   115000] return 0/0/0 async 0/0/0
Jul 13 17:47:34.226505 :: [   115050] return 0/0/0 async 0/0/0
Jul 13 17:47:39.225488 :: [   115100] return 0/0/0 async 0/0/0
Jul 13 17:47:44.225474 :: [   115150] return 0/0/0 async 0/0/0
Jul 13 17:47:49.225493 :: [   115200] return 0/0/0 async 0/0/0
Jul 13 17:47:54.223770 :: [   115250] return 0/0/0 async 0/0/0
Jul 13 17:47:59.226770 :: [   115300] return 0/0/0 async 0/0/0
Jul 13 17:48:04.225536 :: [   115350] return 0/0/0 async 0/0/0
Jul 13 17:48:09.225529 :: [   115400] return 0/0/0 async 0/0/0
Jul 13 17:48:14.219990 :: [   115450] return 0/0/0 async 0/0/0
Jul 13 17:48:19.225572 :: [   115500] return 0/0/0 async 0/0/0
Jul 13 17:48:24.226042 :: [   115550] return 0/0/0 async 0/0/0
Jul 13 17:48:29.226503 :: [   115600] return 0/0/0 async 0/0/0
Jul 13 17:48:34.228049 :: [   115650] return 0/0/0 async 0/0/0
Jul 13 17:48:39.232807 :: [   115700] return 0/0/0 async 0/0/0
Jul 13 17:48:44.225439 :: [   115750] return 0/0/0 async 0/0/0
Jul 13 17:48:49.225540 :: [   115800] return 0/0/0 async 0/0/0
Jul 13 17:48:54.225580 :: [   115850] return 0/0/0 async 0/0/0
Jul 13 17:48:59.225467 :: [   115900] return 0/0/0 async 0/0/0
Jul 13 17:49:04.225370 :: [   115950] return 0/0/0 async 0/0/0
Jul 13 17:49:09.225459 :: [   116000] return 0/0/0 async 0/0/0
Jul 13 17:49:14.226878 :: [   116050] return 0/0/0 async 0/0/0
Jul 13 17:49:19.225421 :: [   116100] return 0/0/0 async 0/0/0
Jul 13 17:49:24.225387 :: [   116150] return 0/0/0 async 0/0/0
Jul 13 17:49:29.226012 :: [   116200] return 0/0/0 async 0/0/0
Jul 13 17:49:34.225458 :: [   116250] return 0/0/0 async 0/0/0
Jul 13 17:49:39.225436 :: [   116300] return 0/0/0 async 0/0/0
Jul 13 17:49:44.225462 :: [   116350] return 0/0/0 async 0/0/0
Jul 13 17:49:49.225800 :: [   116400] return 0/0/0 async 0/0/0
Jul 13 17:49:54.221760 :: [   116450] return 0/0/0 async 0/0/0
Jul 13 17:49:59.220016 :: [   116500] return 0/0/0 async 0/0/0
Jul 13 17:50:04.225459 :: [   116550] return 0/0/0 async 0/0/0
Jul 13 17:50:09.225448 :: [   116600] return 0/0/0 async 0/0/0
Jul 13 17:50:14.225489 :: [   116650] return 0/0/0 async 0/0/0
Jul 13 17:50:19.220989 :: [   116700] return 0/0/0 async 0/0/0
Jul 13 17:50:24.225492 :: [   116750] return 0/0/0 async 0/0/0
Jul 13 17:50:29.225486 :: [   116800] return 0/0/0 async 0/0/0
Jul 13 17:50:34.225428 :: [   116850] return 0/0/0 async 0/0/0
Jul 13 17:50:39.225458 :: [   116900] return 0/0/0 async 0/0/0
Jul 13 17:50:44.225786 :: [   116950] return 0/0/0 async 0/0/0
Jul 13 17:50:49.225894 :: [   117000] return 0/0/0 async 0/0/0
Jul 13 17:50:54.225457 :: [   117050] return 0/0/0 async 0/0/0
Jul 13 17:50:59.225444 :: [   117100] return 0/0/0 async 0/0/0
Jul 13 17:51:04.225924 :: [   117150] return 0/0/0 async 0/0/0
Jul 13 17:51:09.225453 :: [   117200] return 0/0/0 async 0/0/0
Jul 13 17:51:14.225461 :: [   117250] return 0/0/0 async 0/0/0
Jul 13 17:51:19.221972 :: [   117300] return 0/0/0 async 0/0/0
Jul 13 17:51:24.225484 :: [   117350] return 0/0/0 async 0/0/0
Jul 13 17:51:29.225619 :: [   117400] return 0/0/0 async 0/0/0
Jul 13 17:51:34.225472 :: [   117450] return 0/0/0 async 0/0/0
Jul 13 17:51:39.225469 :: [   117500] return 0/0/0 async 0/0/0
Jul 13 17:51:44.225667 :: [   117550] return 0/0/0 async 0/0/0
Jul 13 17:51:49.225447 :: [   117600] return 0/0/0 async 0/0/0
Jul 13 17:51:54.225356 :: [   117650] return 0/0/0 async 0/0/0
Jul 13 17:51:59.225444 :: [   117700] return 0/0/0 async 0/0/0
Jul 13 17:52:04.225431 :: [   117750] return 0/0/0 async 0/0/0
Jul 13 17:52:09.225445 :: [   117800] return 0/0/0 async 0/0/0
Jul 13 17:52:14.225433 :: [   117850] return 0/0/0 async 0/0/0
Jul 13 17:52:19.225459 :: [   117900] return 0/0/0 async 0/0/0
Jul 13 17:52:24.225531 :: [   117950] return 0/0/0 async 0/0/0
Jul 13 17:52:29.225403 :: [   118000] return 0/0/0 async 0/0/0
Jul 13 17:52:34.225446 :: [   118050] return 0/0/0 async 0/0/0
Jul 13 17:52:39.225444 :: [   118100] return 0/0/0 async 0/0/0
Jul 13 17:52:44.225419 :: [   118150] return 0/0/0 async 0/0/0
Jul 13 17:52:49.225410 :: [   118200] return 0/0/0 async 0/0/0
Jul 13 17:52:54.225404 :: [   118250] return 0/0/0 async 0/0/0
Jul 13 17:52:59.225418 :: [   118300] return 0/0/0 async 0/0/0
Jul 13 17:53:04.225504 :: [   118350] return 0/0/0 async 0/0/0
Jul 13 17:53:09.225443 :: [   118400] return 0/0/0 async 0/0/0
Jul 13 17:53:14.225433 :: [   118450] return 0/0/0 async 0/0/0
Jul 13 17:53:19.226684 :: [   118500] return 0/0/0 async 0/0/0
Jul 13 17:53:24.219697 :: [   118550] return 0/0/0 async 0/0/0
Jul 13 17:53:29.225405 :: [   118600] return 0/0/0 async 0/0/0
Jul 13 17:53:34.225386 :: [   118650] return 0/0/0 async 0/0/0
Jul 13 17:53:39.225464 :: [   118700] return 0/0/0 async 0/0/0
Jul 13 17:53:44.225378 :: [   118750] return 0/0/0 async 0/0/0
Jul 13 17:53:49.225441 :: [   118800] return 0/0/0 async 0/0/0
Jul 13 17:53:54.225440 :: [   118850] return 0/0/0 async 0/0/0
Jul 13 17:53:59.225422 :: [   118900] return 0/0/0 async 0/0/0
Jul 13 17:54:04.220786 :: [   118950] return 0/0/0 async 0/0/0
Jul 13 17:54:09.225488 :: [   119000] return 0/0/0 async 0/0/0
Jul 13 17:54:14.225314 :: [   119050] return 0/0/0 async 0/0/0
Jul 13 17:54:19.225401 :: [   119100] return 0/0/0 async 0/0/0
Jul 13 17:54:24.225582 :: [   119150] return 0/0/0 async 0/0/0
Jul 13 17:54:29.225428 :: [   119200] return 0/0/0 async 0/0/0
Jul 13 17:54:34.224470 :: [   119250] return 0/0/0 async 0/0/0
Jul 13 17:54:39.219706 :: [   119300] return 0/0/0 async 0/0/0
Jul 13 17:54:44.225259 :: [   119350] return 0/0/0 async 0/0/0
Jul 13 17:54:49.220723 :: [   119400] return 0/0/0 async 0/0/0
Jul 13 17:54:54.224985 :: [   119450] return 0/0/0 async 0/0/0
Jul 13 17:54:59.225417 :: [   119500] return 0/0/0 async 0/0/0
Jul 13 17:55:04.225431 :: [   119550] return 0/0/0 async 0/0/0
Jul 13 17:55:09.225442 :: [   119600] return 0/0/0 async 0/0/0
Jul 13 17:55:14.225448 :: [   119650] return 0/0/0 async 0/0/0
Jul 13 17:55:19.224718 :: [   119700] return 0/0/0 async 0/0/0
Jul 13 17:55:24.223999 :: [   119750] return 0/0/0 async 0/0/0
Jul 13 17:55:29.223553 :: [   119800] return 0/0/0 async 0/0/0
Jul 13 17:55:34.219692 :: [   119850] return 0/0/0 async 0/0/0
Jul 13 17:55:39.223926 :: [   119900] return 0/0/0 async 0/0/0
Jul 13 17:55:44.224298 :: [   119950] return 0/0/0 async 0/0/0
Jul 13 17:55:49.225373 :: [   120000] return 0/0/0 async 0/0/0
Jul 13 17:55:54.222455 :: [   120050] return 0/0/0 async 0/0/0
Jul 13 17:55:59.224648 :: [   120100] return 0/0/0 async 0/0/0
Jul 13 17:56:04.224904 :: [   120150] return 0/0/0 async 0/0/0
Jul 13 17:56:09.224192 :: [   120200] return 0/0/0 async 0/0/0
Jul 13 17:56:14.223269 :: [   120250] return 0/0/0 async 0/0/0
Jul 13 17:56:19.223947 :: [   120300] return 0/0/0 async 0/0/0
Jul 13 17:56:24.223567 :: [   120350] return 0/0/0 async 0/0/0
Jul 13 17:56:29.225488 :: [   120400] return 0/0/0 async 0/0/0
Jul 13 17:56:34.222431 :: [   120450] return 0/0/0 async 0/0/0
Jul 13 17:56:39.225397 :: [   120500] return 0/0/0 async 0/0/0
Jul 13 17:56:44.223470 :: [   120550] return 0/0/0 async 0/0/0
Jul 13 17:56:49.224443 :: [   120600] return 0/0/0 async 0/0/0
Jul 13 17:56:54.225381 :: [   120650] return 0/0/0 async 0/0/0
Jul 13 17:56:59.222422 :: [   120700] return 0/0/0 async 0/0/0
Jul 13 17:57:04.225529 :: [   120750] return 0/0/0 async 0/0/0
Jul 13 17:57:09.225550 :: [   120800] return 0/0/0 async 0/0/0
Jul 13 17:57:14.222598 :: [   120850] return 0/0/0 async 0/0/0
Jul 13 17:57:19.226408 :: [   120900] return 0/0/0 async 0/0/0
Jul 13 17:57:24.225444 :: [   120950] return 0/0/0 async 0/0/0
Jul 13 17:57:29.225621 :: [   121000] return 0/0/0 async 0/0/0
Jul 13 17:57:34.220767 :: [   121050] return 0/0/0 async 0/0/0
Jul 13 17:57:39.222243 :: [   121100] return 0/0/0 async 0/0/0
Jul 13 17:57:44.222446 :: [   121150] return 0/0/0 async 0/0/0
Jul 13 17:57:49.224397 :: [   121200] return 0/0/0 async 0/0/0
Jul 13 17:57:54.224445 :: [   121250] return 0/0/0 async 0/0/0
Jul 13 17:57:59.224661 :: [   121300] return 0/0/0 async 0/0/0
Jul 13 17:58:04.222635 :: [   121350] return 0/0/0 async 0/0/0
Jul 13 17:58:09.221411 :: [   121400] return 0/0/0 async 0/0/0
Jul 13 17:58:14.225448 :: [   121450] return 0/0/0 async 0/0/0
Jul 13 17:58:19.221836 :: [   121500] return 0/0/0 async 0/0/0
Jul 13 17:58:24.221933 :: [   121550] return 0/0/0 async 0/0/0
Jul 13 17:58:29.222451 :: [   121600] return 0/0/0 async 0/0/0
Jul 13 17:58:34.220439 :: [   121650] return 0/0/0 async 0/0/0
Jul 13 17:58:39.222327 :: [   121700] return 0/0/0 async 0/0/0
Jul 13 17:58:44.225442 :: [   121750] return 0/0/0 async 0/0/0
Jul 13 17:58:49.225726 :: [   121800] return 0/0/0 async 0/0/0
Jul 13 17:58:54.221500 :: [   121850] return 0/0/0 async 0/0/0
Jul 13 17:58:59.221050 :: [   121900] return 0/0/0 async 0/0/0
Jul 13 17:59:04.222695 :: [   121950] return 0/0/0 async 0/0/0
Jul 13 17:59:09.225383 :: [   122000] return 0/0/0 async 0/0/0
Jul 13 17:59:14.225530 :: [   122050] return 0/0/0 async 0/0/0
Jul 13 17:59:19.225678 :: [   122100] return 0/0/0 async 0/0/0
Jul 13 17:59:24.225457 :: [   122150] return 0/0/0 async 0/0/0
Jul 13 17:59:29.225431 :: [   122200] return 0/0/0 async 0/0/0
Jul 13 17:59:34.220730 :: [   122250] return 0/0/0 async 0/0/0
Jul 13 17:59:39.225734 :: [   122300] return 0/0/0 async 0/0/0
Jul 13 17:59:44.225496 :: [   122350] return 0/0/0 async 0/0/0
Jul 13 17:59:49.225402 :: [   122400] return 0/0/0 async 0/0/0
Jul 13 17:59:54.225427 :: [   122450] return 0/0/0 async 0/0/0
 
En son bir moderatör tarafından düzenlenmiş:
Ek olarak hocam ben sadece
1) client source (giris.exe)

2)Pack shopdialog.py

3)Game build ve sadece game dosyasını attım ftpde db ile ilgili işlem yapmadım onla ilgilidemi birşey gerekiyor
DB'de onla ilgili bişey gözükmüyor. Tekrar yapmayı deneyin. Paylaşılan kodlarda bi sıkıntı gözükmüyor.
 
DB'de onla ilgili bişey gözükmüyor. Tekrar yapmayı deneyin. Paylaşılan kodlarda bi sıkıntı gözükmüyor.

Hocam yaptıklarımı anlatıyım

usr src kısmına GuncelSource.tar.gz attım

Putty girdim tar zxvf GuncelSource.tar.gz ile çıkarttım

Daha sonra düzenlemeleri yaptım içine attım degiştir dedim

Bundan sonra putty girdim fre bsd 9.2 vdi

cd /usr/src/Server/game/src yazdım

gmake dep (dep le cleanı yer degiştirerekde denedim yanlıs yapmısımdır die )

gmake clean

gmake -j20 (sadece gmake de denedim)

sonra cd /usr/src/Server/game yazıp strip -s game_r40250_32 yazıp boyutunu küçülttüm

NOT : TEST DİE Bİ DOSYADA ÇIKTI ONA BİRŞEY YAPMADIM 67MB Civarı küçültülmemiş hali


Ek olarak Gamede degişiklik yaptıgım 3 dosyayı uplood ettim bi bakarsanız yanlıslık varsa sorunu ne yapıyorsa düzeltip atarmısınız

Linkleri görebilmek için giriş yap veya kayıt ol.
 
Değişiklikleri geri alıp tekrar build edin. Bakalım eski haliyle aynı sorun oluşacak mı?

Denemiştim sorunsuz girmişti

Ek olarak yer olarak cd /usr/Server/game/src seçiyoruzya gmake kodları için common klasöründede leght.cpp degişiklik yapıyoruz onun komutu cd /usr/src/Server/common ya acaba onumu okumuyor

Build işleminde hatada vermiyor sadece warpmap die bişi var o hata veriyor satır hatası ama degişiklik yapmadan build ederken chler açılıyor işlem yapmadıgım gameyi buildleyince
 
Sourcedemi sorun var acaba 80Shop olmuyormu
Çok garip bunla ilgili hatada vermiyor. Açılmama sebebini anlayamadım. Şunu bi dener misiniz. Sourcede hiçbir değişiklik yapmadan build edip oyuna tekrar atar mısınız. Yani siz build edip atın. Bakalım açılacak mı?
 
Çok garip bunla ilgili hatada vermiyor. Açılmama sebebini anlayamadım. Şunu bi dener misiniz. Sourcede hiçbir değişiklik yapmadan build edip oyuna tekrar atar mısınız. Yani siz build edip atın. Bakalım açılacak mı?
Hocam zaten ilk clienti build ettim gameyi etmeden oyuna girdi packıda yaptım hata vermedi
Gameyide direk denedim girdi sorun vermeden
Öyle denedim sorunsuz girdi bu arada hata vermemiş demiştinizya

Channellerde shop table içeren hata var syerlerde

Channel 1 Syseri

Kod:
SYSERR: Jul 13 12:35:29.230509 :: pid_init:
Start of pid: 846

SYSERR: Jul 13 12:35:30.761091 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_ds.dat
SYSERR: Jul 13 12:35:30.761494 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_w20_sound.dat
SYSERR: Jul 13 12:35:30.761816 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_sg1.dat
SYSERR: Jul 13 12:35:30.766400 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_dss_box.dat
SYSERR: Jul 13 12:35:30.767453 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_w21_etc.dat
SYSERR: Jul 13 12:35:33.862826 :: Boot: shop table size error    ------------------------------ BURAYA BAKIN-----------------------------------
SYSERR: Jul 13 12:35:34.461257 :: pid_deinit:
End of pid
Buyrun Game99 Syseri
Kod:
SYSERR: Jul 13 12:35:27.823316 :: pid_init:
Start of pid: 840

SYSERR: Jul 13 12:35:30.890231 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_ds.dat
SYSERR: Jul 13 12:35:30.890609 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_w20_sound.dat
SYSERR: Jul 13 12:35:30.890938 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_sg1.dat
SYSERR: Jul 13 12:35:30.891926 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_dss_box.dat
SYSERR: Jul 13 12:35:30.892527 :: LoadPackageCryptInfo: [PackageCryptInfo] Failed to load package/cshybridcrypt_metin2_patch_w21_etc.dat
SYSERR: Jul 13 12:35:34.467012 :: Boot: shop table size error    ------------------------------ BURAYA BAKIN-----------------------------------
SYSERR: Jul 13 12:35:34.759891 :: pid_deinit:
End of pid
 
En son bir moderatör tarafından düzenlenmiş:
Çok garip bunla ilgili hatada vermiyor. Açılmama sebebini anlayamadım. Şunu bi dener misiniz. Sourcede hiçbir değişiklik yapmadan build edip oyuna tekrar atar mısınız. Yani siz build edip atın. Bakalım açılacak mı?

Neyse hocam olmayacak galiba zorlamayalım başka files bulurum Sağolun bunca zaman yardım etmeye çalıstınız
 
Çok garip bunla ilgili hatada vermiyor. Açılmama sebebini anlayamadım. Şunu bi dener misiniz. Sourcede hiçbir değişiklik yapmadan build edip oyuna tekrar atar mısınız. Yani siz build edip atın. Bakalım açılacak mı?
Hocam Şey gördüm Mb elveda files tanıtımında
PPWAN8.jpg


Paylaşmıs böyle olan sourceleri atmazmı acaba bana Rica etsek
 
Geri
Üst