pygpt-net 2.7.6__py3-none-any.whl → 2.7.8__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (120) hide show
  1. pygpt_net/CHANGELOG.txt +13 -0
  2. pygpt_net/__init__.py +3 -3
  3. pygpt_net/app.py +5 -1
  4. pygpt_net/controller/assistant/batch.py +2 -2
  5. pygpt_net/controller/assistant/files.py +7 -6
  6. pygpt_net/controller/assistant/threads.py +0 -0
  7. pygpt_net/controller/chat/command.py +0 -0
  8. pygpt_net/controller/chat/remote_tools.py +3 -9
  9. pygpt_net/controller/chat/stream.py +2 -2
  10. pygpt_net/controller/chat/{handler/worker.py → stream_worker.py} +13 -35
  11. pygpt_net/controller/dialogs/confirm.py +35 -58
  12. pygpt_net/controller/lang/mapping.py +9 -9
  13. pygpt_net/controller/remote_store/{google/batch.py → batch.py} +209 -252
  14. pygpt_net/controller/remote_store/remote_store.py +982 -13
  15. pygpt_net/core/command/command.py +0 -0
  16. pygpt_net/core/db/viewer.py +1 -1
  17. pygpt_net/core/debug/models.py +2 -2
  18. pygpt_net/core/realtime/worker.py +3 -1
  19. pygpt_net/{controller/remote_store/google → core/remote_store/anthropic}/__init__.py +0 -1
  20. pygpt_net/core/remote_store/anthropic/files.py +211 -0
  21. pygpt_net/core/remote_store/anthropic/store.py +208 -0
  22. pygpt_net/core/remote_store/openai/store.py +5 -4
  23. pygpt_net/core/remote_store/remote_store.py +5 -1
  24. pygpt_net/{controller/remote_store/openai → core/remote_store/xai}/__init__.py +0 -1
  25. pygpt_net/core/remote_store/xai/files.py +225 -0
  26. pygpt_net/core/remote_store/xai/store.py +219 -0
  27. pygpt_net/data/config/config.json +18 -5
  28. pygpt_net/data/config/models.json +193 -4
  29. pygpt_net/data/config/settings.json +179 -36
  30. pygpt_net/data/icons/folder_eye.svg +1 -0
  31. pygpt_net/data/icons/folder_eye_filled.svg +1 -0
  32. pygpt_net/data/icons/folder_open.svg +1 -0
  33. pygpt_net/data/icons/folder_open_filled.svg +1 -0
  34. pygpt_net/data/locale/locale.de.ini +6 -3
  35. pygpt_net/data/locale/locale.en.ini +46 -12
  36. pygpt_net/data/locale/locale.es.ini +6 -3
  37. pygpt_net/data/locale/locale.fr.ini +6 -3
  38. pygpt_net/data/locale/locale.it.ini +6 -3
  39. pygpt_net/data/locale/locale.pl.ini +7 -4
  40. pygpt_net/data/locale/locale.uk.ini +6 -3
  41. pygpt_net/data/locale/locale.zh.ini +6 -3
  42. pygpt_net/icons.qrc +4 -0
  43. pygpt_net/icons_rc.py +282 -138
  44. pygpt_net/plugin/cmd_mouse_control/worker.py +2 -1
  45. pygpt_net/plugin/cmd_mouse_control/worker_sandbox.py +2 -1
  46. pygpt_net/provider/api/anthropic/__init__.py +10 -3
  47. pygpt_net/provider/api/anthropic/chat.py +342 -11
  48. pygpt_net/provider/api/anthropic/computer.py +844 -0
  49. pygpt_net/provider/api/anthropic/remote_tools.py +172 -0
  50. pygpt_net/provider/api/anthropic/store.py +307 -0
  51. pygpt_net/{controller/chat/handler/anthropic_stream.py → provider/api/anthropic/stream.py} +99 -10
  52. pygpt_net/provider/api/anthropic/tools.py +32 -77
  53. pygpt_net/provider/api/anthropic/utils.py +30 -0
  54. pygpt_net/{controller/chat/handler → provider/api/anthropic/worker}/__init__.py +0 -0
  55. pygpt_net/provider/api/anthropic/worker/importer.py +278 -0
  56. pygpt_net/provider/api/google/chat.py +62 -9
  57. pygpt_net/provider/api/google/store.py +124 -3
  58. pygpt_net/{controller/chat/handler/google_stream.py → provider/api/google/stream.py} +92 -25
  59. pygpt_net/provider/api/google/utils.py +185 -0
  60. pygpt_net/provider/api/google/worker/importer.py +16 -28
  61. pygpt_net/provider/api/langchain/__init__.py +0 -0
  62. pygpt_net/{controller/chat/handler/langchain_stream.py → provider/api/langchain/stream.py} +1 -1
  63. pygpt_net/provider/api/llama_index/__init__.py +0 -0
  64. pygpt_net/{controller/chat/handler/llamaindex_stream.py → provider/api/llama_index/stream.py} +1 -1
  65. pygpt_net/provider/api/openai/assistants.py +2 -2
  66. pygpt_net/provider/api/openai/image.py +2 -2
  67. pygpt_net/provider/api/openai/store.py +4 -1
  68. pygpt_net/{controller/chat/handler/openai_stream.py → provider/api/openai/stream.py} +1 -1
  69. pygpt_net/provider/api/openai/utils.py +69 -3
  70. pygpt_net/provider/api/openai/worker/importer.py +19 -61
  71. pygpt_net/provider/api/openai/worker/importer_assistants.py +230 -0
  72. pygpt_net/provider/api/x_ai/__init__.py +138 -15
  73. pygpt_net/provider/api/x_ai/audio.py +43 -11
  74. pygpt_net/provider/api/x_ai/chat.py +92 -4
  75. pygpt_net/provider/api/x_ai/image.py +149 -47
  76. pygpt_net/provider/api/x_ai/realtime/__init__.py +12 -0
  77. pygpt_net/provider/api/x_ai/realtime/client.py +1825 -0
  78. pygpt_net/provider/api/x_ai/realtime/realtime.py +198 -0
  79. pygpt_net/provider/api/x_ai/{remote.py → remote_tools.py} +183 -70
  80. pygpt_net/provider/api/x_ai/responses.py +507 -0
  81. pygpt_net/provider/api/x_ai/store.py +610 -0
  82. pygpt_net/{controller/chat/handler/xai_stream.py → provider/api/x_ai/stream.py} +42 -10
  83. pygpt_net/provider/api/x_ai/tools.py +59 -8
  84. pygpt_net/{controller/chat/handler → provider/api/x_ai}/utils.py +1 -2
  85. pygpt_net/provider/api/x_ai/vision.py +1 -4
  86. pygpt_net/provider/api/x_ai/worker/importer.py +308 -0
  87. pygpt_net/provider/audio_input/xai_grok_voice.py +390 -0
  88. pygpt_net/provider/audio_output/xai_tts.py +325 -0
  89. pygpt_net/provider/core/config/patch.py +39 -3
  90. pygpt_net/provider/core/config/patches/patch_before_2_6_42.py +2 -2
  91. pygpt_net/provider/core/model/patch.py +39 -1
  92. pygpt_net/tools/image_viewer/tool.py +334 -34
  93. pygpt_net/tools/image_viewer/ui/dialogs.py +319 -22
  94. pygpt_net/tools/text_editor/ui/dialogs.py +3 -2
  95. pygpt_net/tools/text_editor/ui/widgets.py +0 -0
  96. pygpt_net/ui/dialog/assistant.py +1 -1
  97. pygpt_net/ui/dialog/plugins.py +13 -5
  98. pygpt_net/ui/dialog/remote_store.py +552 -0
  99. pygpt_net/ui/dialogs.py +3 -5
  100. pygpt_net/ui/layout/ctx/ctx_list.py +58 -7
  101. pygpt_net/ui/menu/tools.py +6 -13
  102. pygpt_net/ui/widget/dialog/base.py +16 -5
  103. pygpt_net/ui/widget/dialog/{remote_store_google.py → remote_store.py} +10 -10
  104. pygpt_net/ui/widget/element/button.py +4 -4
  105. pygpt_net/ui/widget/image/display.py +2 -2
  106. pygpt_net/ui/widget/lists/context.py +2 -2
  107. pygpt_net/ui/widget/textarea/editor.py +0 -0
  108. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/METADATA +15 -2
  109. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/RECORD +107 -89
  110. pygpt_net/controller/remote_store/google/store.py +0 -615
  111. pygpt_net/controller/remote_store/openai/batch.py +0 -524
  112. pygpt_net/controller/remote_store/openai/store.py +0 -699
  113. pygpt_net/ui/dialog/remote_store_google.py +0 -539
  114. pygpt_net/ui/dialog/remote_store_openai.py +0 -539
  115. pygpt_net/ui/widget/dialog/remote_store_openai.py +0 -56
  116. pygpt_net/ui/widget/lists/remote_store_google.py +0 -248
  117. pygpt_net/ui/widget/lists/remote_store_openai.py +0 -317
  118. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/LICENSE +0 -0
  119. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/WHEEL +0 -0
  120. {pygpt_net-2.7.6.dist-info → pygpt_net-2.7.8.dist-info}/entry_points.txt +0 -0
pygpt_net/icons_rc.py CHANGED
@@ -533,6 +533,43 @@ T640-160H160Zm0-\
533
533
  80h480v-480H160v\
534
534
  480Zm0 0v-480 48\
535
535
  0Z\x22/></svg>\
536
+ \x00\x00\x02$\
537
+ <\
538
+ svg xmlns=\x22http:\
539
+ //www.w3.org/200\
540
+ 0/svg\x22 height=\x222\
541
+ 4px\x22 viewBox=\x220 \
542
+ -960 960 960\x22 wi\
543
+ dth=\x2224px\x22 fill=\
544
+ \x22#686868\x22><path \
545
+ d=\x22M160-160q-33 \
546
+ 0-56.5-23.5T80-2\
547
+ 40v-480q0-33 23.\
548
+ 5-56.5T160-800h2\
549
+ 40l80 80h320q33 \
550
+ 0 56.5 23.5T880-\
551
+ 640v249q-51-42-1\
552
+ 12.5-65.5T640-48\
553
+ 0q-143 0-247.5 9\
554
+ 4T252-160h-92ZM6\
555
+ 40-40q-91 0-168-\
556
+ 48T360-220q35-84\
557
+ 112-132t168-48q\
558
+ 91 0 168 48t112 \
559
+ 132q-35 84-112 1\
560
+ 32T640-40Zm0-80q\
561
+ 42 0 71-29t29-71\
562
+ q0-42-29-71t-71-\
563
+ 29q-42 0-71 29t-\
564
+ 29 71q0 42 29 71\
565
+ t71 29Zm0-40q-25\
566
+ 0-42.5-17.5T580\
567
+ -220q0-25 17.5-4\
568
+ 2.5T640-280q25 0\
569
+ 42.5 17.5T700-2\
570
+ 20q0 25-17.5 42.\
571
+ 5T640-160Z\x22/></s\
572
+ vg>\
536
573
  \x00\x00\x01P\
537
574
  <\
538
575
  svg xmlns=\x22http:\
@@ -606,6 +643,46 @@ T820-720l20 80q-\
606
643
  2 15v520h-80v-24\
607
644
  0h-80v240h-80Z\x22/\
608
645
  ></svg>\
646
+ \x00\x00\x02Q\
647
+ <\
648
+ svg xmlns=\x22http:\
649
+ //www.w3.org/200\
650
+ 0/svg\x22 height=\x222\
651
+ 4px\x22 viewBox=\x220 \
652
+ -960 960 960\x22 wi\
653
+ dth=\x2224px\x22 fill=\
654
+ \x22#686868\x22><path \
655
+ d=\x22M160-160q-33 \
656
+ 0-56.5-23.5T80-2\
657
+ 40v-480q0-33 23.\
658
+ 5-56.5T160-800h2\
659
+ 40l80 80h320q33 \
660
+ 0 56.5 23.5T880-\
661
+ 640v242q-18-14-3\
662
+ 8-23t-42-19v-200\
663
+ H447l-80-80H160v\
664
+ 480h120v80H160ZM\
665
+ 640-40q-91 0-168\
666
+ -48T360-220q35-8\
667
+ 4 112-132t168-48\
668
+ q91 0 168 48t112\
669
+ 132q-35 84-112 \
670
+ 132T640-40Zm0-80\
671
+ q57 0 107.5-26t8\
672
+ 2.5-74q-32-48-82\
673
+ .5-74T640-320q-5\
674
+ 7 0-107.5 26T450\
675
+ -220q32 48 82.5 \
676
+ 74T640-120Zm0-40\
677
+ q-25 0-42.5-17.5\
678
+ T580-220q0-25 17\
679
+ .5-42.5T640-280q\
680
+ 25 0 42.5 17.5T7\
681
+ 00-220q0 25-17.5\
682
+ 42.5T640-160Zm-\
683
+ 480-80v-480 277-\
684
+ 37 240Z\x22/></svg>\
685
+ \
609
686
  \x00\x00\x01\xee\
610
687
  <\
611
688
  svg xmlns=\x22http:\
@@ -1351,6 +1428,26 @@ v320H160Zm240 0v\
1351
1428
  Zm240 0v-440h160\
1352
1429
  v440H640Z\x22/></sv\
1353
1430
  g>\
1431
+ \x00\x00\x01\x15\
1432
+ <\
1433
+ svg xmlns=\x22http:\
1434
+ //www.w3.org/200\
1435
+ 0/svg\x22 height=\x222\
1436
+ 4px\x22 viewBox=\x220 \
1437
+ -960 960 960\x22 wi\
1438
+ dth=\x2224px\x22 fill=\
1439
+ \x22#686868\x22><path \
1440
+ d=\x22M160-160q-33 \
1441
+ 0-56.5-23.5T80-2\
1442
+ 40v-480q0-33 23.\
1443
+ 5-56.5T160-800h2\
1444
+ 40l80 80h320q33 \
1445
+ 0 56.5 23.5T880-\
1446
+ 640H160v400l96-3\
1447
+ 20h684L837-217q-\
1448
+ 8 26-29.5 41.5T7\
1449
+ 60-160H160Z\x22/></\
1450
+ svg>\
1354
1451
  \x00\x00\x01E\
1355
1452
  <\
1356
1453
  svg xmlns=\x22http:\
@@ -1844,6 +1941,31 @@ l=\x22#686868\x22 d=\x22M\
1844
1941
  q0 134 93 227t22\
1845
1942
  7 93Zm0-320Z\x22/><\
1846
1943
  /svg>\
1944
+ \x00\x00\x01a\
1945
+ <\
1946
+ svg xmlns=\x22http:\
1947
+ //www.w3.org/200\
1948
+ 0/svg\x22 height=\x222\
1949
+ 4px\x22 viewBox=\x220 \
1950
+ -960 960 960\x22 wi\
1951
+ dth=\x2224px\x22 fill=\
1952
+ \x22#686868\x22><path \
1953
+ d=\x22M160-160q-33 \
1954
+ 0-56.5-23.5T80-2\
1955
+ 40v-480q0-33 23.\
1956
+ 5-56.5T160-800h2\
1957
+ 40l80 80h320q33 \
1958
+ 0 56.5 23.5T880-\
1959
+ 640H447l-80-80H1\
1960
+ 60v480l96-320h68\
1961
+ 4L837-217q-8 26-\
1962
+ 29.5 41.5T760-16\
1963
+ 0H160Zm84-80h516\
1964
+ l72-240H316l-72 \
1965
+ 240Zm0 0 72-240-\
1966
+ 72 240Zm-84-400v\
1967
+ -80 80Z\x22/></svg>\
1968
+ \
1847
1969
  \x00\x00\x02g\
1848
1970
  <\
1849
1971
  svg xmlns=\x22http:\
@@ -4368,6 +4490,11 @@ qt_resource_name = b"\
4368
4490
  \x09s\xed\xc7\
4369
4491
  \x00w\
4370
4492
  \x00e\x00b\x00c\x00a\x00m\x00.\x00s\x00v\x00g\
4493
+ \x00\x15\
4494
+ \x07o\xbe\x87\
4495
+ \x00f\
4496
+ \x00o\x00l\x00d\x00e\x00r\x00_\x00e\x00y\x00e\x00_\x00f\x00i\x00l\x00l\x00e\x00d\
4497
+ \x00.\x00s\x00v\x00g\
4371
4498
  \x00\x08\
4372
4499
  \x06|W\x87\
4373
4500
  \x00c\
@@ -4381,6 +4508,10 @@ qt_resource_name = b"\
4381
4508
  \x00a\
4382
4509
  \x00c\x00c\x00e\x00s\x00s\x00i\x00b\x00i\x00l\x00i\x00t\x00y\x00.\x00s\x00v\x00g\
4383
4510
  \
4511
+ \x00\x0e\
4512
+ \x00\xa5\xc1'\
4513
+ \x00f\
4514
+ \x00o\x00l\x00d\x00e\x00r\x00_\x00e\x00y\x00e\x00.\x00s\x00v\x00g\
4384
4515
  \x00\x07\
4385
4516
  \x0a\xb7Z'\
4386
4517
  \x00s\
@@ -4490,6 +4621,11 @@ qt_resource_name = b"\
4490
4621
  \x09\xd2]G\
4491
4622
  \x00e\
4492
4623
  \x00q\x00u\x00a\x00l\x00i\x00z\x00e\x00r\x00.\x00s\x00v\x00g\
4624
+ \x00\x16\
4625
+ \x01\x04\xe3\xa7\
4626
+ \x00f\
4627
+ \x00o\x00l\x00d\x00e\x00r\x00_\x00o\x00p\x00e\x00n\x00_\x00f\x00i\x00l\x00l\x00e\
4628
+ \x00d\x00.\x00s\x00v\x00g\
4493
4629
  \x00\x09\
4494
4630
  \x0b\xab\xa1'\
4495
4631
  \x00w\
@@ -4566,6 +4702,10 @@ qt_resource_name = b"\
4566
4702
  \x0a-\x1b\xc7\
4567
4703
  \x00c\
4568
4704
  \x00i\x00r\x00c\x00l\x00e\x00.\x00s\x00v\x00g\
4705
+ \x00\x0f\
4706
+ \x04\x18\x9b\x87\
4707
+ \x00f\
4708
+ \x00o\x00l\x00d\x00e\x00r\x00_\x00o\x00p\x00e\x00n\x00.\x00s\x00v\x00g\
4569
4709
  \x00\x09\
4570
4710
  \x09g\xa8g\
4571
4711
  \x00r\
@@ -4925,165 +5065,169 @@ qt_resource_name = b"\
4925
5065
 
4926
5066
  qt_resource_struct = b"\
4927
5067
  \x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
4928
- \x00\x00\x00\x00\x00\x02\x00\x00\x00\x9e\x00\x00\x00\x02\
4929
- \x00\x00\x062\x00\x00\x00\x00\x00\x01\x00\x00W\x0c\
4930
- \x00\x00\x0d\xf2\x00\x00\x00\x00\x00\x01\x00\x00\xd1\xa3\
4931
- \x00\x00\x0eJ\x00\x00\x00\x00\x00\x01\x00\x00\xd5\xc3\
4932
- \x00\x00\x10t\x00\x00\x00\x00\x00\x01\x00\x00\xf4\x19\
5068
+ \x00\x00\x00\x00\x00\x02\x00\x00\x00\xa2\x00\x00\x00\x02\
5069
+ \x00\x00\x06\xb6\x00\x00\x00\x00\x00\x01\x00\x00\x5c\xa2\
5070
+ \x00\x00\x0e\x9a\x00\x00\x00\x00\x00\x01\x00\x00\xd8\x9e\
5071
+ \x00\x00\x0e\xf2\x00\x00\x00\x00\x00\x01\x00\x00\xdc\xbe\
5072
+ \x00\x00\x11\x1c\x00\x00\x00\x00\x00\x01\x00\x00\xfb\x14\
4933
5073
  \x00\x00\x01\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x1a\xc1\
4934
- \x00\x00\x0c`\x00\x00\x00\x00\x00\x01\x00\x00\xb8=\
4935
- \x00\x00\x0c\xc0\x00\x00\x00\x00\x00\x01\x00\x00\xbf\x0f\
4936
- \x00\x00\x07\xc8\x00\x00\x00\x00\x00\x01\x00\x00n\xb3\
4937
- \x00\x00\x03r\x00\x00\x00\x00\x00\x01\x00\x000\xa6\
4938
- \x00\x00\x03\x88\x00\x00\x00\x00\x00\x01\x00\x002\x95\
5074
+ \x00\x00\x0d\x08\x00\x00\x00\x00\x00\x01\x00\x00\xbf8\
5075
+ \x00\x00\x0dh\x00\x00\x00\x00\x00\x01\x00\x00\xc6\x0a\
5076
+ \x00\x00\x08p\x00\x00\x00\x00\x00\x01\x00\x00u\xae\
5077
+ \x00\x00\x02\xd2\x00\x00\x00\x00\x00\x01\x00\x00$;\
5078
+ \x00\x00\x03\xc4\x00\x00\x00\x00\x00\x01\x00\x005#\
5079
+ \x00\x00\x03\xda\x00\x00\x00\x00\x00\x01\x00\x007\x12\
5080
+ \x00\x00\x05\xb6\x00\x00\x00\x00\x00\x01\x00\x00Qz\
4939
5081
  \x00\x00\x00V\x00\x00\x00\x00\x00\x01\x00\x00\x04\xc3\
4940
- \x00\x00\x0a\xd2\x00\x00\x00\x00\x00\x01\x00\x00\x9f\xdc\
4941
- \x00\x00\x09\xf8\x00\x00\x00\x00\x00\x01\x00\x00\x93\x99\
4942
- \x00\x00\x09\xde\x00\x00\x00\x00\x00\x01\x00\x00\x92\x05\
4943
- \x00\x00\x09B\x00\x00\x00\x00\x00\x01\x00\x00\x86\xde\
4944
- \x00\x00\x0a&\x00\x00\x00\x00\x00\x01\x00\x00\x98\x02\
4945
- \x00\x00\x07\xa8\x00\x00\x00\x00\x00\x01\x00\x00m\xa6\
4946
- \x00\x00\x09\x92\x00\x00\x00\x00\x00\x01\x00\x00\x8a\x8d\
4947
- \x00\x00\x08B\x00\x00\x00\x00\x00\x01\x00\x00w\xdf\
4948
- \x00\x00\x02\xea\x00\x00\x00\x00\x00\x01\x00\x00(\xb9\
4949
- \x00\x00\x0e\xb0\x00\x00\x00\x00\x00\x01\x00\x00\xdc\xed\
4950
- \x00\x00\x0c4\x00\x00\x00\x00\x00\x01\x00\x00\xb5-\
4951
- \x00\x00\x02z\x00\x00\x00\x00\x00\x01\x00\x00 \xa7\
5082
+ \x00\x00\x0bz\x00\x00\x00\x00\x00\x01\x00\x00\xa6\xd7\
5083
+ \x00\x00\x0a\xa0\x00\x00\x00\x00\x00\x01\x00\x00\x9a\x94\
5084
+ \x00\x00\x0a\x86\x00\x00\x00\x00\x00\x01\x00\x00\x99\x00\
5085
+ \x00\x00\x09\xea\x00\x00\x00\x00\x00\x01\x00\x00\x8d\xd9\
5086
+ \x00\x00\x0a\xce\x00\x00\x00\x00\x00\x01\x00\x00\x9e\xfd\
5087
+ \x00\x00\x08P\x00\x00\x00\x00\x00\x01\x00\x00t\xa1\
5088
+ \x00\x00\x0a:\x00\x00\x00\x00\x00\x01\x00\x00\x91\x88\
5089
+ \x00\x00\x08\xea\x00\x00\x00\x00\x00\x01\x00\x00~\xda\
5090
+ \x00\x00\x03<\x00\x00\x00\x00\x00\x01\x00\x00-6\
5091
+ \x00\x00\x0fX\x00\x00\x00\x00\x00\x01\x00\x00\xe3\xe8\
5092
+ \x00\x00\x0c\xdc\x00\x00\x00\x00\x00\x01\x00\x00\xbc(\
5093
+ \x00\x00\x07\xd0\x00\x00\x00\x00\x00\x01\x00\x00n\xc1\
5094
+ \x00\x00\x02\xaa\x00\x00\x00\x00\x00\x01\x00\x00\x22\xcf\
4952
5095
  \x00\x00\x00@\x00\x00\x00\x00\x00\x01\x00\x00\x03\xa5\
4953
- \x00\x00\x05\x08\x00\x00\x00\x00\x00\x01\x00\x00H\x07\
5096
+ \x00\x00\x05Z\x00\x00\x00\x00\x00\x01\x00\x00L\x84\
4954
5097
  \x00\x00\x01z\x00\x00\x00\x00\x00\x01\x00\x00\x12\x82\
4955
- \x00\x00\x08l\x00\x00\x00\x00\x00\x01\x00\x00{Z\
4956
- \x00\x00\x07\x16\x00\x00\x00\x00\x00\x01\x00\x00e\xa8\
5098
+ \x00\x00\x09\x14\x00\x00\x00\x00\x00\x01\x00\x00\x82U\
5099
+ \x00\x00\x07\x9a\x00\x00\x00\x00\x00\x01\x00\x00k>\
4957
5100
  \x00\x00\x00\xac\x00\x00\x00\x00\x00\x01\x00\x00\x08\xf3\
4958
- \x00\x00\x06\x88\x00\x00\x00\x00\x00\x01\x00\x00]\x15\
4959
- \x00\x00\x08\x9e\x00\x00\x00\x00\x00\x01\x00\x00~\x88\
4960
- \x00\x00\x09X\x00\x00\x00\x00\x00\x01\x00\x00\x87\x9c\
4961
- \x00\x00\x03\xa4\x00\x00\x00\x00\x00\x01\x00\x003\xcf\
5101
+ \x00\x00\x07\x0c\x00\x00\x00\x00\x00\x01\x00\x00b\xab\
5102
+ \x00\x00\x09F\x00\x00\x00\x00\x00\x01\x00\x00\x85\x83\
5103
+ \x00\x00\x0a\x00\x00\x00\x00\x00\x00\x01\x00\x00\x8e\x97\
5104
+ \x00\x00\x03\xf6\x00\x00\x00\x00\x00\x01\x00\x008L\
4962
5105
  \x00\x00\x01\xde\x00\x00\x00\x00\x00\x01\x00\x00\x19\x22\
4963
- \x00\x00\x0cx\x00\x00\x00\x00\x00\x01\x00\x00\xba\x1f\
4964
- \x00\x00\x02\xb6\x00\x00\x00\x00\x00\x01\x00\x00$\x05\
5106
+ \x00\x00\x0d \x00\x00\x00\x00\x00\x01\x00\x00\xc1\x1a\
5107
+ \x00\x00\x03\x08\x00\x00\x00\x00\x00\x01\x00\x00(\x82\
4965
5108
  \x00\x00\x02\x0e\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x07\
4966
- \x00\x00\x0b\xcc\x00\x00\x00\x00\x00\x01\x00\x00\xb1\x07\
5109
+ \x00\x00\x0ct\x00\x00\x00\x00\x00\x01\x00\x00\xb8\x02\
4967
5110
  \x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
4968
- \x00\x00\x0d\xdc\x00\x00\x00\x00\x00\x01\x00\x00d\xf6\
4969
- \x00\x00\x0d\x80\x00\x00\x00\x00\x00\x01\x00\x00\xccP\
4970
- \x00\x00\x0a\x0c\x00\x00\x00\x00\x00\x01\x00\x00\x95\xba\
4971
- \x00\x00\x02L\x00\x00\x00\x00\x00\x01\x00\x00\x1d\xeb\
4972
- \x00\x00\x0d\x22\x00\x00\x00\x00\x00\x01\x00\x00\xc5\xa6\
4973
- \x00\x00\x03X\x00\x00\x00\x00\x00\x01\x00\x00.\xf3\
4974
- \x00\x00\x0e\xd2\x00\x00\x00\x00\x00\x01\x00\x00\xdd\xea\
4975
- \x00\x00\x05\xc8\x00\x00\x00\x00\x00\x01\x00\x00R6\
4976
- \x00\x00\x09\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x8b\xda\
4977
- \x00\x00\x0c\xf0\x00\x00\x00\x00\x00\x01\x00\x00\xc2\x5c\
4978
- \x00\x00\x10\x06\x00\x00\x00\x00\x00\x01\x00\x00\xef#\
4979
- \x00\x00\x108\x00\x00\x00\x00\x00\x01\x00\x00\xf1z\
4980
- \x00\x00\x0e\xe8\x00\x00\x00\x00\x00\x01\x00\x00\xde\xab\
4981
- \x00\x00\x0e\x1e\x00\x00\x00\x00\x00\x01\x00\x00\xd4\x18\
4982
- \x00\x00\x05\xfe\x00\x00\x00\x00\x00\x01\x00\x00S\xd0\
4983
- \x00\x00\x08$\x00\x00\x00\x00\x00\x01\x00\x00v\x06\
5111
+ \x00\x00\x0e\x84\x00\x00\x00\x00\x00\x01\x00\x00j\x8c\
5112
+ \x00\x00\x0e(\x00\x00\x00\x00\x00\x01\x00\x00\xd3K\
5113
+ \x00\x00\x0a\xb4\x00\x00\x00\x00\x00\x01\x00\x00\x9c\xb5\
5114
+ \x00\x00\x02|\x00\x00\x00\x00\x00\x01\x00\x00 \x13\
5115
+ \x00\x00\x0d\xca\x00\x00\x00\x00\x00\x01\x00\x00\xcc\xa1\
5116
+ \x00\x00\x03\xaa\x00\x00\x00\x00\x00\x01\x00\x003p\
5117
+ \x00\x00\x0fz\x00\x00\x00\x00\x00\x01\x00\x00\xe4\xe5\
5118
+ \x00\x00\x06L\x00\x00\x00\x00\x00\x01\x00\x00W\xcc\
5119
+ \x00\x00\x0aX\x00\x00\x00\x00\x00\x01\x00\x00\x92\xd5\
5120
+ \x00\x00\x0d\x98\x00\x00\x00\x00\x00\x01\x00\x00\xc9W\
5121
+ \x00\x00\x10\xae\x00\x00\x00\x00\x00\x01\x00\x00\xf6\x1e\
5122
+ \x00\x00\x10\xe0\x00\x00\x00\x00\x00\x01\x00\x00\xf8u\
5123
+ \x00\x00\x0f\x90\x00\x00\x00\x00\x00\x01\x00\x00\xe5\xa6\
5124
+ \x00\x00\x0e\xc6\x00\x00\x00\x00\x00\x01\x00\x00\xdb\x13\
5125
+ \x00\x00\x06\x82\x00\x00\x00\x00\x00\x01\x00\x00Yf\
5126
+ \x00\x00\x08\xcc\x00\x00\x00\x00\x00\x01\x00\x00}\x01\
4984
5127
  \x00\x00\x01Z\x00\x00\x00\x00\x00\x01\x00\x00\x10\xf3\
4985
- \x00\x00\x0b8\x00\x00\x00\x00\x00\x01\x00\x00\xa4?\
4986
- \x00\x00\x0c\xac\x00\x00\x00\x00\x00\x01\x00\x00\xbc\xf1\
4987
- \x00\x00\x0b\x1a\x00\x00\x00\x00\x00\x01\x00\x00\xa3\x11\
4988
- \x00\x00\x0e\x08\x00\x00\x00\x00\x00\x01\x00\x00\xd3[\
4989
- \x00\x00\x03\xe8\x00\x00\x00\x00\x00\x01\x00\x007w\
4990
- \x00\x00\x06\xa2\x00\x00\x00\x00\x00\x01\x00\x00^b\
4991
- \x00\x00\x06j\x00\x00\x00\x00\x00\x01\x00\x00Yr\
4992
- \x00\x00\x0dh\x00\x00\x00\x00\x00\x01\x00\x00\xca\xfb\
4993
- \x00\x00\x05|\x00\x00\x00\x00\x00\x01\x00\x00NF\
4994
- \x00\x00\x06\xe6\x00\x00\x00\x00\x00\x01\x00\x00c\xaf\
4995
- \x00\x00\x07d\x00\x00\x00\x00\x00\x01\x00\x00k\x96\
4996
- \x00\x00\x07\x8a\x00\x00\x00\x00\x00\x01\x00\x00l\x90\
4997
- \x00\x00\x0b\xf8\x00\x00\x00\x00\x00\x01\x00\x00\xb2\xca\
4998
- \x00\x00\x0b|\x00\x00\x00\x00\x00\x01\x00\x00\xad\x8c\
4999
- \x00\x00\x0ab\x00\x00\x00\x00\x00\x01\x00\x00\x9a\x90\
5000
- \x00\x00\x02b\x00\x00\x00\x00\x00\x01\x00\x00\x1f?\
5001
- \x00\x00\x0cH\x00\x00\x00\x00\x00\x01\x00\x00\xb6\xf0\
5002
- \x00\x00\x0f\xee\x00\x00\x00\x00\x00\x01\x00\x00\xed\xf4\
5128
+ \x00\x00\x02L\x00\x00\x00\x00\x00\x01\x00\x00\x1d\xeb\
5129
+ \x00\x00\x0b\xe0\x00\x00\x00\x00\x00\x01\x00\x00\xab:\
5130
+ \x00\x00\x0dT\x00\x00\x00\x00\x00\x01\x00\x00\xc3\xec\
5131
+ \x00\x00\x0b\xc2\x00\x00\x00\x00\x00\x01\x00\x00\xaa\x0c\
5132
+ \x00\x00\x0e\xb0\x00\x00\x00\x00\x00\x01\x00\x00\xdaV\
5133
+ \x00\x00\x04:\x00\x00\x00\x00\x00\x01\x00\x00;\xf4\
5134
+ \x00\x00\x07&\x00\x00\x00\x00\x00\x01\x00\x00c\xf8\
5135
+ \x00\x00\x06\xee\x00\x00\x00\x00\x00\x01\x00\x00_\x08\
5136
+ \x00\x00\x0e\x10\x00\x00\x00\x00\x00\x01\x00\x00\xd1\xf6\
5137
+ \x00\x00\x06\x00\x00\x00\x00\x00\x00\x01\x00\x00S\xdc\
5138
+ \x00\x00\x07j\x00\x00\x00\x00\x00\x01\x00\x00iE\
5139
+ \x00\x00\x08\x0c\x00\x00\x00\x00\x00\x01\x00\x00r\x91\
5140
+ \x00\x00\x082\x00\x00\x00\x00\x00\x01\x00\x00s\x8b\
5141
+ \x00\x00\x0c\xa0\x00\x00\x00\x00\x00\x01\x00\x00\xb9\xc5\
5142
+ \x00\x00\x0c$\x00\x00\x00\x00\x00\x01\x00\x00\xb4\x87\
5143
+ \x00\x00\x0b\x0a\x00\x00\x00\x00\x00\x01\x00\x00\xa1\x8b\
5144
+ \x00\x00\x02\x92\x00\x00\x00\x00\x00\x01\x00\x00!g\
5145
+ \x00\x00\x0c\xf0\x00\x00\x00\x00\x00\x01\x00\x00\xbd\xeb\
5146
+ \x00\x00\x10\x96\x00\x00\x00\x00\x00\x01\x00\x00\xf4\xef\
5003
5147
  \x00\x00\x00\x96\x00\x00\x00\x00\x00\x01\x00\x00\x07\xac\
5004
- \x00\x00\x0bN\x00\x00\x00\x00\x00\x01\x00\x00\xa8F\
5005
- \x00\x00\x0f<\x00\x00\x00\x00\x00\x01\x00\x00\xe3z\
5006
- \x00\x00\x0fT\x00\x00\x00\x00\x00\x01\x00\x00\xe5\xac\
5007
- \x00\x00\x04\xdc\x00\x00\x00\x00\x00\x01\x00\x00D\xb8\
5008
- \x00\x00\x03\x02\x00\x00\x00\x00\x00\x01\x00\x00*\x9c\
5009
- \x00\x00\x0d\x9c\x00\x00\x00\x00\x00\x01\x00\x00\xce\xe8\
5010
- \x00\x00\x04\xb0\x00\x00\x00\x00\x00\x01\x00\x00B\xd9\
5011
- \x00\x00\x08\x88\x00\x00\x00\x00\x00\x01\x00\x00}\x04\
5012
- \x00\x00\x0c\x96\x00\x00\x00\x00\x00\x01\x00\x00\xbb\x22\
5013
- \x00\x00\x03\xd2\x00\x00\x00\x00\x00\x01\x00\x006k\
5014
- \x00\x00\x09\x16\x00\x00\x00\x00\x00\x01\x00\x00\x83E\
5015
- \x00\x00\x07L\x00\x00\x00\x00\x00\x01\x00\x00i+\
5148
+ \x00\x00\x0b\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xafA\
5149
+ \x00\x00\x0f\xe4\x00\x00\x00\x00\x00\x01\x00\x00\xeau\
5150
+ \x00\x00\x0f\xfc\x00\x00\x00\x00\x00\x01\x00\x00\xec\xa7\
5151
+ \x00\x00\x05.\x00\x00\x00\x00\x00\x01\x00\x00I5\
5152
+ \x00\x00\x03T\x00\x00\x00\x00\x00\x01\x00\x00/\x19\
5153
+ \x00\x00\x0eD\x00\x00\x00\x00\x00\x01\x00\x00\xd5\xe3\
5154
+ \x00\x00\x05\x02\x00\x00\x00\x00\x00\x01\x00\x00GV\
5155
+ \x00\x00\x090\x00\x00\x00\x00\x00\x01\x00\x00\x83\xff\
5156
+ \x00\x00\x0d>\x00\x00\x00\x00\x00\x01\x00\x00\xc2\x1d\
5157
+ \x00\x00\x04$\x00\x00\x00\x00\x00\x01\x00\x00:\xe8\
5158
+ \x00\x00\x09\xbe\x00\x00\x00\x00\x00\x01\x00\x00\x8a@\
5159
+ \x00\x00\x07\xf4\x00\x00\x00\x00\x00\x01\x00\x00p&\
5016
5160
  \x00\x00\x022\x00\x00\x00\x00\x00\x01\x00\x00\x1c\xbb\
5017
- \x00\x00\x02\xcc\x00\x00\x00\x00\x00\x01\x00\x00$\xe9\
5018
- \x00\x00\x04t\x00\x00\x00\x00\x00\x01\x00\x00@\x93\
5019
- \x00\x00\x05D\x00\x00\x00\x00\x00\x01\x00\x00L6\
5020
- \x00\x00\x03>\x00\x00\x00\x00\x00\x01\x00\x00-\xbd\
5021
- \x00\x00\x072\x00\x00\x00\x00\x00\x01\x00\x00g\x91\
5022
- \x00\x00\x05\x94\x00\x00\x00\x00\x00\x01\x00\x00Oe\
5023
- \x00\x00\x0f\xcc\x00\x00\x00\x00\x00\x01\x00\x00\xecd\
5024
- \x00\x00\x0d\x0e\x00\x00\x00\x00\x00\x01\x00\x00\xc4e\
5025
- \x00\x00\x0f\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xea\xd2\
5026
- \x00\x00\x0f\x0c\x00\x00\x00\x00\x00\x01\x00\x00\xe0_\
5161
+ \x00\x00\x03\x1e\x00\x00\x00\x00\x00\x01\x00\x00)f\
5162
+ \x00\x00\x04\xc6\x00\x00\x00\x00\x00\x01\x00\x00E\x10\
5163
+ \x00\x00\x05\x96\x00\x00\x00\x00\x00\x01\x00\x00P\xb3\
5164
+ \x00\x00\x03\x90\x00\x00\x00\x00\x00\x01\x00\x002:\
5165
+ \x00\x00\x07\xb6\x00\x00\x00\x00\x00\x01\x00\x00m'\
5166
+ \x00\x00\x06\x18\x00\x00\x00\x00\x00\x01\x00\x00T\xfb\
5167
+ \x00\x00\x10t\x00\x00\x00\x00\x00\x01\x00\x00\xf3_\
5168
+ \x00\x00\x0d\xb6\x00\x00\x00\x00\x00\x01\x00\x00\xcb`\
5169
+ \x00\x00\x10\x5c\x00\x00\x00\x00\x00\x01\x00\x00\xf1\xcd\
5170
+ \x00\x00\x0f\xb4\x00\x00\x00\x00\x00\x01\x00\x00\xe7Z\
5027
5171
  \x00\x00\x01\xb0\x00\x00\x00\x00\x00\x01\x00\x00\x16\x8e\
5028
- \x00\x00\x04\x00\x00\x00\x00\x00\x00\x01\x00\x008\xfd\
5029
- \x00\x00\x05\xb0\x00\x00\x00\x00\x00\x01\x00\x00P\xf1\
5030
- \x00\x00\x06\xce\x00\x00\x00\x00\x00\x01\x00\x00a\xfc\
5031
- \x00\x00\x02\xa2\x00\x00\x00\x00\x00\x01\x00\x00\x22\x13\
5032
- \x00\x00\x04H\x00\x00\x00\x00\x00\x01\x00\x00<\x9e\
5033
- \x00\x00\x04`\x00\x00\x00\x00\x00\x01\x00\x00=\xf5\
5034
- \x00\x00\x0dN\x00\x00\x00\x00\x00\x01\x00\x00\xc9\xce\
5035
- \x00\x00\x07\xe4\x00\x00\x00\x00\x00\x01\x00\x00q\x11\
5036
- \x00\x00\x05\xe0\x00\x00\x00\x00\x00\x01\x00\x00S\x14\
5172
+ \x00\x00\x04R\x00\x00\x00\x00\x00\x01\x00\x00=z\
5173
+ \x00\x00\x064\x00\x00\x00\x00\x00\x01\x00\x00V\x87\
5174
+ \x00\x00\x07R\x00\x00\x00\x00\x00\x01\x00\x00g\x92\
5175
+ \x00\x00\x02\xf4\x00\x00\x00\x00\x00\x01\x00\x00&\x90\
5176
+ \x00\x00\x04\x9a\x00\x00\x00\x00\x00\x01\x00\x00A\x1b\
5177
+ \x00\x00\x04\xb2\x00\x00\x00\x00\x00\x01\x00\x00Br\
5178
+ \x00\x00\x0d\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xd0\xc9\
5179
+ \x00\x00\x08\x8c\x00\x00\x00\x00\x00\x01\x00\x00x\x0c\
5180
+ \x00\x00\x06d\x00\x00\x00\x00\x00\x01\x00\x00X\xaa\
5037
5181
  \x00\x00\x00\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x0c\x14\
5038
- \x00\x00\x08\xb8\x00\x00\x00\x00\x00\x01\x00\x00\x7f\xa0\
5182
+ \x00\x00\x09`\x00\x00\x00\x00\x00\x01\x00\x00\x86\x9b\
5039
5183
  \x00\x00\x00p\x00\x00\x00\x00\x00\x01\x00\x00\x06X\
5040
- \x00\x00\x0fn\x00\x00\x00\x00\x00\x01\x00\x00\xe7$\
5041
- \x00\x00\x09\xc2\x00\x00\x00\x00\x00\x01\x00\x00\x8e\xb3\
5042
- \x00\x00\x03\xbc\x00\x00\x00\x00\x00\x01\x00\x005\xab\
5043
- \x00\x00\x04.\x00\x00\x00\x00\x00\x01\x00\x00;J\
5044
- \x00\x00\x04\x96\x00\x00\x00\x00\x00\x01\x00\x00A\x5c\
5045
- \x00\x00\x0az\x00\x00\x00\x00\x00\x01\x00\x00\x9b\xa4\
5184
+ \x00\x00\x10\x16\x00\x00\x00\x00\x00\x01\x00\x00\xee\x1f\
5185
+ \x00\x00\x0aj\x00\x00\x00\x00\x00\x01\x00\x00\x95\xae\
5186
+ \x00\x00\x04\x0e\x00\x00\x00\x00\x00\x01\x00\x00:(\
5187
+ \x00\x00\x04\x80\x00\x00\x00\x00\x00\x01\x00\x00?\xc7\
5188
+ \x00\x00\x04\xe8\x00\x00\x00\x00\x00\x01\x00\x00E\xd9\
5189
+ \x00\x00\x0b\x22\x00\x00\x00\x00\x00\x01\x00\x00\xa2\x9f\
5046
5190
  \x00\x00\x00\xf6\x00\x00\x00\x00\x00\x01\x00\x00\x0d]\
5047
5191
  \x00\x00\x01\x10\x00\x00\x00\x00\x00\x01\x00\x00\x0ee\
5048
- \x00\x00\x06\xfe\x00\x00\x00\x00\x00\x01\x00\x00d\xf6\
5049
- \x00\x00\x05d\x00\x00\x00\x00\x00\x01\x00\x00L\xfd\
5050
- \x00\x00\x0c\xda\x00\x00\x00\x00\x00\x01\x00\x00\xc1=\
5192
+ \x00\x00\x07\x82\x00\x00\x00\x00\x00\x01\x00\x00j\x8c\
5193
+ \x00\x00\x05\xe8\x00\x00\x00\x00\x00\x01\x00\x00R\x93\
5194
+ \x00\x00\x0d\x82\x00\x00\x00\x00\x00\x01\x00\x00\xc88\
5051
5195
  \x00\x00\x00,\x00\x00\x00\x00\x00\x01\x00\x00\x01\xbc\
5052
- \x00\x00\x05&\x00\x00\x00\x00\x00\x01\x00\x00I3\
5053
- \x00\x00\x0d\xb6\x00\x00\x00\x00\x00\x01\x00\x00\xd0\xa8\
5054
- \x00\x00\x04\x18\x00\x00\x00\x00\x00\x01\x00\x00:\x84\
5055
- \x00\x00\x0d8\x00\x00\x00\x00\x00\x01\x00\x00\xc7\x17\
5056
- \x00\x00\x0a\x92\x00\x00\x00\x00\x00\x01\x00\x00\x9cg\
5057
- \x00\x00\x0f\x8c\x00\x00\x00\x00\x00\x01\x00\x00\xe8x\
5196
+ \x00\x00\x05x\x00\x00\x00\x00\x00\x01\x00\x00M\xb0\
5197
+ \x00\x00\x0e^\x00\x00\x00\x00\x00\x01\x00\x00\xd7\xa3\
5198
+ \x00\x00\x04j\x00\x00\x00\x00\x00\x01\x00\x00?\x01\
5199
+ \x00\x00\x0d\xe0\x00\x00\x00\x00\x00\x01\x00\x00\xce\x12\
5200
+ \x00\x00\x0b:\x00\x00\x00\x00\x00\x01\x00\x00\xa3b\
5201
+ \x00\x00\x104\x00\x00\x00\x00\x00\x01\x00\x00\xefs\
5058
5202
  \x00\x00\x01\xc8\x00\x00\x00\x00\x00\x01\x00\x00\x17\xea\
5059
- \x00\x00\x0b\xb6\x00\x00\x00\x00\x00\x01\x00\x00\xb0F\
5060
- \x00\x00\x0a\xf6\x00\x00\x00\x00\x00\x01\x00\x00\xa1\x86\
5061
- \x00\x00\x09.\x00\x00\x00\x00\x00\x01\x00\x00\x85^\
5062
- \x00\x00\x0f\x22\x00\x00\x00\x00\x00\x01\x00\x00\xe1\x86\
5203
+ \x00\x00\x0c^\x00\x00\x00\x00\x00\x01\x00\x00\xb7A\
5204
+ \x00\x00\x0b\x9e\x00\x00\x00\x00\x00\x01\x00\x00\xa8\x81\
5205
+ \x00\x00\x09\xd6\x00\x00\x00\x00\x00\x01\x00\x00\x8cY\
5206
+ \x00\x00\x0f\xca\x00\x00\x00\x00\x00\x01\x00\x00\xe8\x81\
5063
5207
  \x00\x00\x00\xc8\x00\x00\x00\x00\x00\x01\x00\x00\x0b\x16\
5064
- \x00\x00\x0e\x84\x00\x00\x00\x00\x00\x01\x00\x00\xd9\xa5\
5065
- \x00\x00\x08V\x00\x00\x00\x00\x00\x01\x00\x00yk\
5066
- \x00\x00\x0aH\x00\x00\x00\x00\x00\x01\x00\x00\x99}\
5208
+ \x00\x00\x0f,\x00\x00\x00\x00\x00\x01\x00\x00\xe0\xa0\
5209
+ \x00\x00\x08\xfe\x00\x00\x00\x00\x00\x01\x00\x00\x80f\
5210
+ \x00\x00\x0a\xf0\x00\x00\x00\x00\x00\x01\x00\x00\xa0x\
5067
5211
  \x00\x00\x01\x90\x00\x00\x00\x00\x00\x01\x00\x00\x14\x99\
5068
- \x00\x00\x08\xfa\x00\x00\x00\x00\x00\x01\x00\x00v\x06\
5069
- \x00\x00\x0b\xe2\x00\x00\x00\x00\x00\x01\x00\x00\xb1\xfa\
5070
- \x00\x00\x0e\x9c\x00\x00\x00\x00\x00\x01\x00\x00\xdbP\
5071
- \x00\x00\x09n\x00\x00\x00\x00\x00\x01\x00\x00\x89\x8f\
5072
- \x00\x00\x0b\x98\x00\x00\x00\x00\x00\x01\x00\x00\xaeJ\
5073
- \x00\x00\x07\xfe\x00\x00\x00\x00\x00\x01\x00\x00t<\
5074
- \x00\x00\x0a\xac\x00\x00\x00\x00\x00\x01\x00\x00\x9d\xe1\
5075
- \x00\x00\x10V\x00\x00\x00\x00\x00\x01\x00\x00\xf3\x0a\
5076
- \x00\x00\x10 \x00\x00\x00\x00\x00\x01\x00\x00\xf08\
5077
- \x00\x00\x08\xe0\x00\x00\x00\x00\x00\x01\x00\x00\x80\x9d\
5078
- \x00\x00\x03\x18\x00\x00\x00\x00\x00\x01\x00\x00+\xee\
5079
- \x00\x00\x04\xf2\x00\x00\x00\x00\x00\x01\x00\x00F\xb3\
5080
- \x00\x00\x0c\x12\x00\x00\x00\x00\x00\x01\x00\x00\xb3|\
5081
- \x00\x00\x0eb\x00\x00\x00\x00\x00\x01\x00\x00\xd7\xd2\
5082
- \x00\x00\x06H\x00\x00\x00\x00\x00\x01\x00\x00X\x12\
5212
+ \x00\x00\x09\xa2\x00\x00\x00\x00\x00\x01\x00\x00}\x01\
5213
+ \x00\x00\x0c\x8a\x00\x00\x00\x00\x00\x01\x00\x00\xb8\xf5\
5214
+ \x00\x00\x0fD\x00\x00\x00\x00\x00\x01\x00\x00\xe2K\
5215
+ \x00\x00\x0a\x16\x00\x00\x00\x00\x00\x01\x00\x00\x90\x8a\
5216
+ \x00\x00\x0c@\x00\x00\x00\x00\x00\x01\x00\x00\xb5E\
5217
+ \x00\x00\x08\xa6\x00\x00\x00\x00\x00\x01\x00\x00{7\
5218
+ \x00\x00\x0bT\x00\x00\x00\x00\x00\x01\x00\x00\xa4\xdc\
5219
+ \x00\x00\x10\xfe\x00\x00\x00\x00\x00\x01\x00\x00\xfa\x05\
5220
+ \x00\x00\x10\xc8\x00\x00\x00\x00\x00\x01\x00\x00\xf73\
5221
+ \x00\x00\x09\x88\x00\x00\x00\x00\x00\x01\x00\x00\x87\x98\
5222
+ \x00\x00\x03j\x00\x00\x00\x00\x00\x01\x00\x000k\
5223
+ \x00\x00\x05D\x00\x00\x00\x00\x00\x01\x00\x00K0\
5224
+ \x00\x00\x0c\xba\x00\x00\x00\x00\x00\x01\x00\x00\xbaw\
5225
+ \x00\x00\x0f\x0a\x00\x00\x00\x00\x00\x01\x00\x00\xde\xcd\
5226
+ \x00\x00\x06\xcc\x00\x00\x00\x00\x00\x01\x00\x00]\xa8\
5083
5227
  \x00\x00\x01<\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xdd\
5084
- \x00\x00\x06\xb6\x00\x00\x00\x00\x00\x01\x00\x00_\x18\
5085
- \x00\x00\x06\x12\x00\x00\x00\x00\x00\x01\x00\x00U\x8d\
5086
- \x00\x00\x0bf\x00\x00\x00\x00\x00\x01\x00\x00\xabb\
5228
+ \x00\x00\x07:\x00\x00\x00\x00\x00\x01\x00\x00d\xae\
5229
+ \x00\x00\x06\x96\x00\x00\x00\x00\x00\x01\x00\x00[#\
5230
+ \x00\x00\x0c\x0e\x00\x00\x00\x00\x00\x01\x00\x00\xb2]\
5087
5231
  "
5088
5232
 
5089
5233
  def qInitResources():
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczyglinski #
9
- # Updated Date: 2026.01.02 02:00:00 #
9
+ # Updated Date: 2026.01.05 20:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import sys
@@ -782,6 +782,7 @@ class Worker(BaseWorker):
782
782
  mouse = MouseController()
783
783
  mouse_pos_x, mouse_pos_y = mouse.position
784
784
  return {
785
+ "result": "success",
785
786
  'current_step': current_step,
786
787
  'screen_w': screen_x,
787
788
  'screen_h': screen_y,
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2026.01.02 02:00:00 #
9
+ # Updated Date: 2026.01.05 20:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  import time
@@ -231,6 +231,7 @@ class Worker(BaseWorker):
231
231
  current_step = self.get_param(item, "current_step", "")
232
232
  screen_w, screen_h = self.viewport_w, self.viewport_h
233
233
  return {
234
+ "result": "success",
234
235
  "current_step": current_step,
235
236
  "screen_w": screen_w,
236
237
  "screen_h": screen_h,
@@ -6,7 +6,7 @@
6
6
  # GitHub: https://github.com/szczyglis-dev/py-gpt #
7
7
  # MIT License #
8
8
  # Created By : Marcin Szczygliński #
9
- # Updated Date: 2026.01.03 17:00:00 #
9
+ # Updated Date: 2026.01.05 20:00:00 #
10
10
  # ================================================== #
11
11
 
12
12
  from typing import Optional, Dict, Any
@@ -18,7 +18,7 @@ from pygpt_net.core.types import (
18
18
  MODE_CHAT,
19
19
  MODE_COMPLETION,
20
20
  MODE_IMAGE,
21
- MODE_RESEARCH,
21
+ MODE_RESEARCH, MODE_COMPUTER,
22
22
  )
23
23
  from pygpt_net.core.bridge.context import BridgeContext
24
24
  from pygpt_net.core.types.chunk import ChunkType
@@ -29,6 +29,9 @@ from .tools import Tools
29
29
  from .vision import Vision
30
30
  from .audio import Audio
31
31
  from .image import Image
32
+ from .remote_tools import RemoteTools
33
+ from .computer import Computer
34
+ from .store import Store
32
35
 
33
36
 
34
37
  class ApiAnthropic:
@@ -44,6 +47,9 @@ class ApiAnthropic:
44
47
  self.vision = Vision(window)
45
48
  self.audio = Audio(window) # stub helpers (no official audio out/in in SDK as of now)
46
49
  self.image = Image(window) # stub: no image generation in Anthropic
50
+ self.remote_tools = RemoteTools(window)
51
+ self.computer = Computer(window)
52
+ self.store = Store(window)
47
53
  self.client: Optional[anthropic.Anthropic] = None
48
54
  self.locked = False
49
55
  self.last_client_args: Optional[Dict[str, Any]] = None
@@ -103,7 +109,8 @@ class ApiAnthropic:
103
109
  MODE_COMPLETION,
104
110
  MODE_CHAT,
105
111
  MODE_AUDIO,
106
- MODE_RESEARCH
112
+ MODE_RESEARCH,
113
+ MODE_COMPUTER
107
114
  ):
108
115
  # MODE_AUDIO fallback: treat as normal chat (no native audio API)
109
116
  response = self.chat.send(context=context, extra=extra)