slidge-whatsapp 0.2.2__cp313-cp313-manylinux_2_36_aarch64.whl → 0.2.6__cp313-cp313-manylinux_2_36_aarch64.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.

Potentially problematic release.


This version of slidge-whatsapp might be problematic. Click here for more details.

Files changed (1250) hide show
  1. slidge_whatsapp/__init__.py +26 -8
  2. slidge_whatsapp/__main__.py +3 -0
  3. slidge_whatsapp/config.py +3 -0
  4. slidge_whatsapp/contact.py +1 -1
  5. slidge_whatsapp/event.go +79 -24
  6. slidge_whatsapp/gateway.go +13 -9
  7. slidge_whatsapp/gateway.py +2 -2
  8. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.h +194 -157
  9. slidge_whatsapp/generated/_whatsapp.cpython-313-aarch64-linux-gnu.so +0 -0
  10. slidge_whatsapp/generated/build.py +153 -128
  11. slidge_whatsapp/generated/go.py +1 -1
  12. slidge_whatsapp/generated/whatsapp.c +1535 -1064
  13. slidge_whatsapp/generated/whatsapp.go +938 -693
  14. slidge_whatsapp/generated/whatsapp.py +1300 -980
  15. slidge_whatsapp/generated/whatsapp_go.h +194 -157
  16. slidge_whatsapp/go.mod +18 -13
  17. slidge_whatsapp/go.sum +41 -29
  18. slidge_whatsapp/group.py +7 -2
  19. slidge_whatsapp/media/__init__.py +0 -0
  20. slidge_whatsapp/media/media.go +24 -13
  21. slidge_whatsapp/session.go +77 -71
  22. slidge_whatsapp/session.py +53 -31
  23. slidge_whatsapp/vendor/filippo.io/edwards25519/LICENSE +27 -0
  24. slidge_whatsapp/vendor/filippo.io/edwards25519/README.md +14 -0
  25. slidge_whatsapp/vendor/filippo.io/edwards25519/doc.go +20 -0
  26. slidge_whatsapp/vendor/filippo.io/edwards25519/edwards25519.go +427 -0
  27. slidge_whatsapp/vendor/filippo.io/edwards25519/extra.go +349 -0
  28. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe.go +420 -0
  29. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.go +16 -0
  30. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64.s +379 -0
  31. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_amd64_noasm.go +12 -0
  32. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.go +16 -0
  33. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64.s +42 -0
  34. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_arm64_noasm.go +12 -0
  35. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_extra.go +50 -0
  36. slidge_whatsapp/vendor/filippo.io/edwards25519/field/fe_generic.go +266 -0
  37. slidge_whatsapp/vendor/filippo.io/edwards25519/scalar.go +343 -0
  38. slidge_whatsapp/vendor/filippo.io/edwards25519/scalar_fiat.go +1147 -0
  39. slidge_whatsapp/vendor/filippo.io/edwards25519/scalarmult.go +214 -0
  40. slidge_whatsapp/vendor/filippo.io/edwards25519/tables.go +129 -0
  41. slidge_whatsapp/vendor/github.com/ebitengine/purego/.gitignore +1 -0
  42. slidge_whatsapp/vendor/github.com/ebitengine/purego/LICENSE +201 -0
  43. slidge_whatsapp/vendor/github.com/ebitengine/purego/README.md +97 -0
  44. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_amd64.h +99 -0
  45. slidge_whatsapp/vendor/github.com/ebitengine/purego/abi_arm64.h +39 -0
  46. slidge_whatsapp/vendor/github.com/ebitengine/purego/cgo.go +19 -0
  47. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlerror.go +17 -0
  48. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn.go +99 -0
  49. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_android.go +34 -0
  50. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_darwin.go +19 -0
  51. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_freebsd.go +14 -0
  52. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_linux.go +16 -0
  53. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_freebsd.go +11 -0
  54. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_nocgo_linux.go +19 -0
  55. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_playground.go +24 -0
  56. slidge_whatsapp/vendor/github.com/ebitengine/purego/dlfcn_stubs.s +26 -0
  57. slidge_whatsapp/vendor/github.com/ebitengine/purego/func.go +436 -0
  58. slidge_whatsapp/vendor/github.com/ebitengine/purego/go_runtime.go +13 -0
  59. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/dlfcn_cgo_unix.go +56 -0
  60. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/empty.go +6 -0
  61. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/cgo/syscall_cgo_unix.go +55 -0
  62. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_amd64.h +99 -0
  63. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/abi_arm64.h +39 -0
  64. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_amd64.s +39 -0
  65. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/asm_arm64.s +36 -0
  66. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/callbacks.go +93 -0
  67. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/doc.go +32 -0
  68. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/freebsd.go +27 -0
  69. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_amd64.go +73 -0
  70. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_darwin_arm64.go +88 -0
  71. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_amd64.go +95 -0
  72. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_freebsd_arm64.go +98 -0
  73. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_libinit.go +72 -0
  74. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_amd64.go +95 -0
  75. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_linux_arm64.go +98 -0
  76. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_setenv.go +18 -0
  77. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/go_util.go +37 -0
  78. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/iscgo.go +19 -0
  79. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo.go +39 -0
  80. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_darwin.go +22 -0
  81. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_freebsd.go +16 -0
  82. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/libcgo_linux.go +16 -0
  83. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/setenv.go +19 -0
  84. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols.go +221 -0
  85. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_darwin.go +29 -0
  86. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_freebsd.go +29 -0
  87. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/symbols_linux.go +29 -0
  88. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_amd64.s +104 -0
  89. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_arm64.s +72 -0
  90. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/fakecgo/trampolines_stubs.s +90 -0
  91. slidge_whatsapp/vendor/github.com/ebitengine/purego/internal/strings/strings.go +40 -0
  92. slidge_whatsapp/vendor/github.com/ebitengine/purego/is_ios.go +13 -0
  93. slidge_whatsapp/vendor/github.com/ebitengine/purego/nocgo.go +25 -0
  94. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_amd64.go +260 -0
  95. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_arm64.go +274 -0
  96. slidge_whatsapp/vendor/github.com/ebitengine/purego/struct_other.go +16 -0
  97. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_amd64.s +164 -0
  98. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_arm64.s +92 -0
  99. slidge_whatsapp/vendor/github.com/ebitengine/purego/sys_unix_arm64.s +70 -0
  100. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall.go +53 -0
  101. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_cgo_linux.go +21 -0
  102. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_sysv.go +223 -0
  103. slidge_whatsapp/vendor/github.com/ebitengine/purego/syscall_windows.go +46 -0
  104. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_amd64.s +2014 -0
  105. slidge_whatsapp/vendor/github.com/ebitengine/purego/zcallback_arm64.s +4014 -0
  106. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/.gitattributes +6 -0
  107. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/AUTHORS +1 -0
  108. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/COPYING +661 -0
  109. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/README.md +71 -0
  110. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz.go +66 -0
  111. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo.go +596 -0
  112. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_cgo.go +18 -0
  113. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib.go +11 -0
  114. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_cgo_extlib_pkgconfig.go +9 -0
  115. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_content_types.go +383 -0
  116. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_nocgo.go +1098 -0
  117. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/fitz_vendor.go +9 -0
  118. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/archive.h +444 -0
  119. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/band-writer.h +117 -0
  120. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bidi.h +90 -0
  121. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/bitmap.h +175 -0
  122. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/buffer.h +250 -0
  123. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/color.h +427 -0
  124. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compress.h +88 -0
  125. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/compressed-buffer.h +185 -0
  126. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/config.h +222 -0
  127. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/context.h +1006 -0
  128. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/crypt.h +270 -0
  129. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/device.h +654 -0
  130. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/display-list.h +142 -0
  131. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/document.h +1108 -0
  132. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/export.h +52 -0
  133. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/filter.h +263 -0
  134. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/font.h +815 -0
  135. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/geometry.h +818 -0
  136. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/getopt.h +128 -0
  137. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph-cache.h +96 -0
  138. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/glyph.h +81 -0
  139. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/hash.h +126 -0
  140. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap-imp.h +163 -0
  141. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/heap.h +140 -0
  142. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/image.h +443 -0
  143. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/link.h +130 -0
  144. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/log.h +61 -0
  145. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/outline.h +228 -0
  146. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output-svg.h +64 -0
  147. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/output.h +415 -0
  148. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/path.h +447 -0
  149. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pixmap.h +501 -0
  150. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/pool.h +68 -0
  151. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/separation.h +138 -0
  152. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/shade.h +233 -0
  153. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/store.h +456 -0
  154. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story-writer.h +209 -0
  155. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/story.h +232 -0
  156. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/stream.h +646 -0
  157. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/string-util.h +286 -0
  158. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/structured-text.h +365 -0
  159. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/system.h +459 -0
  160. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/text.h +209 -0
  161. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/track-usage.h +57 -0
  162. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/transition.h +76 -0
  163. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/tree.h +62 -0
  164. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/types.h +41 -0
  165. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/util.h +151 -0
  166. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/vendor.go +3 -0
  167. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/version.h +31 -0
  168. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/write-pixmap.h +499 -0
  169. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/writer.h +266 -0
  170. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz/xml.h +397 -0
  171. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/fitz.h +97 -0
  172. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/memento.h +423 -0
  173. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/include/mupdf/vendor.go +3 -0
  174. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdf_linux_arm64.a +0 -0
  175. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/libmupdfthird_linux_arm64.a +0 -0
  176. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/libs/vendor.go +3 -0
  177. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_darwin.go +23 -0
  178. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_linux.go +22 -0
  179. slidge_whatsapp/vendor/github.com/gen2brain/go-fitz/purego_windows.go +22 -0
  180. slidge_whatsapp/vendor/github.com/go-python/gopy/LICENSE +23 -0
  181. slidge_whatsapp/vendor/github.com/go-python/gopy/gopyh/handle.go +210 -0
  182. slidge_whatsapp/vendor/github.com/google/uuid/CHANGELOG.md +41 -0
  183. slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTING.md +26 -0
  184. slidge_whatsapp/vendor/github.com/google/uuid/CONTRIBUTORS +9 -0
  185. slidge_whatsapp/vendor/github.com/google/uuid/LICENSE +27 -0
  186. slidge_whatsapp/vendor/github.com/google/uuid/README.md +21 -0
  187. slidge_whatsapp/vendor/github.com/google/uuid/dce.go +80 -0
  188. slidge_whatsapp/vendor/github.com/google/uuid/doc.go +12 -0
  189. slidge_whatsapp/vendor/github.com/google/uuid/hash.go +59 -0
  190. slidge_whatsapp/vendor/github.com/google/uuid/marshal.go +38 -0
  191. slidge_whatsapp/vendor/github.com/google/uuid/node.go +90 -0
  192. slidge_whatsapp/vendor/github.com/google/uuid/node_js.go +12 -0
  193. slidge_whatsapp/vendor/github.com/google/uuid/node_net.go +33 -0
  194. slidge_whatsapp/vendor/github.com/google/uuid/null.go +118 -0
  195. slidge_whatsapp/vendor/github.com/google/uuid/sql.go +59 -0
  196. slidge_whatsapp/vendor/github.com/google/uuid/time.go +134 -0
  197. slidge_whatsapp/vendor/github.com/google/uuid/util.go +43 -0
  198. slidge_whatsapp/vendor/github.com/google/uuid/uuid.go +365 -0
  199. slidge_whatsapp/vendor/github.com/google/uuid/version1.go +44 -0
  200. slidge_whatsapp/vendor/github.com/google/uuid/version4.go +76 -0
  201. slidge_whatsapp/vendor/github.com/google/uuid/version6.go +56 -0
  202. slidge_whatsapp/vendor/github.com/google/uuid/version7.go +104 -0
  203. slidge_whatsapp/vendor/github.com/gorilla/websocket/.gitignore +25 -0
  204. slidge_whatsapp/vendor/github.com/gorilla/websocket/AUTHORS +9 -0
  205. slidge_whatsapp/vendor/github.com/gorilla/websocket/LICENSE +22 -0
  206. slidge_whatsapp/vendor/github.com/gorilla/websocket/README.md +33 -0
  207. slidge_whatsapp/vendor/github.com/gorilla/websocket/client.go +434 -0
  208. slidge_whatsapp/vendor/github.com/gorilla/websocket/compression.go +148 -0
  209. slidge_whatsapp/vendor/github.com/gorilla/websocket/conn.go +1238 -0
  210. slidge_whatsapp/vendor/github.com/gorilla/websocket/doc.go +227 -0
  211. slidge_whatsapp/vendor/github.com/gorilla/websocket/join.go +42 -0
  212. slidge_whatsapp/vendor/github.com/gorilla/websocket/json.go +60 -0
  213. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask.go +55 -0
  214. slidge_whatsapp/vendor/github.com/gorilla/websocket/mask_safe.go +16 -0
  215. slidge_whatsapp/vendor/github.com/gorilla/websocket/prepared.go +102 -0
  216. slidge_whatsapp/vendor/github.com/gorilla/websocket/proxy.go +77 -0
  217. slidge_whatsapp/vendor/github.com/gorilla/websocket/server.go +365 -0
  218. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake.go +21 -0
  219. slidge_whatsapp/vendor/github.com/gorilla/websocket/tls_handshake_116.go +21 -0
  220. slidge_whatsapp/vendor/github.com/gorilla/websocket/util.go +298 -0
  221. slidge_whatsapp/vendor/github.com/gorilla/websocket/x_net_proxy.go +473 -0
  222. slidge_whatsapp/vendor/github.com/h2non/filetype/.editorconfig +12 -0
  223. slidge_whatsapp/vendor/github.com/h2non/filetype/.gitignore +2 -0
  224. slidge_whatsapp/vendor/github.com/h2non/filetype/.travis.yml +16 -0
  225. slidge_whatsapp/vendor/github.com/h2non/filetype/History.md +163 -0
  226. slidge_whatsapp/vendor/github.com/h2non/filetype/LICENSE +24 -0
  227. slidge_whatsapp/vendor/github.com/h2non/filetype/README.md +294 -0
  228. slidge_whatsapp/vendor/github.com/h2non/filetype/filetype.go +102 -0
  229. slidge_whatsapp/vendor/github.com/h2non/filetype/kind.go +91 -0
  230. slidge_whatsapp/vendor/github.com/h2non/filetype/match.go +90 -0
  231. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/application.go +43 -0
  232. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/archive.go +211 -0
  233. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/audio.go +85 -0
  234. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/document.go +197 -0
  235. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/font.go +45 -0
  236. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/image.go +143 -0
  237. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/isobmff/isobmff.go +37 -0
  238. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/matchers.go +51 -0
  239. slidge_whatsapp/vendor/github.com/h2non/filetype/matchers/video.go +145 -0
  240. slidge_whatsapp/vendor/github.com/h2non/filetype/types/defaults.go +4 -0
  241. slidge_whatsapp/vendor/github.com/h2non/filetype/types/mime.go +14 -0
  242. slidge_whatsapp/vendor/github.com/h2non/filetype/types/split.go +11 -0
  243. slidge_whatsapp/vendor/github.com/h2non/filetype/types/type.go +16 -0
  244. slidge_whatsapp/vendor/github.com/h2non/filetype/types/types.go +23 -0
  245. slidge_whatsapp/vendor/github.com/h2non/filetype/version.go +4 -0
  246. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/.gitignore +21 -0
  247. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/CHANGELOG.md +69 -0
  248. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/COPYRIGHT.txt +147 -0
  249. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/LICENSE +21 -0
  250. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/README.md +162 -0
  251. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi.go +7 -0
  252. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/abi_amd64.go +7 -0
  253. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/ffi.go +272 -0
  254. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/fun.go +54 -0
  255. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/init.go +55 -0
  256. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib.go +82 -0
  257. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_unix.go +63 -0
  258. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/lib_windows.go +68 -0
  259. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_amd64.go +5 -0
  260. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_arm64.go +5 -0
  261. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/tramp_darwin_arm64.go +5 -0
  262. slidge_whatsapp/vendor/github.com/jupiterrider/ffi/types.go +34 -0
  263. slidge_whatsapp/vendor/github.com/mattn/go-colorable/LICENSE +21 -0
  264. slidge_whatsapp/vendor/github.com/mattn/go-colorable/README.md +48 -0
  265. slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_others.go +38 -0
  266. slidge_whatsapp/vendor/github.com/mattn/go-colorable/colorable_windows.go +1047 -0
  267. slidge_whatsapp/vendor/github.com/mattn/go-colorable/go.test.sh +12 -0
  268. slidge_whatsapp/vendor/github.com/mattn/go-colorable/noncolorable.go +57 -0
  269. slidge_whatsapp/vendor/github.com/mattn/go-isatty/LICENSE +9 -0
  270. slidge_whatsapp/vendor/github.com/mattn/go-isatty/README.md +50 -0
  271. slidge_whatsapp/vendor/github.com/mattn/go-isatty/doc.go +2 -0
  272. slidge_whatsapp/vendor/github.com/mattn/go-isatty/go.test.sh +12 -0
  273. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_bsd.go +20 -0
  274. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_others.go +17 -0
  275. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_plan9.go +23 -0
  276. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_solaris.go +21 -0
  277. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_tcgets.go +20 -0
  278. slidge_whatsapp/vendor/github.com/mattn/go-isatty/isatty_windows.go +125 -0
  279. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.codecov.yml +4 -0
  280. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/.gitignore +14 -0
  281. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/LICENSE +21 -0
  282. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/README.md +598 -0
  283. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/backup.go +85 -0
  284. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/callback.go +412 -0
  285. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/convert.go +299 -0
  286. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/doc.go +134 -0
  287. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/error.go +150 -0
  288. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.c +261459 -0
  289. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3-binding.h +13720 -0
  290. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3.go +2315 -0
  291. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_context.go +103 -0
  292. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_func_crypt.go +120 -0
  293. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_go18.go +54 -0
  294. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_libsqlite3.go +23 -0
  295. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension.go +85 -0
  296. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_load_extension_omit.go +25 -0
  297. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_allow_uri_authority.go +16 -0
  298. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_app_armor.go +16 -0
  299. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_column_metadata.go +22 -0
  300. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_foreign_keys.go +16 -0
  301. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_fts5.go +15 -0
  302. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_icu.go +20 -0
  303. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_introspect.go +16 -0
  304. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_math_functions.go +15 -0
  305. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_os_trace.go +15 -0
  306. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate.go +21 -0
  307. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_hook.go +113 -0
  308. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_preupdate_omit.go +22 -0
  309. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete.go +16 -0
  310. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_secure_delete_fast.go +16 -0
  311. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize.go +83 -0
  312. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_serialize_omit.go +21 -0
  313. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_stat4.go +16 -0
  314. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.c +89 -0
  315. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_unlock_notify.go +97 -0
  316. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth.go +295 -0
  317. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_userauth_omit.go +158 -0
  318. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_full.go +16 -0
  319. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vacuum_incr.go +16 -0
  320. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_opt_vtable.go +721 -0
  321. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_other.go +18 -0
  322. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_solaris.go +15 -0
  323. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_trace.go +288 -0
  324. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_type.go +108 -0
  325. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_usleep_windows.go +42 -0
  326. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3_windows.go +18 -0
  327. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/sqlite3ext.h +728 -0
  328. slidge_whatsapp/vendor/github.com/mattn/go-sqlite3/static_mock.go +38 -0
  329. slidge_whatsapp/vendor/github.com/petermattis/goid/.gitignore +4 -0
  330. slidge_whatsapp/vendor/github.com/petermattis/goid/LICENSE +202 -0
  331. slidge_whatsapp/vendor/github.com/petermattis/goid/README.md +4 -0
  332. slidge_whatsapp/vendor/github.com/petermattis/goid/goid.go +35 -0
  333. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_gccgo.go +26 -0
  334. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.c +23 -0
  335. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.3.go +22 -0
  336. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.go +35 -0
  337. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.4.s +18 -0
  338. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.go +28 -0
  339. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_go1.5.s +44 -0
  340. slidge_whatsapp/vendor/github.com/petermattis/goid/goid_slow.go +24 -0
  341. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_gccgo_go1.8.go +17 -0
  342. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.23.go +38 -0
  343. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.5.go +57 -0
  344. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.6.go +43 -0
  345. slidge_whatsapp/vendor/github.com/petermattis/goid/runtime_go1.9.go +37 -0
  346. slidge_whatsapp/vendor/github.com/rs/zerolog/.gitignore +25 -0
  347. slidge_whatsapp/vendor/github.com/rs/zerolog/CONTRIBUTING.md +43 -0
  348. slidge_whatsapp/vendor/github.com/rs/zerolog/LICENSE +21 -0
  349. slidge_whatsapp/vendor/github.com/rs/zerolog/README.md +813 -0
  350. slidge_whatsapp/vendor/github.com/rs/zerolog/array.go +240 -0
  351. slidge_whatsapp/vendor/github.com/rs/zerolog/console.go +535 -0
  352. slidge_whatsapp/vendor/github.com/rs/zerolog/context.go +480 -0
  353. slidge_whatsapp/vendor/github.com/rs/zerolog/ctx.go +52 -0
  354. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder.go +56 -0
  355. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_cbor.go +45 -0
  356. slidge_whatsapp/vendor/github.com/rs/zerolog/encoder_json.go +51 -0
  357. slidge_whatsapp/vendor/github.com/rs/zerolog/event.go +830 -0
  358. slidge_whatsapp/vendor/github.com/rs/zerolog/example.jsonl +7 -0
  359. slidge_whatsapp/vendor/github.com/rs/zerolog/fields.go +292 -0
  360. slidge_whatsapp/vendor/github.com/rs/zerolog/globals.go +190 -0
  361. slidge_whatsapp/vendor/github.com/rs/zerolog/go112.go +7 -0
  362. slidge_whatsapp/vendor/github.com/rs/zerolog/hook.go +64 -0
  363. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/README.md +56 -0
  364. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/base.go +19 -0
  365. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/cbor.go +102 -0
  366. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/decode_stream.go +654 -0
  367. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/string.go +117 -0
  368. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/time.go +93 -0
  369. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/cbor/types.go +486 -0
  370. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/base.go +19 -0
  371. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/bytes.go +85 -0
  372. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/string.go +149 -0
  373. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/time.go +113 -0
  374. slidge_whatsapp/vendor/github.com/rs/zerolog/internal/json/types.go +435 -0
  375. slidge_whatsapp/vendor/github.com/rs/zerolog/log/log.go +131 -0
  376. slidge_whatsapp/vendor/github.com/rs/zerolog/log.go +518 -0
  377. slidge_whatsapp/vendor/github.com/rs/zerolog/not_go112.go +5 -0
  378. slidge_whatsapp/vendor/github.com/rs/zerolog/pretty.png +0 -0
  379. slidge_whatsapp/vendor/github.com/rs/zerolog/sampler.go +137 -0
  380. slidge_whatsapp/vendor/github.com/rs/zerolog/syslog.go +89 -0
  381. slidge_whatsapp/vendor/github.com/rs/zerolog/writer.go +355 -0
  382. slidge_whatsapp/vendor/go.mau.fi/libsignal/LICENSE +674 -0
  383. slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cbc.go +101 -0
  384. slidge_whatsapp/vendor/go.mau.fi/libsignal/cipher/Cipher.go +105 -0
  385. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Curve.go +109 -0
  386. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DjbECPublicKey.go +29 -0
  387. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/DkbECPrivateKey.go +29 -0
  388. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/Doc.go +3 -0
  389. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECKeyPair.go +27 -0
  390. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPrivateKey.go +7 -0
  391. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/ECPublicKey.go +11 -0
  392. slidge_whatsapp/vendor/go.mau.fi/libsignal/ecc/SignCurve25519.go +97 -0
  393. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupCipher.go +152 -0
  394. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/GroupSessionBuilder.go +94 -0
  395. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/Doc.go +3 -0
  396. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderChainKey.go +68 -0
  397. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/ratchet/SenderMessageKey.go +89 -0
  398. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/Doc.go +2 -0
  399. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyRecord.go +149 -0
  400. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/record/SenderKeyState.go +186 -0
  401. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/Doc.go +3 -0
  402. slidge_whatsapp/vendor/go.mau.fi/libsignal/groups/state/store/SenderKeyStore.go +13 -0
  403. slidge_whatsapp/vendor/go.mau.fi/libsignal/kdf/HKDF.go +47 -0
  404. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/chain/ChainKey.go +128 -0
  405. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKey.go +48 -0
  406. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/identity/IdentityKeyPair.go +39 -0
  407. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/message/MessageKey.go +91 -0
  408. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/prekey/PreKeyBundle.go +86 -0
  409. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/root/RootKey.go +66 -0
  410. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/DerivedSecrets.go +29 -0
  411. slidge_whatsapp/vendor/go.mau.fi/libsignal/keys/session/Pair.go +43 -0
  412. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/DefaultLogger.go +85 -0
  413. slidge_whatsapp/vendor/go.mau.fi/libsignal/logger/Logger.go +89 -0
  414. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/CiphertextMessage.go +19 -0
  415. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/Doc.go +3 -0
  416. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/PreKeySignalMessage.go +152 -0
  417. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyDistributionMessage.go +147 -0
  418. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyMessage.go +168 -0
  419. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SenderKeyName.go +25 -0
  420. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalMessage.go +226 -0
  421. slidge_whatsapp/vendor/go.mau.fi/libsignal/protocol/SignalProtocolAddress.go +38 -0
  422. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/Ratchet.go +197 -0
  423. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/ReceiverParameters.go +106 -0
  424. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SenderParameters.go +106 -0
  425. slidge_whatsapp/vendor/go.mau.fi/libsignal/ratchet/SymmetricParameters.go +18 -0
  426. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.pb.go +246 -0
  427. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/FingerprintProtocol.proto +14 -0
  428. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/JSONSerializer.go +303 -0
  429. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.pb.go +1501 -0
  430. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/LocalStorageProtocol.proto +114 -0
  431. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/ProtoBufferSerializer.go +262 -0
  432. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/Serializer.go +31 -0
  433. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.pb.go +641 -0
  434. slidge_whatsapp/vendor/go.mau.fi/libsignal/serialize/WhisperTextProtocol.proto +45 -0
  435. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/Session.go +299 -0
  436. slidge_whatsapp/vendor/go.mau.fi/libsignal/session/SessionCipher.go +409 -0
  437. slidge_whatsapp/vendor/go.mau.fi/libsignal/signalerror/errors.go +37 -0
  438. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/ChainState.go +157 -0
  439. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/Doc.go +3 -0
  440. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingKeyExchangeState.go +91 -0
  441. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PendingPreKeyState.go +62 -0
  442. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/PreKeyRecord.go +90 -0
  443. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionRecord.go +197 -0
  444. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SessionState.go +531 -0
  445. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/SignedPreKeyRecord.go +112 -0
  446. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/record/UnacknowledgedPreKey.go +69 -0
  447. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/Doc.go +3 -0
  448. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/IdentityKeyStore.go +31 -0
  449. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/MessageKeyStore.go +23 -0
  450. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/PreKeyStore.go +23 -0
  451. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SessionStore.go +19 -0
  452. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignalProtocolStore.go +15 -0
  453. slidge_whatsapp/vendor/go.mau.fi/libsignal/state/store/SignedPreKeyStore.go +26 -0
  454. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/bytehelper/ByteHelper.go +97 -0
  455. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/errorhelper/ErrorHelper.go +40 -0
  456. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/keyhelper/KeyHelper.go +95 -0
  457. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/medium/Medium.go +4 -0
  458. slidge_whatsapp/vendor/go.mau.fi/libsignal/util/optional/Integer.go +17 -0
  459. slidge_whatsapp/vendor/go.mau.fi/util/LICENSE +373 -0
  460. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/connlog.go +257 -0
  461. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/database.go +309 -0
  462. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/iter.go +233 -0
  463. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/json.go +47 -0
  464. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/log.go +129 -0
  465. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/massinsert.go +164 -0
  466. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/queryhelper.go +137 -0
  467. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/reflectscan.go +30 -0
  468. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/transaction.go +180 -0
  469. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgrades.go +250 -0
  470. slidge_whatsapp/vendor/go.mau.fi/util/dbutil/upgradetable.go +331 -0
  471. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/dualerror.go +33 -0
  472. slidge_whatsapp/vendor/go.mau.fi/util/exerrors/must.go +23 -0
  473. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/cors.go +32 -0
  474. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/handleerrors.go +64 -0
  475. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/json.go +41 -0
  476. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/middleware.go +30 -0
  477. slidge_whatsapp/vendor/go.mau.fi/util/exhttp/networkerror.go +37 -0
  478. slidge_whatsapp/vendor/go.mau.fi/util/exsync/event.go +88 -0
  479. slidge_whatsapp/vendor/go.mau.fi/util/exsync/returnonce.go +25 -0
  480. slidge_whatsapp/vendor/go.mau.fi/util/exsync/ringbuffer.go +139 -0
  481. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncmap.go +94 -0
  482. slidge_whatsapp/vendor/go.mau.fi/util/exsync/syncset.go +136 -0
  483. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/callermarshal.go +28 -0
  484. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/defaults.go +32 -0
  485. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/generics.go +45 -0
  486. slidge_whatsapp/vendor/go.mau.fi/util/exzerolog/writer.go +81 -0
  487. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/doc.go +9 -0
  488. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_darwin.go +29 -0
  489. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_linux.go +24 -0
  490. slidge_whatsapp/vendor/go.mau.fi/util/fallocate/fallocate_unknown.go +17 -0
  491. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/duration.go +155 -0
  492. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/helpers.go +59 -0
  493. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/integer.go +170 -0
  494. slidge_whatsapp/vendor/go.mau.fi/util/jsontime/string.go +95 -0
  495. slidge_whatsapp/vendor/go.mau.fi/util/ptr/ptr.go +43 -0
  496. slidge_whatsapp/vendor/go.mau.fi/util/random/bytes.go +21 -0
  497. slidge_whatsapp/vendor/go.mau.fi/util/random/string.go +87 -0
  498. slidge_whatsapp/vendor/go.mau.fi/util/retryafter/retryafter.go +53 -0
  499. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.editorconfig +13 -0
  500. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.gitattributes +3 -0
  501. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/.pre-commit-config.yaml +31 -0
  502. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/LICENSE +374 -0
  503. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/README.md +35 -0
  504. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/decode.go +312 -0
  505. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/encode.go +323 -0
  506. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/errors.go +19 -0
  507. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/hash.go +97 -0
  508. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/keys.go +138 -0
  509. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate/lthash/lthash.go +58 -0
  510. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/appstate.go +409 -0
  511. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/armadillomessage.go +100 -0
  512. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/attrs.go +218 -0
  513. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/decoder.go +406 -0
  514. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/encoder.go +308 -0
  515. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/errors.go +12 -0
  516. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/node.go +139 -0
  517. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/token/token.go +94 -0
  518. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/unpack.go +31 -0
  519. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/binary/xml.go +108 -0
  520. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/broadcast.go +143 -0
  521. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/call.go +112 -0
  522. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/client.go +896 -0
  523. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/connectionevents.go +212 -0
  524. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download-to-file.go +227 -0
  525. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/download.go +394 -0
  526. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/errors.go +261 -0
  527. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/group.go +960 -0
  528. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/handshake.go +165 -0
  529. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/internals.go +680 -0
  530. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/keepalive.go +84 -0
  531. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaconn.go +98 -0
  532. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/mediaretry.go +185 -0
  533. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/message.go +842 -0
  534. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/msgsecret.go +374 -0
  535. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/newsletter.go +376 -0
  536. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/notification.go +452 -0
  537. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair-code.go +245 -0
  538. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/pair.go +272 -0
  539. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/prekeys.go +255 -0
  540. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/presence.go +139 -0
  541. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/privacysettings.go +170 -0
  542. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/.gitignore +1 -0
  543. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/armadilloutil/decode.go +32 -0
  544. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/extra.go +36 -0
  545. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.pb.go +515 -0
  546. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waAdv/WAAdv.proto +43 -0
  547. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.pb.go +2982 -0
  548. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/WAArmadilloApplication.proto +258 -0
  549. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloApplication/extra.go +3 -0
  550. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.pb.go +1017 -0
  551. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waArmadilloXMA/WAArmadilloXMA.proto +140 -0
  552. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.pb.go +412 -0
  553. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCert/WACert.proto +34 -0
  554. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.pb.go +138 -0
  555. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waChatLockSettings/WAProtobufsChatLockSettings.proto +10 -0
  556. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.pb.go +769 -0
  557. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/WACommon.proto +67 -0
  558. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCommon/legacy.go +11 -0
  559. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.pb.go +978 -0
  560. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waCompanionReg/WACompanionReg.proto +100 -0
  561. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.pb.go +2817 -0
  562. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/WAConsumerApplication.proto +233 -0
  563. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waConsumerApplication/extra.go +82 -0
  564. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.pb.go +247 -0
  565. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waDeviceCapabilities/WAProtobufsDeviceCapabilities.proto +18 -0
  566. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.pb.go +26597 -0
  567. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/WAWebProtobufsE2E.proto +2550 -0
  568. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waE2E/legacy.go +31 -0
  569. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.pb.go +2368 -0
  570. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/WAWebProtobufsHistorySync.proto +231 -0
  571. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waHistorySync/legacy.go +11 -0
  572. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.pb.go +2130 -0
  573. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMediaTransport/WAMediaTransport.proto +191 -0
  574. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.pb.go +272 -0
  575. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMmsRetry/WAMmsRetry.proto +21 -0
  576. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.pb.go +1156 -0
  577. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/WAMsgApplication.proto +96 -0
  578. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgApplication/extra.go +41 -0
  579. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.pb.go +859 -0
  580. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/WAMsgTransport.proto +75 -0
  581. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMsgTransport/extra.go +19 -0
  582. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.pb.go +732 -0
  583. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/WAMultiDevice.proto +57 -0
  584. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waMultiDevice/extra.go +3 -0
  585. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.pb.go +857 -0
  586. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/WAServerSync.proto +72 -0
  587. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waServerSync/legacy.go +31 -0
  588. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.pb.go +5344 -0
  589. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waSyncAction/WASyncAction.proto +493 -0
  590. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.pb.go +428 -0
  591. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waUserPassword/WAProtobufsUserPassword.proto +33 -0
  592. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.pb.go +852 -0
  593. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waVnameCert/WAWebProtobufsVnameCert.proto +72 -0
  594. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.pb.go +2325 -0
  595. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWa6/WAWebProtobufsWa6.proto +253 -0
  596. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.pb.go +4441 -0
  597. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/WAWebProtobufsWeb.proto +579 -0
  598. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/proto/waWeb/legacy.go +1 -0
  599. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/push.go +110 -0
  600. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/qrchan.go +180 -0
  601. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/receipt.go +248 -0
  602. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/request.go +225 -0
  603. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/retry.go +450 -0
  604. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/send.go +1299 -0
  605. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/sendfb.go +657 -0
  606. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/constants.go +43 -0
  607. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/framesocket.go +235 -0
  608. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisehandshake.go +124 -0
  609. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/socket/noisesocket.go +108 -0
  610. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/clientpayload.go +187 -0
  611. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/noop.go +256 -0
  612. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/signal.go +182 -0
  613. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/container.go +288 -0
  614. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/lidmap.go +186 -0
  615. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/store.go +897 -0
  616. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/00-latest-schema.sql +153 -0
  617. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/03-message-secrets.sql +11 -0
  618. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/04-privacy-tokens.sql +8 -0
  619. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/05-account-jid-format.sql +2 -0
  620. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/06-facebook-uuid.sql +2 -0
  621. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/07-account-lid.sql +2 -0
  622. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/08-lid-mapping.sql +5 -0
  623. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/09-decryption-buffer.sql +10 -0
  624. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/sqlstore/upgrades/upgrades.go +22 -0
  625. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/store/store.go +243 -0
  626. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/botmap.go +210 -0
  627. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/call.go +21 -0
  628. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/appstate.go +185 -0
  629. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/call.go +77 -0
  630. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/events/events.go +608 -0
  631. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/group.go +164 -0
  632. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/jid.go +262 -0
  633. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/message.go +115 -0
  634. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/newsletter.go +201 -0
  635. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/presence.go +78 -0
  636. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/types/user.go +195 -0
  637. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/update.go +64 -0
  638. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/upload.go +251 -0
  639. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/user.go +880 -0
  640. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/cbcutil/cbc.go +217 -0
  641. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/gcmutil/gcm.go +41 -0
  642. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/hkdfutil/hkdf.go +28 -0
  643. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/keys/keypair.go +68 -0
  644. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/log.go +83 -0
  645. slidge_whatsapp/vendor/go.mau.fi/whatsmeow/util/log/zerolog.go +38 -0
  646. slidge_whatsapp/vendor/golang.org/x/crypto/LICENSE +27 -0
  647. slidge_whatsapp/vendor/golang.org/x/crypto/PATENTS +22 -0
  648. slidge_whatsapp/vendor/golang.org/x/crypto/curve25519/curve25519.go +90 -0
  649. slidge_whatsapp/vendor/golang.org/x/crypto/hkdf/hkdf.go +95 -0
  650. slidge_whatsapp/vendor/golang.org/x/crypto/pbkdf2/pbkdf2.go +77 -0
  651. slidge_whatsapp/vendor/golang.org/x/exp/LICENSE +27 -0
  652. slidge_whatsapp/vendor/golang.org/x/exp/PATENTS +22 -0
  653. slidge_whatsapp/vendor/golang.org/x/exp/constraints/constraints.go +54 -0
  654. slidge_whatsapp/vendor/golang.org/x/image/LICENSE +27 -0
  655. slidge_whatsapp/vendor/golang.org/x/image/PATENTS +22 -0
  656. slidge_whatsapp/vendor/golang.org/x/image/draw/draw.go +67 -0
  657. slidge_whatsapp/vendor/golang.org/x/image/draw/impl.go +8426 -0
  658. slidge_whatsapp/vendor/golang.org/x/image/draw/scale.go +525 -0
  659. slidge_whatsapp/vendor/golang.org/x/image/math/f64/f64.go +37 -0
  660. slidge_whatsapp/vendor/golang.org/x/image/riff/riff.go +193 -0
  661. slidge_whatsapp/vendor/golang.org/x/image/vp8/decode.go +403 -0
  662. slidge_whatsapp/vendor/golang.org/x/image/vp8/filter.go +273 -0
  663. slidge_whatsapp/vendor/golang.org/x/image/vp8/idct.go +98 -0
  664. slidge_whatsapp/vendor/golang.org/x/image/vp8/partition.go +129 -0
  665. slidge_whatsapp/vendor/golang.org/x/image/vp8/pred.go +201 -0
  666. slidge_whatsapp/vendor/golang.org/x/image/vp8/predfunc.go +553 -0
  667. slidge_whatsapp/vendor/golang.org/x/image/vp8/quant.go +98 -0
  668. slidge_whatsapp/vendor/golang.org/x/image/vp8/reconstruct.go +442 -0
  669. slidge_whatsapp/vendor/golang.org/x/image/vp8/token.go +381 -0
  670. slidge_whatsapp/vendor/golang.org/x/image/vp8l/decode.go +603 -0
  671. slidge_whatsapp/vendor/golang.org/x/image/vp8l/huffman.go +245 -0
  672. slidge_whatsapp/vendor/golang.org/x/image/vp8l/transform.go +299 -0
  673. slidge_whatsapp/vendor/golang.org/x/image/webp/decode.go +276 -0
  674. slidge_whatsapp/vendor/golang.org/x/image/webp/doc.go +9 -0
  675. slidge_whatsapp/vendor/golang.org/x/net/LICENSE +27 -0
  676. slidge_whatsapp/vendor/golang.org/x/net/PATENTS +22 -0
  677. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/guts.go +50 -0
  678. slidge_whatsapp/vendor/golang.org/x/net/http/httpguts/httplex.go +347 -0
  679. slidge_whatsapp/vendor/golang.org/x/net/http2/.gitignore +2 -0
  680. slidge_whatsapp/vendor/golang.org/x/net/http2/ascii.go +53 -0
  681. slidge_whatsapp/vendor/golang.org/x/net/http2/ciphers.go +641 -0
  682. slidge_whatsapp/vendor/golang.org/x/net/http2/client_conn_pool.go +311 -0
  683. slidge_whatsapp/vendor/golang.org/x/net/http2/config.go +122 -0
  684. slidge_whatsapp/vendor/golang.org/x/net/http2/config_go124.go +61 -0
  685. slidge_whatsapp/vendor/golang.org/x/net/http2/config_pre_go124.go +16 -0
  686. slidge_whatsapp/vendor/golang.org/x/net/http2/databuffer.go +149 -0
  687. slidge_whatsapp/vendor/golang.org/x/net/http2/errors.go +145 -0
  688. slidge_whatsapp/vendor/golang.org/x/net/http2/flow.go +120 -0
  689. slidge_whatsapp/vendor/golang.org/x/net/http2/frame.go +1702 -0
  690. slidge_whatsapp/vendor/golang.org/x/net/http2/gotrack.go +170 -0
  691. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/encode.go +245 -0
  692. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/hpack.go +523 -0
  693. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/huffman.go +226 -0
  694. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/static_table.go +188 -0
  695. slidge_whatsapp/vendor/golang.org/x/net/http2/hpack/tables.go +403 -0
  696. slidge_whatsapp/vendor/golang.org/x/net/http2/http2.go +432 -0
  697. slidge_whatsapp/vendor/golang.org/x/net/http2/pipe.go +184 -0
  698. slidge_whatsapp/vendor/golang.org/x/net/http2/server.go +3350 -0
  699. slidge_whatsapp/vendor/golang.org/x/net/http2/timer.go +20 -0
  700. slidge_whatsapp/vendor/golang.org/x/net/http2/transport.go +3287 -0
  701. slidge_whatsapp/vendor/golang.org/x/net/http2/unencrypted.go +32 -0
  702. slidge_whatsapp/vendor/golang.org/x/net/http2/write.go +381 -0
  703. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched.go +251 -0
  704. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_priority.go +451 -0
  705. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_random.go +77 -0
  706. slidge_whatsapp/vendor/golang.org/x/net/http2/writesched_roundrobin.go +119 -0
  707. slidge_whatsapp/vendor/golang.org/x/net/idna/go118.go +13 -0
  708. slidge_whatsapp/vendor/golang.org/x/net/idna/idna10.0.0.go +769 -0
  709. slidge_whatsapp/vendor/golang.org/x/net/idna/idna9.0.0.go +717 -0
  710. slidge_whatsapp/vendor/golang.org/x/net/idna/pre_go118.go +11 -0
  711. slidge_whatsapp/vendor/golang.org/x/net/idna/punycode.go +217 -0
  712. slidge_whatsapp/vendor/golang.org/x/net/idna/tables10.0.0.go +4559 -0
  713. slidge_whatsapp/vendor/golang.org/x/net/idna/tables11.0.0.go +4653 -0
  714. slidge_whatsapp/vendor/golang.org/x/net/idna/tables12.0.0.go +4733 -0
  715. slidge_whatsapp/vendor/golang.org/x/net/idna/tables13.0.0.go +4959 -0
  716. slidge_whatsapp/vendor/golang.org/x/net/idna/tables15.0.0.go +5144 -0
  717. slidge_whatsapp/vendor/golang.org/x/net/idna/tables9.0.0.go +4486 -0
  718. slidge_whatsapp/vendor/golang.org/x/net/idna/trie.go +51 -0
  719. slidge_whatsapp/vendor/golang.org/x/net/idna/trie12.0.0.go +30 -0
  720. slidge_whatsapp/vendor/golang.org/x/net/idna/trie13.0.0.go +30 -0
  721. slidge_whatsapp/vendor/golang.org/x/net/idna/trieval.go +119 -0
  722. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/ascii.go +53 -0
  723. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/headermap.go +115 -0
  724. slidge_whatsapp/vendor/golang.org/x/net/internal/httpcommon/request.go +467 -0
  725. slidge_whatsapp/vendor/golang.org/x/net/internal/socks/client.go +168 -0
  726. slidge_whatsapp/vendor/golang.org/x/net/internal/socks/socks.go +317 -0
  727. slidge_whatsapp/vendor/golang.org/x/net/proxy/dial.go +54 -0
  728. slidge_whatsapp/vendor/golang.org/x/net/proxy/direct.go +31 -0
  729. slidge_whatsapp/vendor/golang.org/x/net/proxy/per_host.go +153 -0
  730. slidge_whatsapp/vendor/golang.org/x/net/proxy/proxy.go +149 -0
  731. slidge_whatsapp/vendor/golang.org/x/net/proxy/socks5.go +42 -0
  732. slidge_whatsapp/vendor/golang.org/x/sys/LICENSE +27 -0
  733. slidge_whatsapp/vendor/golang.org/x/sys/PATENTS +22 -0
  734. slidge_whatsapp/vendor/golang.org/x/sys/unix/.gitignore +2 -0
  735. slidge_whatsapp/vendor/golang.org/x/sys/unix/README.md +184 -0
  736. slidge_whatsapp/vendor/golang.org/x/sys/unix/affinity_linux.go +86 -0
  737. slidge_whatsapp/vendor/golang.org/x/sys/unix/aliases.go +13 -0
  738. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s +17 -0
  739. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_386.s +27 -0
  740. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_amd64.s +27 -0
  741. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm.s +27 -0
  742. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_arm64.s +27 -0
  743. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_ppc64.s +29 -0
  744. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_bsd_riscv64.s +27 -0
  745. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_386.s +65 -0
  746. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_amd64.s +57 -0
  747. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm.s +56 -0
  748. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_arm64.s +50 -0
  749. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_loong64.s +51 -0
  750. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s +54 -0
  751. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s +52 -0
  752. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s +42 -0
  753. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s +47 -0
  754. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_linux_s390x.s +54 -0
  755. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_openbsd_mips64.s +29 -0
  756. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s +17 -0
  757. slidge_whatsapp/vendor/golang.org/x/sys/unix/asm_zos_s390x.s +382 -0
  758. slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv.go +36 -0
  759. slidge_whatsapp/vendor/golang.org/x/sys/unix/auxv_unsupported.go +13 -0
  760. slidge_whatsapp/vendor/golang.org/x/sys/unix/bluetooth_linux.go +36 -0
  761. slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.go +657 -0
  762. slidge_whatsapp/vendor/golang.org/x/sys/unix/bpxsvc_zos.s +192 -0
  763. slidge_whatsapp/vendor/golang.org/x/sys/unix/cap_freebsd.go +195 -0
  764. slidge_whatsapp/vendor/golang.org/x/sys/unix/constants.go +13 -0
  765. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc.go +26 -0
  766. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go +28 -0
  767. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_darwin.go +24 -0
  768. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_dragonfly.go +30 -0
  769. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_freebsd.go +30 -0
  770. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_linux.go +42 -0
  771. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_netbsd.go +29 -0
  772. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_openbsd.go +29 -0
  773. slidge_whatsapp/vendor/golang.org/x/sys/unix/dev_zos.go +28 -0
  774. slidge_whatsapp/vendor/golang.org/x/sys/unix/dirent.go +102 -0
  775. slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_big.go +9 -0
  776. slidge_whatsapp/vendor/golang.org/x/sys/unix/endian_little.go +9 -0
  777. slidge_whatsapp/vendor/golang.org/x/sys/unix/env_unix.go +31 -0
  778. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl.go +36 -0
  779. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_darwin.go +24 -0
  780. slidge_whatsapp/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go +13 -0
  781. slidge_whatsapp/vendor/golang.org/x/sys/unix/fdset.go +29 -0
  782. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo.go +59 -0
  783. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_c.c +44 -0
  784. slidge_whatsapp/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go +20 -0
  785. slidge_whatsapp/vendor/golang.org/x/sys/unix/ifreq_linux.go +141 -0
  786. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_linux.go +334 -0
  787. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_signed.go +69 -0
  788. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_unsigned.go +69 -0
  789. slidge_whatsapp/vendor/golang.org/x/sys/unix/ioctl_zos.go +71 -0
  790. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkall.sh +249 -0
  791. slidge_whatsapp/vendor/golang.org/x/sys/unix/mkerrors.sh +805 -0
  792. slidge_whatsapp/vendor/golang.org/x/sys/unix/mmap_nomremap.go +13 -0
  793. slidge_whatsapp/vendor/golang.org/x/sys/unix/mremap.go +57 -0
  794. slidge_whatsapp/vendor/golang.org/x/sys/unix/pagesize_unix.go +15 -0
  795. slidge_whatsapp/vendor/golang.org/x/sys/unix/pledge_openbsd.go +111 -0
  796. slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_darwin.go +11 -0
  797. slidge_whatsapp/vendor/golang.org/x/sys/unix/ptrace_ios.go +11 -0
  798. slidge_whatsapp/vendor/golang.org/x/sys/unix/race.go +30 -0
  799. slidge_whatsapp/vendor/golang.org/x/sys/unix/race0.go +25 -0
  800. slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdents.go +12 -0
  801. slidge_whatsapp/vendor/golang.org/x/sys/unix/readdirent_getdirentries.go +19 -0
  802. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_dragonfly.go +16 -0
  803. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_linux.go +85 -0
  804. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix.go +106 -0
  805. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_unix_other.go +46 -0
  806. slidge_whatsapp/vendor/golang.org/x/sys/unix/sockcmsg_zos.go +58 -0
  807. slidge_whatsapp/vendor/golang.org/x/sys/unix/symaddr_zos_s390x.s +75 -0
  808. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall.go +86 -0
  809. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix.go +582 -0
  810. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go +52 -0
  811. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go +83 -0
  812. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_bsd.go +609 -0
  813. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin.go +854 -0
  814. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_amd64.go +50 -0
  815. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_arm64.go +50 -0
  816. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_darwin_libSystem.go +26 -0
  817. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly.go +359 -0
  818. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_dragonfly_amd64.go +56 -0
  819. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd.go +455 -0
  820. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_386.go +64 -0
  821. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_amd64.go +64 -0
  822. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm.go +60 -0
  823. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_arm64.go +60 -0
  824. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_freebsd_riscv64.go +60 -0
  825. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd.go +30 -0
  826. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_hurd_386.go +28 -0
  827. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_illumos.go +78 -0
  828. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux.go +2647 -0
  829. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_386.go +314 -0
  830. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_alarm.go +12 -0
  831. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64.go +145 -0
  832. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_amd64_gc.go +12 -0
  833. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm.go +216 -0
  834. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_arm64.go +186 -0
  835. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc.go +14 -0
  836. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_386.go +16 -0
  837. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gc_arm.go +13 -0
  838. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_386.go +30 -0
  839. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_gccgo_arm.go +20 -0
  840. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_loong64.go +218 -0
  841. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mips64x.go +188 -0
  842. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_mipsx.go +174 -0
  843. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc.go +204 -0
  844. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_ppc64x.go +115 -0
  845. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_riscv64.go +191 -0
  846. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_s390x.go +296 -0
  847. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_linux_sparc64.go +112 -0
  848. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd.go +371 -0
  849. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_386.go +37 -0
  850. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go +37 -0
  851. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go +37 -0
  852. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go +37 -0
  853. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd.go +342 -0
  854. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_386.go +41 -0
  855. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_amd64.go +41 -0
  856. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm.go +41 -0
  857. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_arm64.go +41 -0
  858. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_libc.go +26 -0
  859. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_mips64.go +39 -0
  860. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_ppc64.go +41 -0
  861. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_openbsd_riscv64.go +41 -0
  862. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris.go +1191 -0
  863. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_solaris_amd64.go +27 -0
  864. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix.go +615 -0
  865. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc.go +14 -0
  866. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_unix_gc_ppc64x.go +22 -0
  867. slidge_whatsapp/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go +3213 -0
  868. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_linux.go +20 -0
  869. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix.go +51 -0
  870. slidge_whatsapp/vendor/golang.org/x/sys/unix/sysvshm_unix_other.go +13 -0
  871. slidge_whatsapp/vendor/golang.org/x/sys/unix/timestruct.go +76 -0
  872. slidge_whatsapp/vendor/golang.org/x/sys/unix/unveil_openbsd.go +51 -0
  873. slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_linux.go +13 -0
  874. slidge_whatsapp/vendor/golang.org/x/sys/unix/vgetrandom_unsupported.go +11 -0
  875. slidge_whatsapp/vendor/golang.org/x/sys/unix/xattr_bsd.go +280 -0
  876. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go +1384 -0
  877. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go +1385 -0
  878. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_amd64.go +1922 -0
  879. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_darwin_arm64.go +1922 -0
  880. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_dragonfly_amd64.go +1737 -0
  881. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_386.go +2042 -0
  882. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_amd64.go +2039 -0
  883. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm.go +2033 -0
  884. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_arm64.go +2033 -0
  885. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_freebsd_riscv64.go +2147 -0
  886. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux.go +3752 -0
  887. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_386.go +873 -0
  888. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_amd64.go +873 -0
  889. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go +878 -0
  890. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_arm64.go +875 -0
  891. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_loong64.go +865 -0
  892. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips.go +879 -0
  893. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64.go +879 -0
  894. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mips64le.go +879 -0
  895. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_mipsle.go +879 -0
  896. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc.go +931 -0
  897. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64.go +935 -0
  898. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_ppc64le.go +935 -0
  899. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_riscv64.go +862 -0
  900. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_s390x.go +934 -0
  901. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_linux_sparc64.go +977 -0
  902. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_386.go +1779 -0
  903. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_amd64.go +1769 -0
  904. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm.go +1758 -0
  905. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_netbsd_arm64.go +1769 -0
  906. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_386.go +1905 -0
  907. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_amd64.go +1905 -0
  908. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm.go +1905 -0
  909. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_arm64.go +1905 -0
  910. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_mips64.go +1905 -0
  911. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_ppc64.go +1904 -0
  912. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_openbsd_riscv64.go +1903 -0
  913. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_solaris_amd64.go +1556 -0
  914. slidge_whatsapp/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go +990 -0
  915. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_armnn_linux.go +40 -0
  916. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_linux_arm64.go +17 -0
  917. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnn_linux.go +49 -0
  918. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_mipsnnle_linux.go +49 -0
  919. slidge_whatsapp/vendor/golang.org/x/sys/unix/zptrace_x86_linux.go +79 -0
  920. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsymaddr_zos_s390x.s +364 -0
  921. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go +1461 -0
  922. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64.go +1420 -0
  923. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gc.go +1188 -0
  924. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc64_gccgo.go +1069 -0
  925. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.go +2728 -0
  926. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_amd64.s +799 -0
  927. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.go +2728 -0
  928. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_darwin_arm64.s +799 -0
  929. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_dragonfly_amd64.go +1666 -0
  930. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_386.go +1886 -0
  931. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_amd64.go +1886 -0
  932. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm.go +1886 -0
  933. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_arm64.go +1886 -0
  934. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_freebsd_riscv64.go +1886 -0
  935. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_illumos_amd64.go +101 -0
  936. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux.go +2240 -0
  937. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_386.go +486 -0
  938. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_amd64.go +653 -0
  939. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm.go +601 -0
  940. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_arm64.go +552 -0
  941. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_loong64.go +486 -0
  942. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips.go +653 -0
  943. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64.go +647 -0
  944. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mips64le.go +636 -0
  945. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_mipsle.go +653 -0
  946. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc.go +658 -0
  947. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64.go +704 -0
  948. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_ppc64le.go +704 -0
  949. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_riscv64.go +548 -0
  950. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_s390x.go +495 -0
  951. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_linux_sparc64.go +648 -0
  952. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_386.go +1848 -0
  953. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_amd64.go +1848 -0
  954. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm.go +1848 -0
  955. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_netbsd_arm64.go +1848 -0
  956. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.go +2323 -0
  957. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_386.s +699 -0
  958. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.go +2323 -0
  959. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_amd64.s +699 -0
  960. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.go +2323 -0
  961. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm.s +699 -0
  962. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.go +2323 -0
  963. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_arm64.s +699 -0
  964. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.go +2323 -0
  965. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_mips64.s +699 -0
  966. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.go +2323 -0
  967. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_ppc64.s +838 -0
  968. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.go +2323 -0
  969. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_openbsd_riscv64.s +699 -0
  970. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_solaris_amd64.go +2217 -0
  971. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsyscall_zos_s390x.go +3458 -0
  972. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go +280 -0
  973. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go +280 -0
  974. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go +280 -0
  975. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm64.go +280 -0
  976. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_mips64.go +280 -0
  977. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_ppc64.go +280 -0
  978. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysctl_openbsd_riscv64.go +281 -0
  979. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_amd64.go +439 -0
  980. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_darwin_arm64.go +437 -0
  981. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_dragonfly_amd64.go +316 -0
  982. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_386.go +393 -0
  983. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_amd64.go +393 -0
  984. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm.go +393 -0
  985. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_arm64.go +393 -0
  986. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_freebsd_riscv64.go +393 -0
  987. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go +465 -0
  988. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_amd64.go +388 -0
  989. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go +429 -0
  990. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_arm64.go +332 -0
  991. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_loong64.go +328 -0
  992. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips.go +449 -0
  993. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64.go +379 -0
  994. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mips64le.go +379 -0
  995. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_mipsle.go +449 -0
  996. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc.go +456 -0
  997. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64.go +428 -0
  998. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_ppc64le.go +428 -0
  999. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_riscv64.go +333 -0
  1000. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_s390x.go +394 -0
  1001. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_linux_sparc64.go +407 -0
  1002. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_386.go +274 -0
  1003. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_amd64.go +274 -0
  1004. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm.go +274 -0
  1005. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_netbsd_arm64.go +274 -0
  1006. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_386.go +219 -0
  1007. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_amd64.go +219 -0
  1008. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm.go +219 -0
  1009. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_arm64.go +218 -0
  1010. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_mips64.go +221 -0
  1011. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_ppc64.go +217 -0
  1012. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_openbsd_riscv64.go +218 -0
  1013. slidge_whatsapp/vendor/golang.org/x/sys/unix/zsysnum_zos_s390x.go +2852 -0
  1014. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go +353 -0
  1015. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go +357 -0
  1016. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_amd64.go +878 -0
  1017. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_darwin_arm64.go +878 -0
  1018. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_dragonfly_amd64.go +473 -0
  1019. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_386.go +651 -0
  1020. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_amd64.go +656 -0
  1021. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm.go +642 -0
  1022. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_arm64.go +636 -0
  1023. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_freebsd_riscv64.go +638 -0
  1024. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux.go +6178 -0
  1025. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_386.go +689 -0
  1026. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_amd64.go +703 -0
  1027. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go +683 -0
  1028. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_arm64.go +682 -0
  1029. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_loong64.go +683 -0
  1030. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go +688 -0
  1031. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64.go +685 -0
  1032. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mips64le.go +685 -0
  1033. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_mipsle.go +688 -0
  1034. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc.go +696 -0
  1035. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64.go +691 -0
  1036. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_ppc64le.go +691 -0
  1037. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_riscv64.go +770 -0
  1038. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_s390x.go +705 -0
  1039. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_linux_sparc64.go +686 -0
  1040. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go +585 -0
  1041. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_amd64.go +593 -0
  1042. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go +590 -0
  1043. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm64.go +593 -0
  1044. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_386.go +568 -0
  1045. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_amd64.go +568 -0
  1046. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm.go +575 -0
  1047. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_arm64.go +568 -0
  1048. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_mips64.go +568 -0
  1049. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_ppc64.go +570 -0
  1050. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_openbsd_riscv64.go +570 -0
  1051. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_solaris_amd64.go +516 -0
  1052. slidge_whatsapp/vendor/golang.org/x/sys/unix/ztypes_zos_s390x.go +552 -0
  1053. slidge_whatsapp/vendor/golang.org/x/sys/windows/aliases.go +12 -0
  1054. slidge_whatsapp/vendor/golang.org/x/sys/windows/dll_windows.go +415 -0
  1055. slidge_whatsapp/vendor/golang.org/x/sys/windows/env_windows.go +57 -0
  1056. slidge_whatsapp/vendor/golang.org/x/sys/windows/eventlog.go +20 -0
  1057. slidge_whatsapp/vendor/golang.org/x/sys/windows/exec_windows.go +248 -0
  1058. slidge_whatsapp/vendor/golang.org/x/sys/windows/memory_windows.go +48 -0
  1059. slidge_whatsapp/vendor/golang.org/x/sys/windows/mkerrors.bash +70 -0
  1060. slidge_whatsapp/vendor/golang.org/x/sys/windows/mkknownfolderids.bash +27 -0
  1061. slidge_whatsapp/vendor/golang.org/x/sys/windows/mksyscall.go +9 -0
  1062. slidge_whatsapp/vendor/golang.org/x/sys/windows/race.go +30 -0
  1063. slidge_whatsapp/vendor/golang.org/x/sys/windows/race0.go +25 -0
  1064. slidge_whatsapp/vendor/golang.org/x/sys/windows/security_windows.go +1497 -0
  1065. slidge_whatsapp/vendor/golang.org/x/sys/windows/service.go +257 -0
  1066. slidge_whatsapp/vendor/golang.org/x/sys/windows/setupapi_windows.go +1425 -0
  1067. slidge_whatsapp/vendor/golang.org/x/sys/windows/str.go +22 -0
  1068. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall.go +104 -0
  1069. slidge_whatsapp/vendor/golang.org/x/sys/windows/syscall_windows.go +1934 -0
  1070. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows.go +3842 -0
  1071. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_386.go +35 -0
  1072. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_amd64.go +34 -0
  1073. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm.go +35 -0
  1074. slidge_whatsapp/vendor/golang.org/x/sys/windows/types_windows_arm64.go +34 -0
  1075. slidge_whatsapp/vendor/golang.org/x/sys/windows/zerrors_windows.go +9468 -0
  1076. slidge_whatsapp/vendor/golang.org/x/sys/windows/zknownfolderids_windows.go +149 -0
  1077. slidge_whatsapp/vendor/golang.org/x/sys/windows/zsyscall_windows.go +4695 -0
  1078. slidge_whatsapp/vendor/golang.org/x/text/LICENSE +27 -0
  1079. slidge_whatsapp/vendor/golang.org/x/text/PATENTS +22 -0
  1080. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule.go +336 -0
  1081. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule10.0.0.go +11 -0
  1082. slidge_whatsapp/vendor/golang.org/x/text/secure/bidirule/bidirule9.0.0.go +14 -0
  1083. slidge_whatsapp/vendor/golang.org/x/text/transform/transform.go +709 -0
  1084. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bidi.go +359 -0
  1085. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/bracket.go +335 -0
  1086. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/core.go +1071 -0
  1087. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/prop.go +206 -0
  1088. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables10.0.0.go +1815 -0
  1089. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables11.0.0.go +1887 -0
  1090. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables12.0.0.go +1923 -0
  1091. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables13.0.0.go +1955 -0
  1092. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables15.0.0.go +2042 -0
  1093. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/tables9.0.0.go +1781 -0
  1094. slidge_whatsapp/vendor/golang.org/x/text/unicode/bidi/trieval.go +48 -0
  1095. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/composition.go +512 -0
  1096. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/forminfo.go +279 -0
  1097. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/input.go +109 -0
  1098. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/iter.go +458 -0
  1099. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/normalize.go +610 -0
  1100. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/readwriter.go +125 -0
  1101. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables10.0.0.go +7657 -0
  1102. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables11.0.0.go +7693 -0
  1103. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables12.0.0.go +7710 -0
  1104. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables13.0.0.go +7760 -0
  1105. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables15.0.0.go +7907 -0
  1106. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/tables9.0.0.go +7637 -0
  1107. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/transform.go +88 -0
  1108. slidge_whatsapp/vendor/golang.org/x/text/unicode/norm/trie.go +54 -0
  1109. slidge_whatsapp/vendor/google.golang.org/protobuf/LICENSE +27 -0
  1110. slidge_whatsapp/vendor/google.golang.org/protobuf/PATENTS +22 -0
  1111. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/decode.go +767 -0
  1112. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/doc.go +7 -0
  1113. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/prototext/encode.go +380 -0
  1114. slidge_whatsapp/vendor/google.golang.org/protobuf/encoding/protowire/wire.go +547 -0
  1115. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descfmt/stringer.go +414 -0
  1116. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/descopts/options.go +29 -0
  1117. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/detrand/rand.go +69 -0
  1118. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/defaults.go +12 -0
  1119. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/editiondefaults/editions_defaults.binpb +0 -0
  1120. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/defval/default.go +213 -0
  1121. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/messageset/messageset.go +242 -0
  1122. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/tag/tag.go +201 -0
  1123. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode.go +686 -0
  1124. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_number.go +211 -0
  1125. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_string.go +161 -0
  1126. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/decode_token.go +373 -0
  1127. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/doc.go +29 -0
  1128. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/encoding/text/encode.go +272 -0
  1129. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/errors/errors.go +104 -0
  1130. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/build.go +157 -0
  1131. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc.go +748 -0
  1132. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_init.go +560 -0
  1133. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_lazy.go +694 -0
  1134. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list.go +457 -0
  1135. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/desc_list_gen.go +367 -0
  1136. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/editions.go +167 -0
  1137. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filedesc/placeholder.go +110 -0
  1138. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/filetype/build.go +296 -0
  1139. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/flags.go +24 -0
  1140. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_disable.go +10 -0
  1141. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/flags/proto_legacy_enable.go +10 -0
  1142. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/any_gen.go +34 -0
  1143. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/api_gen.go +106 -0
  1144. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/descriptor_gen.go +1286 -0
  1145. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/doc.go +11 -0
  1146. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/duration_gen.go +34 -0
  1147. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/empty_gen.go +19 -0
  1148. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/field_mask_gen.go +31 -0
  1149. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/go_features_gen.go +70 -0
  1150. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/goname.go +20 -0
  1151. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/map_entry.go +16 -0
  1152. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/name.go +12 -0
  1153. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/source_context_gen.go +31 -0
  1154. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/struct_gen.go +121 -0
  1155. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/timestamp_gen.go +34 -0
  1156. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/type_gen.go +228 -0
  1157. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers.go +13 -0
  1158. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/genid/wrappers_gen.go +175 -0
  1159. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export.go +177 -0
  1160. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/api_export_opaque.go +128 -0
  1161. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap.go +34 -0
  1162. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/bitmap_race.go +126 -0
  1163. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/checkinit.go +174 -0
  1164. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_extension.go +228 -0
  1165. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field.go +788 -0
  1166. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_field_opaque.go +264 -0
  1167. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_gen.go +5724 -0
  1168. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_map.go +399 -0
  1169. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message.go +230 -0
  1170. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_message_opaque.go +153 -0
  1171. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_messageset.go +145 -0
  1172. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_tables.go +557 -0
  1173. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/codec_unsafe.go +15 -0
  1174. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert.go +495 -0
  1175. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_list.go +141 -0
  1176. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/convert_map.go +121 -0
  1177. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/decode.go +333 -0
  1178. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/encode.go +315 -0
  1179. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/enum.go +21 -0
  1180. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/equal.go +224 -0
  1181. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/extension.go +156 -0
  1182. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/lazy.go +433 -0
  1183. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_enum.go +219 -0
  1184. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_export.go +92 -0
  1185. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_extension.go +177 -0
  1186. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_file.go +81 -0
  1187. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/legacy_message.go +569 -0
  1188. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge.go +203 -0
  1189. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/merge_gen.go +209 -0
  1190. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message.go +283 -0
  1191. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque.go +627 -0
  1192. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_opaque_gen.go +132 -0
  1193. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect.go +462 -0
  1194. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field.go +423 -0
  1195. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_field_gen.go +273 -0
  1196. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/message_reflect_gen.go +271 -0
  1197. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe.go +220 -0
  1198. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/pointer_unsafe_opaque.go +42 -0
  1199. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/presence.go +142 -0
  1200. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/impl/validate.go +570 -0
  1201. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/order.go +89 -0
  1202. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/order/range.go +115 -0
  1203. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/pragma/pragma.go +29 -0
  1204. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/bufferreader.go +364 -0
  1205. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/lazy.go +359 -0
  1206. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/protolazy/pointer_unsafe.go +17 -0
  1207. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/set/ints.go +58 -0
  1208. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings.go +196 -0
  1209. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/strs/strings_unsafe.go +71 -0
  1210. slidge_whatsapp/vendor/google.golang.org/protobuf/internal/version/version.go +79 -0
  1211. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/checkinit.go +71 -0
  1212. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode.go +307 -0
  1213. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/decode_gen.go +603 -0
  1214. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/doc.go +86 -0
  1215. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode.go +355 -0
  1216. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/encode_gen.go +97 -0
  1217. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/equal.go +66 -0
  1218. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/extension.go +166 -0
  1219. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/merge.go +145 -0
  1220. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/messageset.go +98 -0
  1221. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto.go +45 -0
  1222. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_methods.go +20 -0
  1223. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/proto_reflect.go +20 -0
  1224. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/reset.go +43 -0
  1225. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size.go +111 -0
  1226. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/size_gen.go +55 -0
  1227. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrapperopaque.go +80 -0
  1228. slidge_whatsapp/vendor/google.golang.org/protobuf/proto/wrappers.go +29 -0
  1229. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/methods.go +88 -0
  1230. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/proto.go +513 -0
  1231. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source.go +129 -0
  1232. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/source_gen.go +575 -0
  1233. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/type.go +666 -0
  1234. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value.go +285 -0
  1235. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_equal.go +168 -0
  1236. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_union.go +438 -0
  1237. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoreflect/value_unsafe.go +84 -0
  1238. slidge_whatsapp/vendor/google.golang.org/protobuf/reflect/protoregistry/registry.go +882 -0
  1239. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/legacy.go +15 -0
  1240. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoiface/methods.go +202 -0
  1241. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/impl.go +48 -0
  1242. slidge_whatsapp/vendor/google.golang.org/protobuf/runtime/protoimpl/version.go +60 -0
  1243. slidge_whatsapp/vendor/modules.txt +198 -0
  1244. slidge_whatsapp-0.2.6.dist-info/METADATA +63 -0
  1245. slidge_whatsapp-0.2.6.dist-info/RECORD +1253 -0
  1246. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.6.dist-info}/WHEEL +1 -1
  1247. slidge_whatsapp-0.2.2.dist-info/METADATA +0 -744
  1248. slidge_whatsapp-0.2.2.dist-info/RECORD +0 -31
  1249. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.6.dist-info}/LICENSE +0 -0
  1250. {slidge_whatsapp-0.2.2.dist-info → slidge_whatsapp-0.2.6.dist-info}/entry_points.txt +0 -0
@@ -0,0 +1,2130 @@
1
+ // Code generated by protoc-gen-go. DO NOT EDIT.
2
+ // versions:
3
+ // protoc-gen-go v1.36.6
4
+ // protoc v3.21.12
5
+ // source: waMediaTransport/WAMediaTransport.proto
6
+
7
+ package waMediaTransport
8
+
9
+ import (
10
+ reflect "reflect"
11
+ sync "sync"
12
+ unsafe "unsafe"
13
+
14
+ protoreflect "google.golang.org/protobuf/reflect/protoreflect"
15
+ protoimpl "google.golang.org/protobuf/runtime/protoimpl"
16
+
17
+ waCommon "go.mau.fi/whatsmeow/proto/waCommon"
18
+ )
19
+
20
+ const (
21
+ // Verify that this generated code is sufficiently up-to-date.
22
+ _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
23
+ // Verify that runtime/protoimpl is sufficiently up-to-date.
24
+ _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
25
+ )
26
+
27
+ type ImageTransport_Ancillary_HdType int32
28
+
29
+ const (
30
+ ImageTransport_Ancillary_NONE ImageTransport_Ancillary_HdType = 0
31
+ ImageTransport_Ancillary_LQ_4K ImageTransport_Ancillary_HdType = 1
32
+ ImageTransport_Ancillary_HQ_4K ImageTransport_Ancillary_HdType = 2
33
+ )
34
+
35
+ // Enum value maps for ImageTransport_Ancillary_HdType.
36
+ var (
37
+ ImageTransport_Ancillary_HdType_name = map[int32]string{
38
+ 0: "NONE",
39
+ 1: "LQ_4K",
40
+ 2: "HQ_4K",
41
+ }
42
+ ImageTransport_Ancillary_HdType_value = map[string]int32{
43
+ "NONE": 0,
44
+ "LQ_4K": 1,
45
+ "HQ_4K": 2,
46
+ }
47
+ )
48
+
49
+ func (x ImageTransport_Ancillary_HdType) Enum() *ImageTransport_Ancillary_HdType {
50
+ p := new(ImageTransport_Ancillary_HdType)
51
+ *p = x
52
+ return p
53
+ }
54
+
55
+ func (x ImageTransport_Ancillary_HdType) String() string {
56
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
57
+ }
58
+
59
+ func (ImageTransport_Ancillary_HdType) Descriptor() protoreflect.EnumDescriptor {
60
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[0].Descriptor()
61
+ }
62
+
63
+ func (ImageTransport_Ancillary_HdType) Type() protoreflect.EnumType {
64
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[0]
65
+ }
66
+
67
+ func (x ImageTransport_Ancillary_HdType) Number() protoreflect.EnumNumber {
68
+ return protoreflect.EnumNumber(x)
69
+ }
70
+
71
+ // Deprecated: Do not use.
72
+ func (x *ImageTransport_Ancillary_HdType) UnmarshalJSON(b []byte) error {
73
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
74
+ if err != nil {
75
+ return err
76
+ }
77
+ *x = ImageTransport_Ancillary_HdType(num)
78
+ return nil
79
+ }
80
+
81
+ // Deprecated: Use ImageTransport_Ancillary_HdType.Descriptor instead.
82
+ func (ImageTransport_Ancillary_HdType) EnumDescriptor() ([]byte, []int) {
83
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 0, 0}
84
+ }
85
+
86
+ type VideoTransport_Ancillary_Attribution int32
87
+
88
+ const (
89
+ VideoTransport_Ancillary_NONE VideoTransport_Ancillary_Attribution = 0
90
+ VideoTransport_Ancillary_GIPHY VideoTransport_Ancillary_Attribution = 1
91
+ VideoTransport_Ancillary_TENOR VideoTransport_Ancillary_Attribution = 2
92
+ )
93
+
94
+ // Enum value maps for VideoTransport_Ancillary_Attribution.
95
+ var (
96
+ VideoTransport_Ancillary_Attribution_name = map[int32]string{
97
+ 0: "NONE",
98
+ 1: "GIPHY",
99
+ 2: "TENOR",
100
+ }
101
+ VideoTransport_Ancillary_Attribution_value = map[string]int32{
102
+ "NONE": 0,
103
+ "GIPHY": 1,
104
+ "TENOR": 2,
105
+ }
106
+ )
107
+
108
+ func (x VideoTransport_Ancillary_Attribution) Enum() *VideoTransport_Ancillary_Attribution {
109
+ p := new(VideoTransport_Ancillary_Attribution)
110
+ *p = x
111
+ return p
112
+ }
113
+
114
+ func (x VideoTransport_Ancillary_Attribution) String() string {
115
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
116
+ }
117
+
118
+ func (VideoTransport_Ancillary_Attribution) Descriptor() protoreflect.EnumDescriptor {
119
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[1].Descriptor()
120
+ }
121
+
122
+ func (VideoTransport_Ancillary_Attribution) Type() protoreflect.EnumType {
123
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[1]
124
+ }
125
+
126
+ func (x VideoTransport_Ancillary_Attribution) Number() protoreflect.EnumNumber {
127
+ return protoreflect.EnumNumber(x)
128
+ }
129
+
130
+ // Deprecated: Do not use.
131
+ func (x *VideoTransport_Ancillary_Attribution) UnmarshalJSON(b []byte) error {
132
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
133
+ if err != nil {
134
+ return err
135
+ }
136
+ *x = VideoTransport_Ancillary_Attribution(num)
137
+ return nil
138
+ }
139
+
140
+ // Deprecated: Use VideoTransport_Ancillary_Attribution.Descriptor instead.
141
+ func (VideoTransport_Ancillary_Attribution) EnumDescriptor() ([]byte, []int) {
142
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 0, 0}
143
+ }
144
+
145
+ type AudioTransport_Ancillary_AvatarAudio_AnimationsType int32
146
+
147
+ const (
148
+ AudioTransport_Ancillary_AvatarAudio_TALKING_A AudioTransport_Ancillary_AvatarAudio_AnimationsType = 0
149
+ AudioTransport_Ancillary_AvatarAudio_IDLE_A AudioTransport_Ancillary_AvatarAudio_AnimationsType = 1
150
+ AudioTransport_Ancillary_AvatarAudio_TALKING_B AudioTransport_Ancillary_AvatarAudio_AnimationsType = 2
151
+ AudioTransport_Ancillary_AvatarAudio_IDLE_B AudioTransport_Ancillary_AvatarAudio_AnimationsType = 3
152
+ AudioTransport_Ancillary_AvatarAudio_BACKGROUND AudioTransport_Ancillary_AvatarAudio_AnimationsType = 4
153
+ )
154
+
155
+ // Enum value maps for AudioTransport_Ancillary_AvatarAudio_AnimationsType.
156
+ var (
157
+ AudioTransport_Ancillary_AvatarAudio_AnimationsType_name = map[int32]string{
158
+ 0: "TALKING_A",
159
+ 1: "IDLE_A",
160
+ 2: "TALKING_B",
161
+ 3: "IDLE_B",
162
+ 4: "BACKGROUND",
163
+ }
164
+ AudioTransport_Ancillary_AvatarAudio_AnimationsType_value = map[string]int32{
165
+ "TALKING_A": 0,
166
+ "IDLE_A": 1,
167
+ "TALKING_B": 2,
168
+ "IDLE_B": 3,
169
+ "BACKGROUND": 4,
170
+ }
171
+ )
172
+
173
+ func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) Enum() *AudioTransport_Ancillary_AvatarAudio_AnimationsType {
174
+ p := new(AudioTransport_Ancillary_AvatarAudio_AnimationsType)
175
+ *p = x
176
+ return p
177
+ }
178
+
179
+ func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) String() string {
180
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
181
+ }
182
+
183
+ func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) Descriptor() protoreflect.EnumDescriptor {
184
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[2].Descriptor()
185
+ }
186
+
187
+ func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) Type() protoreflect.EnumType {
188
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[2]
189
+ }
190
+
191
+ func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) Number() protoreflect.EnumNumber {
192
+ return protoreflect.EnumNumber(x)
193
+ }
194
+
195
+ // Deprecated: Do not use.
196
+ func (x *AudioTransport_Ancillary_AvatarAudio_AnimationsType) UnmarshalJSON(b []byte) error {
197
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
198
+ if err != nil {
199
+ return err
200
+ }
201
+ *x = AudioTransport_Ancillary_AvatarAudio_AnimationsType(num)
202
+ return nil
203
+ }
204
+
205
+ // Deprecated: Use AudioTransport_Ancillary_AvatarAudio_AnimationsType.Descriptor instead.
206
+ func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) EnumDescriptor() ([]byte, []int) {
207
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0, 0}
208
+ }
209
+
210
+ type AudioTransport_Integral_AudioFormat int32
211
+
212
+ const (
213
+ AudioTransport_Integral_UNKNOWN AudioTransport_Integral_AudioFormat = 0
214
+ AudioTransport_Integral_OPUS AudioTransport_Integral_AudioFormat = 1
215
+ )
216
+
217
+ // Enum value maps for AudioTransport_Integral_AudioFormat.
218
+ var (
219
+ AudioTransport_Integral_AudioFormat_name = map[int32]string{
220
+ 0: "UNKNOWN",
221
+ 1: "OPUS",
222
+ }
223
+ AudioTransport_Integral_AudioFormat_value = map[string]int32{
224
+ "UNKNOWN": 0,
225
+ "OPUS": 1,
226
+ }
227
+ )
228
+
229
+ func (x AudioTransport_Integral_AudioFormat) Enum() *AudioTransport_Integral_AudioFormat {
230
+ p := new(AudioTransport_Integral_AudioFormat)
231
+ *p = x
232
+ return p
233
+ }
234
+
235
+ func (x AudioTransport_Integral_AudioFormat) String() string {
236
+ return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
237
+ }
238
+
239
+ func (AudioTransport_Integral_AudioFormat) Descriptor() protoreflect.EnumDescriptor {
240
+ return file_waMediaTransport_WAMediaTransport_proto_enumTypes[3].Descriptor()
241
+ }
242
+
243
+ func (AudioTransport_Integral_AudioFormat) Type() protoreflect.EnumType {
244
+ return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[3]
245
+ }
246
+
247
+ func (x AudioTransport_Integral_AudioFormat) Number() protoreflect.EnumNumber {
248
+ return protoreflect.EnumNumber(x)
249
+ }
250
+
251
+ // Deprecated: Do not use.
252
+ func (x *AudioTransport_Integral_AudioFormat) UnmarshalJSON(b []byte) error {
253
+ num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
254
+ if err != nil {
255
+ return err
256
+ }
257
+ *x = AudioTransport_Integral_AudioFormat(num)
258
+ return nil
259
+ }
260
+
261
+ // Deprecated: Use AudioTransport_Integral_AudioFormat.Descriptor instead.
262
+ func (AudioTransport_Integral_AudioFormat) EnumDescriptor() ([]byte, []int) {
263
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 1, 0}
264
+ }
265
+
266
+ type WAMediaTransport struct {
267
+ state protoimpl.MessageState `protogen:"open.v1"`
268
+ Integral *WAMediaTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
269
+ Ancillary *WAMediaTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
270
+ unknownFields protoimpl.UnknownFields
271
+ sizeCache protoimpl.SizeCache
272
+ }
273
+
274
+ func (x *WAMediaTransport) Reset() {
275
+ *x = WAMediaTransport{}
276
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[0]
277
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
278
+ ms.StoreMessageInfo(mi)
279
+ }
280
+
281
+ func (x *WAMediaTransport) String() string {
282
+ return protoimpl.X.MessageStringOf(x)
283
+ }
284
+
285
+ func (*WAMediaTransport) ProtoMessage() {}
286
+
287
+ func (x *WAMediaTransport) ProtoReflect() protoreflect.Message {
288
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[0]
289
+ if x != nil {
290
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
291
+ if ms.LoadMessageInfo() == nil {
292
+ ms.StoreMessageInfo(mi)
293
+ }
294
+ return ms
295
+ }
296
+ return mi.MessageOf(x)
297
+ }
298
+
299
+ // Deprecated: Use WAMediaTransport.ProtoReflect.Descriptor instead.
300
+ func (*WAMediaTransport) Descriptor() ([]byte, []int) {
301
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0}
302
+ }
303
+
304
+ func (x *WAMediaTransport) GetIntegral() *WAMediaTransport_Integral {
305
+ if x != nil {
306
+ return x.Integral
307
+ }
308
+ return nil
309
+ }
310
+
311
+ func (x *WAMediaTransport) GetAncillary() *WAMediaTransport_Ancillary {
312
+ if x != nil {
313
+ return x.Ancillary
314
+ }
315
+ return nil
316
+ }
317
+
318
+ type ImageTransport struct {
319
+ state protoimpl.MessageState `protogen:"open.v1"`
320
+ Integral *ImageTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
321
+ Ancillary *ImageTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
322
+ unknownFields protoimpl.UnknownFields
323
+ sizeCache protoimpl.SizeCache
324
+ }
325
+
326
+ func (x *ImageTransport) Reset() {
327
+ *x = ImageTransport{}
328
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[1]
329
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
330
+ ms.StoreMessageInfo(mi)
331
+ }
332
+
333
+ func (x *ImageTransport) String() string {
334
+ return protoimpl.X.MessageStringOf(x)
335
+ }
336
+
337
+ func (*ImageTransport) ProtoMessage() {}
338
+
339
+ func (x *ImageTransport) ProtoReflect() protoreflect.Message {
340
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[1]
341
+ if x != nil {
342
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
343
+ if ms.LoadMessageInfo() == nil {
344
+ ms.StoreMessageInfo(mi)
345
+ }
346
+ return ms
347
+ }
348
+ return mi.MessageOf(x)
349
+ }
350
+
351
+ // Deprecated: Use ImageTransport.ProtoReflect.Descriptor instead.
352
+ func (*ImageTransport) Descriptor() ([]byte, []int) {
353
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1}
354
+ }
355
+
356
+ func (x *ImageTransport) GetIntegral() *ImageTransport_Integral {
357
+ if x != nil {
358
+ return x.Integral
359
+ }
360
+ return nil
361
+ }
362
+
363
+ func (x *ImageTransport) GetAncillary() *ImageTransport_Ancillary {
364
+ if x != nil {
365
+ return x.Ancillary
366
+ }
367
+ return nil
368
+ }
369
+
370
+ type VideoTransport struct {
371
+ state protoimpl.MessageState `protogen:"open.v1"`
372
+ Integral *VideoTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
373
+ Ancillary *VideoTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
374
+ unknownFields protoimpl.UnknownFields
375
+ sizeCache protoimpl.SizeCache
376
+ }
377
+
378
+ func (x *VideoTransport) Reset() {
379
+ *x = VideoTransport{}
380
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[2]
381
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
382
+ ms.StoreMessageInfo(mi)
383
+ }
384
+
385
+ func (x *VideoTransport) String() string {
386
+ return protoimpl.X.MessageStringOf(x)
387
+ }
388
+
389
+ func (*VideoTransport) ProtoMessage() {}
390
+
391
+ func (x *VideoTransport) ProtoReflect() protoreflect.Message {
392
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[2]
393
+ if x != nil {
394
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
395
+ if ms.LoadMessageInfo() == nil {
396
+ ms.StoreMessageInfo(mi)
397
+ }
398
+ return ms
399
+ }
400
+ return mi.MessageOf(x)
401
+ }
402
+
403
+ // Deprecated: Use VideoTransport.ProtoReflect.Descriptor instead.
404
+ func (*VideoTransport) Descriptor() ([]byte, []int) {
405
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2}
406
+ }
407
+
408
+ func (x *VideoTransport) GetIntegral() *VideoTransport_Integral {
409
+ if x != nil {
410
+ return x.Integral
411
+ }
412
+ return nil
413
+ }
414
+
415
+ func (x *VideoTransport) GetAncillary() *VideoTransport_Ancillary {
416
+ if x != nil {
417
+ return x.Ancillary
418
+ }
419
+ return nil
420
+ }
421
+
422
+ type AudioTransport struct {
423
+ state protoimpl.MessageState `protogen:"open.v1"`
424
+ Integral *AudioTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
425
+ Ancillary *AudioTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
426
+ unknownFields protoimpl.UnknownFields
427
+ sizeCache protoimpl.SizeCache
428
+ }
429
+
430
+ func (x *AudioTransport) Reset() {
431
+ *x = AudioTransport{}
432
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[3]
433
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
434
+ ms.StoreMessageInfo(mi)
435
+ }
436
+
437
+ func (x *AudioTransport) String() string {
438
+ return protoimpl.X.MessageStringOf(x)
439
+ }
440
+
441
+ func (*AudioTransport) ProtoMessage() {}
442
+
443
+ func (x *AudioTransport) ProtoReflect() protoreflect.Message {
444
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[3]
445
+ if x != nil {
446
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
447
+ if ms.LoadMessageInfo() == nil {
448
+ ms.StoreMessageInfo(mi)
449
+ }
450
+ return ms
451
+ }
452
+ return mi.MessageOf(x)
453
+ }
454
+
455
+ // Deprecated: Use AudioTransport.ProtoReflect.Descriptor instead.
456
+ func (*AudioTransport) Descriptor() ([]byte, []int) {
457
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3}
458
+ }
459
+
460
+ func (x *AudioTransport) GetIntegral() *AudioTransport_Integral {
461
+ if x != nil {
462
+ return x.Integral
463
+ }
464
+ return nil
465
+ }
466
+
467
+ func (x *AudioTransport) GetAncillary() *AudioTransport_Ancillary {
468
+ if x != nil {
469
+ return x.Ancillary
470
+ }
471
+ return nil
472
+ }
473
+
474
+ type DocumentTransport struct {
475
+ state protoimpl.MessageState `protogen:"open.v1"`
476
+ Integral *DocumentTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
477
+ Ancillary *DocumentTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
478
+ unknownFields protoimpl.UnknownFields
479
+ sizeCache protoimpl.SizeCache
480
+ }
481
+
482
+ func (x *DocumentTransport) Reset() {
483
+ *x = DocumentTransport{}
484
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[4]
485
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
486
+ ms.StoreMessageInfo(mi)
487
+ }
488
+
489
+ func (x *DocumentTransport) String() string {
490
+ return protoimpl.X.MessageStringOf(x)
491
+ }
492
+
493
+ func (*DocumentTransport) ProtoMessage() {}
494
+
495
+ func (x *DocumentTransport) ProtoReflect() protoreflect.Message {
496
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[4]
497
+ if x != nil {
498
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
499
+ if ms.LoadMessageInfo() == nil {
500
+ ms.StoreMessageInfo(mi)
501
+ }
502
+ return ms
503
+ }
504
+ return mi.MessageOf(x)
505
+ }
506
+
507
+ // Deprecated: Use DocumentTransport.ProtoReflect.Descriptor instead.
508
+ func (*DocumentTransport) Descriptor() ([]byte, []int) {
509
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4}
510
+ }
511
+
512
+ func (x *DocumentTransport) GetIntegral() *DocumentTransport_Integral {
513
+ if x != nil {
514
+ return x.Integral
515
+ }
516
+ return nil
517
+ }
518
+
519
+ func (x *DocumentTransport) GetAncillary() *DocumentTransport_Ancillary {
520
+ if x != nil {
521
+ return x.Ancillary
522
+ }
523
+ return nil
524
+ }
525
+
526
+ type StickerTransport struct {
527
+ state protoimpl.MessageState `protogen:"open.v1"`
528
+ Integral *StickerTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
529
+ Ancillary *StickerTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
530
+ unknownFields protoimpl.UnknownFields
531
+ sizeCache protoimpl.SizeCache
532
+ }
533
+
534
+ func (x *StickerTransport) Reset() {
535
+ *x = StickerTransport{}
536
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[5]
537
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
538
+ ms.StoreMessageInfo(mi)
539
+ }
540
+
541
+ func (x *StickerTransport) String() string {
542
+ return protoimpl.X.MessageStringOf(x)
543
+ }
544
+
545
+ func (*StickerTransport) ProtoMessage() {}
546
+
547
+ func (x *StickerTransport) ProtoReflect() protoreflect.Message {
548
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[5]
549
+ if x != nil {
550
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
551
+ if ms.LoadMessageInfo() == nil {
552
+ ms.StoreMessageInfo(mi)
553
+ }
554
+ return ms
555
+ }
556
+ return mi.MessageOf(x)
557
+ }
558
+
559
+ // Deprecated: Use StickerTransport.ProtoReflect.Descriptor instead.
560
+ func (*StickerTransport) Descriptor() ([]byte, []int) {
561
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5}
562
+ }
563
+
564
+ func (x *StickerTransport) GetIntegral() *StickerTransport_Integral {
565
+ if x != nil {
566
+ return x.Integral
567
+ }
568
+ return nil
569
+ }
570
+
571
+ func (x *StickerTransport) GetAncillary() *StickerTransport_Ancillary {
572
+ if x != nil {
573
+ return x.Ancillary
574
+ }
575
+ return nil
576
+ }
577
+
578
+ type ContactTransport struct {
579
+ state protoimpl.MessageState `protogen:"open.v1"`
580
+ Integral *ContactTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
581
+ Ancillary *ContactTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
582
+ unknownFields protoimpl.UnknownFields
583
+ sizeCache protoimpl.SizeCache
584
+ }
585
+
586
+ func (x *ContactTransport) Reset() {
587
+ *x = ContactTransport{}
588
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[6]
589
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
590
+ ms.StoreMessageInfo(mi)
591
+ }
592
+
593
+ func (x *ContactTransport) String() string {
594
+ return protoimpl.X.MessageStringOf(x)
595
+ }
596
+
597
+ func (*ContactTransport) ProtoMessage() {}
598
+
599
+ func (x *ContactTransport) ProtoReflect() protoreflect.Message {
600
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[6]
601
+ if x != nil {
602
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
603
+ if ms.LoadMessageInfo() == nil {
604
+ ms.StoreMessageInfo(mi)
605
+ }
606
+ return ms
607
+ }
608
+ return mi.MessageOf(x)
609
+ }
610
+
611
+ // Deprecated: Use ContactTransport.ProtoReflect.Descriptor instead.
612
+ func (*ContactTransport) Descriptor() ([]byte, []int) {
613
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6}
614
+ }
615
+
616
+ func (x *ContactTransport) GetIntegral() *ContactTransport_Integral {
617
+ if x != nil {
618
+ return x.Integral
619
+ }
620
+ return nil
621
+ }
622
+
623
+ func (x *ContactTransport) GetAncillary() *ContactTransport_Ancillary {
624
+ if x != nil {
625
+ return x.Ancillary
626
+ }
627
+ return nil
628
+ }
629
+
630
+ type WAMediaTransport_Ancillary struct {
631
+ state protoimpl.MessageState `protogen:"open.v1"`
632
+ FileLength *uint64 `protobuf:"varint,1,opt,name=fileLength" json:"fileLength,omitempty"`
633
+ Mimetype *string `protobuf:"bytes,2,opt,name=mimetype" json:"mimetype,omitempty"`
634
+ Thumbnail *WAMediaTransport_Ancillary_Thumbnail `protobuf:"bytes,3,opt,name=thumbnail" json:"thumbnail,omitempty"`
635
+ ObjectID *string `protobuf:"bytes,4,opt,name=objectID" json:"objectID,omitempty"`
636
+ unknownFields protoimpl.UnknownFields
637
+ sizeCache protoimpl.SizeCache
638
+ }
639
+
640
+ func (x *WAMediaTransport_Ancillary) Reset() {
641
+ *x = WAMediaTransport_Ancillary{}
642
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[7]
643
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
644
+ ms.StoreMessageInfo(mi)
645
+ }
646
+
647
+ func (x *WAMediaTransport_Ancillary) String() string {
648
+ return protoimpl.X.MessageStringOf(x)
649
+ }
650
+
651
+ func (*WAMediaTransport_Ancillary) ProtoMessage() {}
652
+
653
+ func (x *WAMediaTransport_Ancillary) ProtoReflect() protoreflect.Message {
654
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[7]
655
+ if x != nil {
656
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
657
+ if ms.LoadMessageInfo() == nil {
658
+ ms.StoreMessageInfo(mi)
659
+ }
660
+ return ms
661
+ }
662
+ return mi.MessageOf(x)
663
+ }
664
+
665
+ // Deprecated: Use WAMediaTransport_Ancillary.ProtoReflect.Descriptor instead.
666
+ func (*WAMediaTransport_Ancillary) Descriptor() ([]byte, []int) {
667
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0}
668
+ }
669
+
670
+ func (x *WAMediaTransport_Ancillary) GetFileLength() uint64 {
671
+ if x != nil && x.FileLength != nil {
672
+ return *x.FileLength
673
+ }
674
+ return 0
675
+ }
676
+
677
+ func (x *WAMediaTransport_Ancillary) GetMimetype() string {
678
+ if x != nil && x.Mimetype != nil {
679
+ return *x.Mimetype
680
+ }
681
+ return ""
682
+ }
683
+
684
+ func (x *WAMediaTransport_Ancillary) GetThumbnail() *WAMediaTransport_Ancillary_Thumbnail {
685
+ if x != nil {
686
+ return x.Thumbnail
687
+ }
688
+ return nil
689
+ }
690
+
691
+ func (x *WAMediaTransport_Ancillary) GetObjectID() string {
692
+ if x != nil && x.ObjectID != nil {
693
+ return *x.ObjectID
694
+ }
695
+ return ""
696
+ }
697
+
698
+ type WAMediaTransport_Integral struct {
699
+ state protoimpl.MessageState `protogen:"open.v1"`
700
+ FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
701
+ MediaKey []byte `protobuf:"bytes,2,opt,name=mediaKey" json:"mediaKey,omitempty"`
702
+ FileEncSHA256 []byte `protobuf:"bytes,3,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
703
+ DirectPath *string `protobuf:"bytes,4,opt,name=directPath" json:"directPath,omitempty"`
704
+ MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
705
+ unknownFields protoimpl.UnknownFields
706
+ sizeCache protoimpl.SizeCache
707
+ }
708
+
709
+ func (x *WAMediaTransport_Integral) Reset() {
710
+ *x = WAMediaTransport_Integral{}
711
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[8]
712
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
713
+ ms.StoreMessageInfo(mi)
714
+ }
715
+
716
+ func (x *WAMediaTransport_Integral) String() string {
717
+ return protoimpl.X.MessageStringOf(x)
718
+ }
719
+
720
+ func (*WAMediaTransport_Integral) ProtoMessage() {}
721
+
722
+ func (x *WAMediaTransport_Integral) ProtoReflect() protoreflect.Message {
723
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[8]
724
+ if x != nil {
725
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
726
+ if ms.LoadMessageInfo() == nil {
727
+ ms.StoreMessageInfo(mi)
728
+ }
729
+ return ms
730
+ }
731
+ return mi.MessageOf(x)
732
+ }
733
+
734
+ // Deprecated: Use WAMediaTransport_Integral.ProtoReflect.Descriptor instead.
735
+ func (*WAMediaTransport_Integral) Descriptor() ([]byte, []int) {
736
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 1}
737
+ }
738
+
739
+ func (x *WAMediaTransport_Integral) GetFileSHA256() []byte {
740
+ if x != nil {
741
+ return x.FileSHA256
742
+ }
743
+ return nil
744
+ }
745
+
746
+ func (x *WAMediaTransport_Integral) GetMediaKey() []byte {
747
+ if x != nil {
748
+ return x.MediaKey
749
+ }
750
+ return nil
751
+ }
752
+
753
+ func (x *WAMediaTransport_Integral) GetFileEncSHA256() []byte {
754
+ if x != nil {
755
+ return x.FileEncSHA256
756
+ }
757
+ return nil
758
+ }
759
+
760
+ func (x *WAMediaTransport_Integral) GetDirectPath() string {
761
+ if x != nil && x.DirectPath != nil {
762
+ return *x.DirectPath
763
+ }
764
+ return ""
765
+ }
766
+
767
+ func (x *WAMediaTransport_Integral) GetMediaKeyTimestamp() int64 {
768
+ if x != nil && x.MediaKeyTimestamp != nil {
769
+ return *x.MediaKeyTimestamp
770
+ }
771
+ return 0
772
+ }
773
+
774
+ type WAMediaTransport_Ancillary_Thumbnail struct {
775
+ state protoimpl.MessageState `protogen:"open.v1"`
776
+ JPEGThumbnail []byte `protobuf:"bytes,1,opt,name=JPEGThumbnail" json:"JPEGThumbnail,omitempty"`
777
+ DownloadableThumbnail *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail `protobuf:"bytes,2,opt,name=downloadableThumbnail" json:"downloadableThumbnail,omitempty"`
778
+ ThumbnailWidth *uint32 `protobuf:"varint,3,opt,name=thumbnailWidth" json:"thumbnailWidth,omitempty"`
779
+ ThumbnailHeight *uint32 `protobuf:"varint,4,opt,name=thumbnailHeight" json:"thumbnailHeight,omitempty"`
780
+ unknownFields protoimpl.UnknownFields
781
+ sizeCache protoimpl.SizeCache
782
+ }
783
+
784
+ func (x *WAMediaTransport_Ancillary_Thumbnail) Reset() {
785
+ *x = WAMediaTransport_Ancillary_Thumbnail{}
786
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[9]
787
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
788
+ ms.StoreMessageInfo(mi)
789
+ }
790
+
791
+ func (x *WAMediaTransport_Ancillary_Thumbnail) String() string {
792
+ return protoimpl.X.MessageStringOf(x)
793
+ }
794
+
795
+ func (*WAMediaTransport_Ancillary_Thumbnail) ProtoMessage() {}
796
+
797
+ func (x *WAMediaTransport_Ancillary_Thumbnail) ProtoReflect() protoreflect.Message {
798
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[9]
799
+ if x != nil {
800
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
801
+ if ms.LoadMessageInfo() == nil {
802
+ ms.StoreMessageInfo(mi)
803
+ }
804
+ return ms
805
+ }
806
+ return mi.MessageOf(x)
807
+ }
808
+
809
+ // Deprecated: Use WAMediaTransport_Ancillary_Thumbnail.ProtoReflect.Descriptor instead.
810
+ func (*WAMediaTransport_Ancillary_Thumbnail) Descriptor() ([]byte, []int) {
811
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0, 0}
812
+ }
813
+
814
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetJPEGThumbnail() []byte {
815
+ if x != nil {
816
+ return x.JPEGThumbnail
817
+ }
818
+ return nil
819
+ }
820
+
821
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetDownloadableThumbnail() *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail {
822
+ if x != nil {
823
+ return x.DownloadableThumbnail
824
+ }
825
+ return nil
826
+ }
827
+
828
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetThumbnailWidth() uint32 {
829
+ if x != nil && x.ThumbnailWidth != nil {
830
+ return *x.ThumbnailWidth
831
+ }
832
+ return 0
833
+ }
834
+
835
+ func (x *WAMediaTransport_Ancillary_Thumbnail) GetThumbnailHeight() uint32 {
836
+ if x != nil && x.ThumbnailHeight != nil {
837
+ return *x.ThumbnailHeight
838
+ }
839
+ return 0
840
+ }
841
+
842
+ type WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail struct {
843
+ state protoimpl.MessageState `protogen:"open.v1"`
844
+ FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
845
+ FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
846
+ DirectPath *string `protobuf:"bytes,3,opt,name=directPath" json:"directPath,omitempty"`
847
+ MediaKey []byte `protobuf:"bytes,4,opt,name=mediaKey" json:"mediaKey,omitempty"`
848
+ MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
849
+ ObjectID *string `protobuf:"bytes,6,opt,name=objectID" json:"objectID,omitempty"`
850
+ ThumbnailScansSidecar []byte `protobuf:"bytes,7,opt,name=thumbnailScansSidecar" json:"thumbnailScansSidecar,omitempty"`
851
+ ThumbnailScanLengths []uint32 `protobuf:"varint,8,rep,name=thumbnailScanLengths" json:"thumbnailScanLengths,omitempty"`
852
+ unknownFields protoimpl.UnknownFields
853
+ sizeCache protoimpl.SizeCache
854
+ }
855
+
856
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) Reset() {
857
+ *x = WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail{}
858
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[10]
859
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
860
+ ms.StoreMessageInfo(mi)
861
+ }
862
+
863
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) String() string {
864
+ return protoimpl.X.MessageStringOf(x)
865
+ }
866
+
867
+ func (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) ProtoMessage() {}
868
+
869
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) ProtoReflect() protoreflect.Message {
870
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[10]
871
+ if x != nil {
872
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
873
+ if ms.LoadMessageInfo() == nil {
874
+ ms.StoreMessageInfo(mi)
875
+ }
876
+ return ms
877
+ }
878
+ return mi.MessageOf(x)
879
+ }
880
+
881
+ // Deprecated: Use WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail.ProtoReflect.Descriptor instead.
882
+ func (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) Descriptor() ([]byte, []int) {
883
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0, 0, 0}
884
+ }
885
+
886
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetFileSHA256() []byte {
887
+ if x != nil {
888
+ return x.FileSHA256
889
+ }
890
+ return nil
891
+ }
892
+
893
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetFileEncSHA256() []byte {
894
+ if x != nil {
895
+ return x.FileEncSHA256
896
+ }
897
+ return nil
898
+ }
899
+
900
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetDirectPath() string {
901
+ if x != nil && x.DirectPath != nil {
902
+ return *x.DirectPath
903
+ }
904
+ return ""
905
+ }
906
+
907
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetMediaKey() []byte {
908
+ if x != nil {
909
+ return x.MediaKey
910
+ }
911
+ return nil
912
+ }
913
+
914
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetMediaKeyTimestamp() int64 {
915
+ if x != nil && x.MediaKeyTimestamp != nil {
916
+ return *x.MediaKeyTimestamp
917
+ }
918
+ return 0
919
+ }
920
+
921
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetObjectID() string {
922
+ if x != nil && x.ObjectID != nil {
923
+ return *x.ObjectID
924
+ }
925
+ return ""
926
+ }
927
+
928
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetThumbnailScansSidecar() []byte {
929
+ if x != nil {
930
+ return x.ThumbnailScansSidecar
931
+ }
932
+ return nil
933
+ }
934
+
935
+ func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetThumbnailScanLengths() []uint32 {
936
+ if x != nil {
937
+ return x.ThumbnailScanLengths
938
+ }
939
+ return nil
940
+ }
941
+
942
+ type ImageTransport_Ancillary struct {
943
+ state protoimpl.MessageState `protogen:"open.v1"`
944
+ Height *uint32 `protobuf:"varint,1,opt,name=height" json:"height,omitempty"`
945
+ Width *uint32 `protobuf:"varint,2,opt,name=width" json:"width,omitempty"`
946
+ ScansSidecar []byte `protobuf:"bytes,3,opt,name=scansSidecar" json:"scansSidecar,omitempty"`
947
+ ScanLengths []uint32 `protobuf:"varint,4,rep,name=scanLengths" json:"scanLengths,omitempty"`
948
+ MidQualityFileSHA256 []byte `protobuf:"bytes,5,opt,name=midQualityFileSHA256" json:"midQualityFileSHA256,omitempty"`
949
+ HdType *ImageTransport_Ancillary_HdType `protobuf:"varint,6,opt,name=hdType,enum=WAMediaTransport.ImageTransport_Ancillary_HdType" json:"hdType,omitempty"`
950
+ MemoriesConceptScores []float32 `protobuf:"fixed32,7,rep,packed,name=memoriesConceptScores" json:"memoriesConceptScores,omitempty"`
951
+ MemoriesConceptIDs []uint32 `protobuf:"varint,8,rep,packed,name=memoriesConceptIDs" json:"memoriesConceptIDs,omitempty"`
952
+ unknownFields protoimpl.UnknownFields
953
+ sizeCache protoimpl.SizeCache
954
+ }
955
+
956
+ func (x *ImageTransport_Ancillary) Reset() {
957
+ *x = ImageTransport_Ancillary{}
958
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[11]
959
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
960
+ ms.StoreMessageInfo(mi)
961
+ }
962
+
963
+ func (x *ImageTransport_Ancillary) String() string {
964
+ return protoimpl.X.MessageStringOf(x)
965
+ }
966
+
967
+ func (*ImageTransport_Ancillary) ProtoMessage() {}
968
+
969
+ func (x *ImageTransport_Ancillary) ProtoReflect() protoreflect.Message {
970
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[11]
971
+ if x != nil {
972
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
973
+ if ms.LoadMessageInfo() == nil {
974
+ ms.StoreMessageInfo(mi)
975
+ }
976
+ return ms
977
+ }
978
+ return mi.MessageOf(x)
979
+ }
980
+
981
+ // Deprecated: Use ImageTransport_Ancillary.ProtoReflect.Descriptor instead.
982
+ func (*ImageTransport_Ancillary) Descriptor() ([]byte, []int) {
983
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 0}
984
+ }
985
+
986
+ func (x *ImageTransport_Ancillary) GetHeight() uint32 {
987
+ if x != nil && x.Height != nil {
988
+ return *x.Height
989
+ }
990
+ return 0
991
+ }
992
+
993
+ func (x *ImageTransport_Ancillary) GetWidth() uint32 {
994
+ if x != nil && x.Width != nil {
995
+ return *x.Width
996
+ }
997
+ return 0
998
+ }
999
+
1000
+ func (x *ImageTransport_Ancillary) GetScansSidecar() []byte {
1001
+ if x != nil {
1002
+ return x.ScansSidecar
1003
+ }
1004
+ return nil
1005
+ }
1006
+
1007
+ func (x *ImageTransport_Ancillary) GetScanLengths() []uint32 {
1008
+ if x != nil {
1009
+ return x.ScanLengths
1010
+ }
1011
+ return nil
1012
+ }
1013
+
1014
+ func (x *ImageTransport_Ancillary) GetMidQualityFileSHA256() []byte {
1015
+ if x != nil {
1016
+ return x.MidQualityFileSHA256
1017
+ }
1018
+ return nil
1019
+ }
1020
+
1021
+ func (x *ImageTransport_Ancillary) GetHdType() ImageTransport_Ancillary_HdType {
1022
+ if x != nil && x.HdType != nil {
1023
+ return *x.HdType
1024
+ }
1025
+ return ImageTransport_Ancillary_NONE
1026
+ }
1027
+
1028
+ func (x *ImageTransport_Ancillary) GetMemoriesConceptScores() []float32 {
1029
+ if x != nil {
1030
+ return x.MemoriesConceptScores
1031
+ }
1032
+ return nil
1033
+ }
1034
+
1035
+ func (x *ImageTransport_Ancillary) GetMemoriesConceptIDs() []uint32 {
1036
+ if x != nil {
1037
+ return x.MemoriesConceptIDs
1038
+ }
1039
+ return nil
1040
+ }
1041
+
1042
+ type ImageTransport_Integral struct {
1043
+ state protoimpl.MessageState `protogen:"open.v1"`
1044
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1045
+ unknownFields protoimpl.UnknownFields
1046
+ sizeCache protoimpl.SizeCache
1047
+ }
1048
+
1049
+ func (x *ImageTransport_Integral) Reset() {
1050
+ *x = ImageTransport_Integral{}
1051
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[12]
1052
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1053
+ ms.StoreMessageInfo(mi)
1054
+ }
1055
+
1056
+ func (x *ImageTransport_Integral) String() string {
1057
+ return protoimpl.X.MessageStringOf(x)
1058
+ }
1059
+
1060
+ func (*ImageTransport_Integral) ProtoMessage() {}
1061
+
1062
+ func (x *ImageTransport_Integral) ProtoReflect() protoreflect.Message {
1063
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[12]
1064
+ if x != nil {
1065
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1066
+ if ms.LoadMessageInfo() == nil {
1067
+ ms.StoreMessageInfo(mi)
1068
+ }
1069
+ return ms
1070
+ }
1071
+ return mi.MessageOf(x)
1072
+ }
1073
+
1074
+ // Deprecated: Use ImageTransport_Integral.ProtoReflect.Descriptor instead.
1075
+ func (*ImageTransport_Integral) Descriptor() ([]byte, []int) {
1076
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 1}
1077
+ }
1078
+
1079
+ func (x *ImageTransport_Integral) GetTransport() *WAMediaTransport {
1080
+ if x != nil {
1081
+ return x.Transport
1082
+ }
1083
+ return nil
1084
+ }
1085
+
1086
+ type VideoTransport_Ancillary struct {
1087
+ state protoimpl.MessageState `protogen:"open.v1"`
1088
+ Seconds *uint32 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"`
1089
+ Caption *waCommon.MessageText `protobuf:"bytes,2,opt,name=caption" json:"caption,omitempty"`
1090
+ GifPlayback *bool `protobuf:"varint,3,opt,name=gifPlayback" json:"gifPlayback,omitempty"`
1091
+ Height *uint32 `protobuf:"varint,4,opt,name=height" json:"height,omitempty"`
1092
+ Width *uint32 `protobuf:"varint,5,opt,name=width" json:"width,omitempty"`
1093
+ Sidecar []byte `protobuf:"bytes,6,opt,name=sidecar" json:"sidecar,omitempty"`
1094
+ GifAttribution *VideoTransport_Ancillary_Attribution `protobuf:"varint,7,opt,name=gifAttribution,enum=WAMediaTransport.VideoTransport_Ancillary_Attribution" json:"gifAttribution,omitempty"`
1095
+ AccessibilityLabel *string `protobuf:"bytes,8,opt,name=accessibilityLabel" json:"accessibilityLabel,omitempty"`
1096
+ IsHd *bool `protobuf:"varint,9,opt,name=isHd" json:"isHd,omitempty"`
1097
+ unknownFields protoimpl.UnknownFields
1098
+ sizeCache protoimpl.SizeCache
1099
+ }
1100
+
1101
+ func (x *VideoTransport_Ancillary) Reset() {
1102
+ *x = VideoTransport_Ancillary{}
1103
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[13]
1104
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1105
+ ms.StoreMessageInfo(mi)
1106
+ }
1107
+
1108
+ func (x *VideoTransport_Ancillary) String() string {
1109
+ return protoimpl.X.MessageStringOf(x)
1110
+ }
1111
+
1112
+ func (*VideoTransport_Ancillary) ProtoMessage() {}
1113
+
1114
+ func (x *VideoTransport_Ancillary) ProtoReflect() protoreflect.Message {
1115
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[13]
1116
+ if x != nil {
1117
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1118
+ if ms.LoadMessageInfo() == nil {
1119
+ ms.StoreMessageInfo(mi)
1120
+ }
1121
+ return ms
1122
+ }
1123
+ return mi.MessageOf(x)
1124
+ }
1125
+
1126
+ // Deprecated: Use VideoTransport_Ancillary.ProtoReflect.Descriptor instead.
1127
+ func (*VideoTransport_Ancillary) Descriptor() ([]byte, []int) {
1128
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 0}
1129
+ }
1130
+
1131
+ func (x *VideoTransport_Ancillary) GetSeconds() uint32 {
1132
+ if x != nil && x.Seconds != nil {
1133
+ return *x.Seconds
1134
+ }
1135
+ return 0
1136
+ }
1137
+
1138
+ func (x *VideoTransport_Ancillary) GetCaption() *waCommon.MessageText {
1139
+ if x != nil {
1140
+ return x.Caption
1141
+ }
1142
+ return nil
1143
+ }
1144
+
1145
+ func (x *VideoTransport_Ancillary) GetGifPlayback() bool {
1146
+ if x != nil && x.GifPlayback != nil {
1147
+ return *x.GifPlayback
1148
+ }
1149
+ return false
1150
+ }
1151
+
1152
+ func (x *VideoTransport_Ancillary) GetHeight() uint32 {
1153
+ if x != nil && x.Height != nil {
1154
+ return *x.Height
1155
+ }
1156
+ return 0
1157
+ }
1158
+
1159
+ func (x *VideoTransport_Ancillary) GetWidth() uint32 {
1160
+ if x != nil && x.Width != nil {
1161
+ return *x.Width
1162
+ }
1163
+ return 0
1164
+ }
1165
+
1166
+ func (x *VideoTransport_Ancillary) GetSidecar() []byte {
1167
+ if x != nil {
1168
+ return x.Sidecar
1169
+ }
1170
+ return nil
1171
+ }
1172
+
1173
+ func (x *VideoTransport_Ancillary) GetGifAttribution() VideoTransport_Ancillary_Attribution {
1174
+ if x != nil && x.GifAttribution != nil {
1175
+ return *x.GifAttribution
1176
+ }
1177
+ return VideoTransport_Ancillary_NONE
1178
+ }
1179
+
1180
+ func (x *VideoTransport_Ancillary) GetAccessibilityLabel() string {
1181
+ if x != nil && x.AccessibilityLabel != nil {
1182
+ return *x.AccessibilityLabel
1183
+ }
1184
+ return ""
1185
+ }
1186
+
1187
+ func (x *VideoTransport_Ancillary) GetIsHd() bool {
1188
+ if x != nil && x.IsHd != nil {
1189
+ return *x.IsHd
1190
+ }
1191
+ return false
1192
+ }
1193
+
1194
+ type VideoTransport_Integral struct {
1195
+ state protoimpl.MessageState `protogen:"open.v1"`
1196
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1197
+ unknownFields protoimpl.UnknownFields
1198
+ sizeCache protoimpl.SizeCache
1199
+ }
1200
+
1201
+ func (x *VideoTransport_Integral) Reset() {
1202
+ *x = VideoTransport_Integral{}
1203
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[14]
1204
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1205
+ ms.StoreMessageInfo(mi)
1206
+ }
1207
+
1208
+ func (x *VideoTransport_Integral) String() string {
1209
+ return protoimpl.X.MessageStringOf(x)
1210
+ }
1211
+
1212
+ func (*VideoTransport_Integral) ProtoMessage() {}
1213
+
1214
+ func (x *VideoTransport_Integral) ProtoReflect() protoreflect.Message {
1215
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[14]
1216
+ if x != nil {
1217
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1218
+ if ms.LoadMessageInfo() == nil {
1219
+ ms.StoreMessageInfo(mi)
1220
+ }
1221
+ return ms
1222
+ }
1223
+ return mi.MessageOf(x)
1224
+ }
1225
+
1226
+ // Deprecated: Use VideoTransport_Integral.ProtoReflect.Descriptor instead.
1227
+ func (*VideoTransport_Integral) Descriptor() ([]byte, []int) {
1228
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 1}
1229
+ }
1230
+
1231
+ func (x *VideoTransport_Integral) GetTransport() *WAMediaTransport {
1232
+ if x != nil {
1233
+ return x.Transport
1234
+ }
1235
+ return nil
1236
+ }
1237
+
1238
+ type AudioTransport_Ancillary struct {
1239
+ state protoimpl.MessageState `protogen:"open.v1"`
1240
+ Seconds *uint32 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"`
1241
+ AvatarAudio *AudioTransport_Ancillary_AvatarAudio `protobuf:"bytes,2,opt,name=avatarAudio" json:"avatarAudio,omitempty"`
1242
+ unknownFields protoimpl.UnknownFields
1243
+ sizeCache protoimpl.SizeCache
1244
+ }
1245
+
1246
+ func (x *AudioTransport_Ancillary) Reset() {
1247
+ *x = AudioTransport_Ancillary{}
1248
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[15]
1249
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1250
+ ms.StoreMessageInfo(mi)
1251
+ }
1252
+
1253
+ func (x *AudioTransport_Ancillary) String() string {
1254
+ return protoimpl.X.MessageStringOf(x)
1255
+ }
1256
+
1257
+ func (*AudioTransport_Ancillary) ProtoMessage() {}
1258
+
1259
+ func (x *AudioTransport_Ancillary) ProtoReflect() protoreflect.Message {
1260
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[15]
1261
+ if x != nil {
1262
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1263
+ if ms.LoadMessageInfo() == nil {
1264
+ ms.StoreMessageInfo(mi)
1265
+ }
1266
+ return ms
1267
+ }
1268
+ return mi.MessageOf(x)
1269
+ }
1270
+
1271
+ // Deprecated: Use AudioTransport_Ancillary.ProtoReflect.Descriptor instead.
1272
+ func (*AudioTransport_Ancillary) Descriptor() ([]byte, []int) {
1273
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0}
1274
+ }
1275
+
1276
+ func (x *AudioTransport_Ancillary) GetSeconds() uint32 {
1277
+ if x != nil && x.Seconds != nil {
1278
+ return *x.Seconds
1279
+ }
1280
+ return 0
1281
+ }
1282
+
1283
+ func (x *AudioTransport_Ancillary) GetAvatarAudio() *AudioTransport_Ancillary_AvatarAudio {
1284
+ if x != nil {
1285
+ return x.AvatarAudio
1286
+ }
1287
+ return nil
1288
+ }
1289
+
1290
+ type AudioTransport_Integral struct {
1291
+ state protoimpl.MessageState `protogen:"open.v1"`
1292
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1293
+ AudioFormat *AudioTransport_Integral_AudioFormat `protobuf:"varint,2,opt,name=audioFormat,enum=WAMediaTransport.AudioTransport_Integral_AudioFormat" json:"audioFormat,omitempty"`
1294
+ unknownFields protoimpl.UnknownFields
1295
+ sizeCache protoimpl.SizeCache
1296
+ }
1297
+
1298
+ func (x *AudioTransport_Integral) Reset() {
1299
+ *x = AudioTransport_Integral{}
1300
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[16]
1301
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1302
+ ms.StoreMessageInfo(mi)
1303
+ }
1304
+
1305
+ func (x *AudioTransport_Integral) String() string {
1306
+ return protoimpl.X.MessageStringOf(x)
1307
+ }
1308
+
1309
+ func (*AudioTransport_Integral) ProtoMessage() {}
1310
+
1311
+ func (x *AudioTransport_Integral) ProtoReflect() protoreflect.Message {
1312
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[16]
1313
+ if x != nil {
1314
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1315
+ if ms.LoadMessageInfo() == nil {
1316
+ ms.StoreMessageInfo(mi)
1317
+ }
1318
+ return ms
1319
+ }
1320
+ return mi.MessageOf(x)
1321
+ }
1322
+
1323
+ // Deprecated: Use AudioTransport_Integral.ProtoReflect.Descriptor instead.
1324
+ func (*AudioTransport_Integral) Descriptor() ([]byte, []int) {
1325
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 1}
1326
+ }
1327
+
1328
+ func (x *AudioTransport_Integral) GetTransport() *WAMediaTransport {
1329
+ if x != nil {
1330
+ return x.Transport
1331
+ }
1332
+ return nil
1333
+ }
1334
+
1335
+ func (x *AudioTransport_Integral) GetAudioFormat() AudioTransport_Integral_AudioFormat {
1336
+ if x != nil && x.AudioFormat != nil {
1337
+ return *x.AudioFormat
1338
+ }
1339
+ return AudioTransport_Integral_UNKNOWN
1340
+ }
1341
+
1342
+ type AudioTransport_Ancillary_AvatarAudio struct {
1343
+ state protoimpl.MessageState `protogen:"open.v1"`
1344
+ PoseID *uint32 `protobuf:"varint,1,opt,name=poseID" json:"poseID,omitempty"`
1345
+ AvatarAnimations []*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations `protobuf:"bytes,2,rep,name=avatarAnimations" json:"avatarAnimations,omitempty"`
1346
+ unknownFields protoimpl.UnknownFields
1347
+ sizeCache protoimpl.SizeCache
1348
+ }
1349
+
1350
+ func (x *AudioTransport_Ancillary_AvatarAudio) Reset() {
1351
+ *x = AudioTransport_Ancillary_AvatarAudio{}
1352
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[17]
1353
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1354
+ ms.StoreMessageInfo(mi)
1355
+ }
1356
+
1357
+ func (x *AudioTransport_Ancillary_AvatarAudio) String() string {
1358
+ return protoimpl.X.MessageStringOf(x)
1359
+ }
1360
+
1361
+ func (*AudioTransport_Ancillary_AvatarAudio) ProtoMessage() {}
1362
+
1363
+ func (x *AudioTransport_Ancillary_AvatarAudio) ProtoReflect() protoreflect.Message {
1364
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[17]
1365
+ if x != nil {
1366
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1367
+ if ms.LoadMessageInfo() == nil {
1368
+ ms.StoreMessageInfo(mi)
1369
+ }
1370
+ return ms
1371
+ }
1372
+ return mi.MessageOf(x)
1373
+ }
1374
+
1375
+ // Deprecated: Use AudioTransport_Ancillary_AvatarAudio.ProtoReflect.Descriptor instead.
1376
+ func (*AudioTransport_Ancillary_AvatarAudio) Descriptor() ([]byte, []int) {
1377
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0}
1378
+ }
1379
+
1380
+ func (x *AudioTransport_Ancillary_AvatarAudio) GetPoseID() uint32 {
1381
+ if x != nil && x.PoseID != nil {
1382
+ return *x.PoseID
1383
+ }
1384
+ return 0
1385
+ }
1386
+
1387
+ func (x *AudioTransport_Ancillary_AvatarAudio) GetAvatarAnimations() []*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations {
1388
+ if x != nil {
1389
+ return x.AvatarAnimations
1390
+ }
1391
+ return nil
1392
+ }
1393
+
1394
+ type AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations struct {
1395
+ state protoimpl.MessageState `protogen:"open.v1"`
1396
+ FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
1397
+ FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
1398
+ DirectPath *string `protobuf:"bytes,3,opt,name=directPath" json:"directPath,omitempty"`
1399
+ MediaKey []byte `protobuf:"bytes,4,opt,name=mediaKey" json:"mediaKey,omitempty"`
1400
+ MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
1401
+ ObjectID *string `protobuf:"bytes,6,opt,name=objectID" json:"objectID,omitempty"`
1402
+ AnimationsType *AudioTransport_Ancillary_AvatarAudio_AnimationsType `protobuf:"varint,7,opt,name=animationsType,enum=WAMediaTransport.AudioTransport_Ancillary_AvatarAudio_AnimationsType" json:"animationsType,omitempty"`
1403
+ unknownFields protoimpl.UnknownFields
1404
+ sizeCache protoimpl.SizeCache
1405
+ }
1406
+
1407
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) Reset() {
1408
+ *x = AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations{}
1409
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[18]
1410
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1411
+ ms.StoreMessageInfo(mi)
1412
+ }
1413
+
1414
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) String() string {
1415
+ return protoimpl.X.MessageStringOf(x)
1416
+ }
1417
+
1418
+ func (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) ProtoMessage() {}
1419
+
1420
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) ProtoReflect() protoreflect.Message {
1421
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[18]
1422
+ if x != nil {
1423
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1424
+ if ms.LoadMessageInfo() == nil {
1425
+ ms.StoreMessageInfo(mi)
1426
+ }
1427
+ return ms
1428
+ }
1429
+ return mi.MessageOf(x)
1430
+ }
1431
+
1432
+ // Deprecated: Use AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations.ProtoReflect.Descriptor instead.
1433
+ func (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) Descriptor() ([]byte, []int) {
1434
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0, 0}
1435
+ }
1436
+
1437
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetFileSHA256() []byte {
1438
+ if x != nil {
1439
+ return x.FileSHA256
1440
+ }
1441
+ return nil
1442
+ }
1443
+
1444
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetFileEncSHA256() []byte {
1445
+ if x != nil {
1446
+ return x.FileEncSHA256
1447
+ }
1448
+ return nil
1449
+ }
1450
+
1451
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetDirectPath() string {
1452
+ if x != nil && x.DirectPath != nil {
1453
+ return *x.DirectPath
1454
+ }
1455
+ return ""
1456
+ }
1457
+
1458
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetMediaKey() []byte {
1459
+ if x != nil {
1460
+ return x.MediaKey
1461
+ }
1462
+ return nil
1463
+ }
1464
+
1465
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetMediaKeyTimestamp() int64 {
1466
+ if x != nil && x.MediaKeyTimestamp != nil {
1467
+ return *x.MediaKeyTimestamp
1468
+ }
1469
+ return 0
1470
+ }
1471
+
1472
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetObjectID() string {
1473
+ if x != nil && x.ObjectID != nil {
1474
+ return *x.ObjectID
1475
+ }
1476
+ return ""
1477
+ }
1478
+
1479
+ func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetAnimationsType() AudioTransport_Ancillary_AvatarAudio_AnimationsType {
1480
+ if x != nil && x.AnimationsType != nil {
1481
+ return *x.AnimationsType
1482
+ }
1483
+ return AudioTransport_Ancillary_AvatarAudio_TALKING_A
1484
+ }
1485
+
1486
+ type DocumentTransport_Ancillary struct {
1487
+ state protoimpl.MessageState `protogen:"open.v1"`
1488
+ PageCount *uint32 `protobuf:"varint,1,opt,name=pageCount" json:"pageCount,omitempty"`
1489
+ unknownFields protoimpl.UnknownFields
1490
+ sizeCache protoimpl.SizeCache
1491
+ }
1492
+
1493
+ func (x *DocumentTransport_Ancillary) Reset() {
1494
+ *x = DocumentTransport_Ancillary{}
1495
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[19]
1496
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1497
+ ms.StoreMessageInfo(mi)
1498
+ }
1499
+
1500
+ func (x *DocumentTransport_Ancillary) String() string {
1501
+ return protoimpl.X.MessageStringOf(x)
1502
+ }
1503
+
1504
+ func (*DocumentTransport_Ancillary) ProtoMessage() {}
1505
+
1506
+ func (x *DocumentTransport_Ancillary) ProtoReflect() protoreflect.Message {
1507
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[19]
1508
+ if x != nil {
1509
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1510
+ if ms.LoadMessageInfo() == nil {
1511
+ ms.StoreMessageInfo(mi)
1512
+ }
1513
+ return ms
1514
+ }
1515
+ return mi.MessageOf(x)
1516
+ }
1517
+
1518
+ // Deprecated: Use DocumentTransport_Ancillary.ProtoReflect.Descriptor instead.
1519
+ func (*DocumentTransport_Ancillary) Descriptor() ([]byte, []int) {
1520
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4, 0}
1521
+ }
1522
+
1523
+ func (x *DocumentTransport_Ancillary) GetPageCount() uint32 {
1524
+ if x != nil && x.PageCount != nil {
1525
+ return *x.PageCount
1526
+ }
1527
+ return 0
1528
+ }
1529
+
1530
+ type DocumentTransport_Integral struct {
1531
+ state protoimpl.MessageState `protogen:"open.v1"`
1532
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1533
+ unknownFields protoimpl.UnknownFields
1534
+ sizeCache protoimpl.SizeCache
1535
+ }
1536
+
1537
+ func (x *DocumentTransport_Integral) Reset() {
1538
+ *x = DocumentTransport_Integral{}
1539
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[20]
1540
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1541
+ ms.StoreMessageInfo(mi)
1542
+ }
1543
+
1544
+ func (x *DocumentTransport_Integral) String() string {
1545
+ return protoimpl.X.MessageStringOf(x)
1546
+ }
1547
+
1548
+ func (*DocumentTransport_Integral) ProtoMessage() {}
1549
+
1550
+ func (x *DocumentTransport_Integral) ProtoReflect() protoreflect.Message {
1551
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[20]
1552
+ if x != nil {
1553
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1554
+ if ms.LoadMessageInfo() == nil {
1555
+ ms.StoreMessageInfo(mi)
1556
+ }
1557
+ return ms
1558
+ }
1559
+ return mi.MessageOf(x)
1560
+ }
1561
+
1562
+ // Deprecated: Use DocumentTransport_Integral.ProtoReflect.Descriptor instead.
1563
+ func (*DocumentTransport_Integral) Descriptor() ([]byte, []int) {
1564
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4, 1}
1565
+ }
1566
+
1567
+ func (x *DocumentTransport_Integral) GetTransport() *WAMediaTransport {
1568
+ if x != nil {
1569
+ return x.Transport
1570
+ }
1571
+ return nil
1572
+ }
1573
+
1574
+ type StickerTransport_Ancillary struct {
1575
+ state protoimpl.MessageState `protogen:"open.v1"`
1576
+ PageCount *uint32 `protobuf:"varint,1,opt,name=pageCount" json:"pageCount,omitempty"`
1577
+ Height *uint32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
1578
+ Width *uint32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
1579
+ FirstFrameLength *uint32 `protobuf:"varint,4,opt,name=firstFrameLength" json:"firstFrameLength,omitempty"`
1580
+ FirstFrameSidecar []byte `protobuf:"bytes,5,opt,name=firstFrameSidecar" json:"firstFrameSidecar,omitempty"`
1581
+ MustacheText *string `protobuf:"bytes,6,opt,name=mustacheText" json:"mustacheText,omitempty"`
1582
+ IsThirdParty *bool `protobuf:"varint,7,opt,name=isThirdParty" json:"isThirdParty,omitempty"`
1583
+ ReceiverFetchID *string `protobuf:"bytes,8,opt,name=receiverFetchID" json:"receiverFetchID,omitempty"`
1584
+ AccessibilityLabel *string `protobuf:"bytes,9,opt,name=accessibilityLabel" json:"accessibilityLabel,omitempty"`
1585
+ unknownFields protoimpl.UnknownFields
1586
+ sizeCache protoimpl.SizeCache
1587
+ }
1588
+
1589
+ func (x *StickerTransport_Ancillary) Reset() {
1590
+ *x = StickerTransport_Ancillary{}
1591
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[21]
1592
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1593
+ ms.StoreMessageInfo(mi)
1594
+ }
1595
+
1596
+ func (x *StickerTransport_Ancillary) String() string {
1597
+ return protoimpl.X.MessageStringOf(x)
1598
+ }
1599
+
1600
+ func (*StickerTransport_Ancillary) ProtoMessage() {}
1601
+
1602
+ func (x *StickerTransport_Ancillary) ProtoReflect() protoreflect.Message {
1603
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[21]
1604
+ if x != nil {
1605
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1606
+ if ms.LoadMessageInfo() == nil {
1607
+ ms.StoreMessageInfo(mi)
1608
+ }
1609
+ return ms
1610
+ }
1611
+ return mi.MessageOf(x)
1612
+ }
1613
+
1614
+ // Deprecated: Use StickerTransport_Ancillary.ProtoReflect.Descriptor instead.
1615
+ func (*StickerTransport_Ancillary) Descriptor() ([]byte, []int) {
1616
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5, 0}
1617
+ }
1618
+
1619
+ func (x *StickerTransport_Ancillary) GetPageCount() uint32 {
1620
+ if x != nil && x.PageCount != nil {
1621
+ return *x.PageCount
1622
+ }
1623
+ return 0
1624
+ }
1625
+
1626
+ func (x *StickerTransport_Ancillary) GetHeight() uint32 {
1627
+ if x != nil && x.Height != nil {
1628
+ return *x.Height
1629
+ }
1630
+ return 0
1631
+ }
1632
+
1633
+ func (x *StickerTransport_Ancillary) GetWidth() uint32 {
1634
+ if x != nil && x.Width != nil {
1635
+ return *x.Width
1636
+ }
1637
+ return 0
1638
+ }
1639
+
1640
+ func (x *StickerTransport_Ancillary) GetFirstFrameLength() uint32 {
1641
+ if x != nil && x.FirstFrameLength != nil {
1642
+ return *x.FirstFrameLength
1643
+ }
1644
+ return 0
1645
+ }
1646
+
1647
+ func (x *StickerTransport_Ancillary) GetFirstFrameSidecar() []byte {
1648
+ if x != nil {
1649
+ return x.FirstFrameSidecar
1650
+ }
1651
+ return nil
1652
+ }
1653
+
1654
+ func (x *StickerTransport_Ancillary) GetMustacheText() string {
1655
+ if x != nil && x.MustacheText != nil {
1656
+ return *x.MustacheText
1657
+ }
1658
+ return ""
1659
+ }
1660
+
1661
+ func (x *StickerTransport_Ancillary) GetIsThirdParty() bool {
1662
+ if x != nil && x.IsThirdParty != nil {
1663
+ return *x.IsThirdParty
1664
+ }
1665
+ return false
1666
+ }
1667
+
1668
+ func (x *StickerTransport_Ancillary) GetReceiverFetchID() string {
1669
+ if x != nil && x.ReceiverFetchID != nil {
1670
+ return *x.ReceiverFetchID
1671
+ }
1672
+ return ""
1673
+ }
1674
+
1675
+ func (x *StickerTransport_Ancillary) GetAccessibilityLabel() string {
1676
+ if x != nil && x.AccessibilityLabel != nil {
1677
+ return *x.AccessibilityLabel
1678
+ }
1679
+ return ""
1680
+ }
1681
+
1682
+ type StickerTransport_Integral struct {
1683
+ state protoimpl.MessageState `protogen:"open.v1"`
1684
+ Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
1685
+ IsAnimated *bool `protobuf:"varint,2,opt,name=isAnimated" json:"isAnimated,omitempty"`
1686
+ ReceiverFetchID *string `protobuf:"bytes,3,opt,name=receiverFetchID" json:"receiverFetchID,omitempty"`
1687
+ unknownFields protoimpl.UnknownFields
1688
+ sizeCache protoimpl.SizeCache
1689
+ }
1690
+
1691
+ func (x *StickerTransport_Integral) Reset() {
1692
+ *x = StickerTransport_Integral{}
1693
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[22]
1694
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1695
+ ms.StoreMessageInfo(mi)
1696
+ }
1697
+
1698
+ func (x *StickerTransport_Integral) String() string {
1699
+ return protoimpl.X.MessageStringOf(x)
1700
+ }
1701
+
1702
+ func (*StickerTransport_Integral) ProtoMessage() {}
1703
+
1704
+ func (x *StickerTransport_Integral) ProtoReflect() protoreflect.Message {
1705
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[22]
1706
+ if x != nil {
1707
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1708
+ if ms.LoadMessageInfo() == nil {
1709
+ ms.StoreMessageInfo(mi)
1710
+ }
1711
+ return ms
1712
+ }
1713
+ return mi.MessageOf(x)
1714
+ }
1715
+
1716
+ // Deprecated: Use StickerTransport_Integral.ProtoReflect.Descriptor instead.
1717
+ func (*StickerTransport_Integral) Descriptor() ([]byte, []int) {
1718
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5, 1}
1719
+ }
1720
+
1721
+ func (x *StickerTransport_Integral) GetTransport() *WAMediaTransport {
1722
+ if x != nil {
1723
+ return x.Transport
1724
+ }
1725
+ return nil
1726
+ }
1727
+
1728
+ func (x *StickerTransport_Integral) GetIsAnimated() bool {
1729
+ if x != nil && x.IsAnimated != nil {
1730
+ return *x.IsAnimated
1731
+ }
1732
+ return false
1733
+ }
1734
+
1735
+ func (x *StickerTransport_Integral) GetReceiverFetchID() string {
1736
+ if x != nil && x.ReceiverFetchID != nil {
1737
+ return *x.ReceiverFetchID
1738
+ }
1739
+ return ""
1740
+ }
1741
+
1742
+ type ContactTransport_Ancillary struct {
1743
+ state protoimpl.MessageState `protogen:"open.v1"`
1744
+ DisplayName *string `protobuf:"bytes,1,opt,name=displayName" json:"displayName,omitempty"`
1745
+ unknownFields protoimpl.UnknownFields
1746
+ sizeCache protoimpl.SizeCache
1747
+ }
1748
+
1749
+ func (x *ContactTransport_Ancillary) Reset() {
1750
+ *x = ContactTransport_Ancillary{}
1751
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[23]
1752
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1753
+ ms.StoreMessageInfo(mi)
1754
+ }
1755
+
1756
+ func (x *ContactTransport_Ancillary) String() string {
1757
+ return protoimpl.X.MessageStringOf(x)
1758
+ }
1759
+
1760
+ func (*ContactTransport_Ancillary) ProtoMessage() {}
1761
+
1762
+ func (x *ContactTransport_Ancillary) ProtoReflect() protoreflect.Message {
1763
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[23]
1764
+ if x != nil {
1765
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1766
+ if ms.LoadMessageInfo() == nil {
1767
+ ms.StoreMessageInfo(mi)
1768
+ }
1769
+ return ms
1770
+ }
1771
+ return mi.MessageOf(x)
1772
+ }
1773
+
1774
+ // Deprecated: Use ContactTransport_Ancillary.ProtoReflect.Descriptor instead.
1775
+ func (*ContactTransport_Ancillary) Descriptor() ([]byte, []int) {
1776
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6, 0}
1777
+ }
1778
+
1779
+ func (x *ContactTransport_Ancillary) GetDisplayName() string {
1780
+ if x != nil && x.DisplayName != nil {
1781
+ return *x.DisplayName
1782
+ }
1783
+ return ""
1784
+ }
1785
+
1786
+ type ContactTransport_Integral struct {
1787
+ state protoimpl.MessageState `protogen:"open.v1"`
1788
+ // Types that are valid to be assigned to Contact:
1789
+ //
1790
+ // *ContactTransport_Integral_Vcard
1791
+ // *ContactTransport_Integral_DownloadableVcard
1792
+ Contact isContactTransport_Integral_Contact `protobuf_oneof:"contact"`
1793
+ unknownFields protoimpl.UnknownFields
1794
+ sizeCache protoimpl.SizeCache
1795
+ }
1796
+
1797
+ func (x *ContactTransport_Integral) Reset() {
1798
+ *x = ContactTransport_Integral{}
1799
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[24]
1800
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1801
+ ms.StoreMessageInfo(mi)
1802
+ }
1803
+
1804
+ func (x *ContactTransport_Integral) String() string {
1805
+ return protoimpl.X.MessageStringOf(x)
1806
+ }
1807
+
1808
+ func (*ContactTransport_Integral) ProtoMessage() {}
1809
+
1810
+ func (x *ContactTransport_Integral) ProtoReflect() protoreflect.Message {
1811
+ mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[24]
1812
+ if x != nil {
1813
+ ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
1814
+ if ms.LoadMessageInfo() == nil {
1815
+ ms.StoreMessageInfo(mi)
1816
+ }
1817
+ return ms
1818
+ }
1819
+ return mi.MessageOf(x)
1820
+ }
1821
+
1822
+ // Deprecated: Use ContactTransport_Integral.ProtoReflect.Descriptor instead.
1823
+ func (*ContactTransport_Integral) Descriptor() ([]byte, []int) {
1824
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6, 1}
1825
+ }
1826
+
1827
+ func (x *ContactTransport_Integral) GetContact() isContactTransport_Integral_Contact {
1828
+ if x != nil {
1829
+ return x.Contact
1830
+ }
1831
+ return nil
1832
+ }
1833
+
1834
+ func (x *ContactTransport_Integral) GetVcard() string {
1835
+ if x != nil {
1836
+ if x, ok := x.Contact.(*ContactTransport_Integral_Vcard); ok {
1837
+ return x.Vcard
1838
+ }
1839
+ }
1840
+ return ""
1841
+ }
1842
+
1843
+ func (x *ContactTransport_Integral) GetDownloadableVcard() *WAMediaTransport {
1844
+ if x != nil {
1845
+ if x, ok := x.Contact.(*ContactTransport_Integral_DownloadableVcard); ok {
1846
+ return x.DownloadableVcard
1847
+ }
1848
+ }
1849
+ return nil
1850
+ }
1851
+
1852
+ type isContactTransport_Integral_Contact interface {
1853
+ isContactTransport_Integral_Contact()
1854
+ }
1855
+
1856
+ type ContactTransport_Integral_Vcard struct {
1857
+ Vcard string `protobuf:"bytes,1,opt,name=vcard,oneof"`
1858
+ }
1859
+
1860
+ type ContactTransport_Integral_DownloadableVcard struct {
1861
+ DownloadableVcard *WAMediaTransport `protobuf:"bytes,2,opt,name=downloadableVcard,oneof"`
1862
+ }
1863
+
1864
+ func (*ContactTransport_Integral_Vcard) isContactTransport_Integral_Contact() {}
1865
+
1866
+ func (*ContactTransport_Integral_DownloadableVcard) isContactTransport_Integral_Contact() {}
1867
+
1868
+ var File_waMediaTransport_WAMediaTransport_proto protoreflect.FileDescriptor
1869
+
1870
+ const file_waMediaTransport_WAMediaTransport_proto_rawDesc = "" +
1871
+ "\n" +
1872
+ "'waMediaTransport/WAMediaTransport.proto\x12\x10WAMediaTransport\x1a\x17waCommon/WACommon.proto\"\xfb\b\n" +
1873
+ "\x10WAMediaTransport\x12G\n" +
1874
+ "\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.WAMediaTransport.IntegralR\bintegral\x12J\n" +
1875
+ "\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.WAMediaTransport.AncillaryR\tancillary\x1a\x94\x06\n" +
1876
+ "\tAncillary\x12\x1e\n" +
1877
+ "\n" +
1878
+ "fileLength\x18\x01 \x01(\x04R\n" +
1879
+ "fileLength\x12\x1a\n" +
1880
+ "\bmimetype\x18\x02 \x01(\tR\bmimetype\x12T\n" +
1881
+ "\tthumbnail\x18\x03 \x01(\v26.WAMediaTransport.WAMediaTransport.Ancillary.ThumbnailR\tthumbnail\x12\x1a\n" +
1882
+ "\bobjectID\x18\x04 \x01(\tR\bobjectID\x1a\xd8\x04\n" +
1883
+ "\tThumbnail\x12$\n" +
1884
+ "\rJPEGThumbnail\x18\x01 \x01(\fR\rJPEGThumbnail\x12\x82\x01\n" +
1885
+ "\x15downloadableThumbnail\x18\x02 \x01(\v2L.WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnailR\x15downloadableThumbnail\x12&\n" +
1886
+ "\x0ethumbnailWidth\x18\x03 \x01(\rR\x0ethumbnailWidth\x12(\n" +
1887
+ "\x0fthumbnailHeight\x18\x04 \x01(\rR\x0fthumbnailHeight\x1a\xcd\x02\n" +
1888
+ "\x15DownloadableThumbnail\x12\x1e\n" +
1889
+ "\n" +
1890
+ "fileSHA256\x18\x01 \x01(\fR\n" +
1891
+ "fileSHA256\x12$\n" +
1892
+ "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
1893
+ "\n" +
1894
+ "directPath\x18\x03 \x01(\tR\n" +
1895
+ "directPath\x12\x1a\n" +
1896
+ "\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12,\n" +
1897
+ "\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\x12\x1a\n" +
1898
+ "\bobjectID\x18\x06 \x01(\tR\bobjectID\x124\n" +
1899
+ "\x15thumbnailScansSidecar\x18\a \x01(\fR\x15thumbnailScansSidecar\x122\n" +
1900
+ "\x14thumbnailScanLengths\x18\b \x03(\rR\x14thumbnailScanLengths\x1a\xba\x01\n" +
1901
+ "\bIntegral\x12\x1e\n" +
1902
+ "\n" +
1903
+ "fileSHA256\x18\x01 \x01(\fR\n" +
1904
+ "fileSHA256\x12\x1a\n" +
1905
+ "\bmediaKey\x18\x02 \x01(\fR\bmediaKey\x12$\n" +
1906
+ "\rfileEncSHA256\x18\x03 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
1907
+ "\n" +
1908
+ "directPath\x18\x04 \x01(\tR\n" +
1909
+ "directPath\x12,\n" +
1910
+ "\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\"\x88\x05\n" +
1911
+ "\x0eImageTransport\x12E\n" +
1912
+ "\bintegral\x18\x01 \x01(\v2).WAMediaTransport.ImageTransport.IntegralR\bintegral\x12H\n" +
1913
+ "\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.ImageTransport.AncillaryR\tancillary\x1a\x96\x03\n" +
1914
+ "\tAncillary\x12\x16\n" +
1915
+ "\x06height\x18\x01 \x01(\rR\x06height\x12\x14\n" +
1916
+ "\x05width\x18\x02 \x01(\rR\x05width\x12\"\n" +
1917
+ "\fscansSidecar\x18\x03 \x01(\fR\fscansSidecar\x12 \n" +
1918
+ "\vscanLengths\x18\x04 \x03(\rR\vscanLengths\x122\n" +
1919
+ "\x14midQualityFileSHA256\x18\x05 \x01(\fR\x14midQualityFileSHA256\x12I\n" +
1920
+ "\x06hdType\x18\x06 \x01(\x0e21.WAMediaTransport.ImageTransport.Ancillary.HdTypeR\x06hdType\x128\n" +
1921
+ "\x15memoriesConceptScores\x18\a \x03(\x02B\x02\x10\x01R\x15memoriesConceptScores\x122\n" +
1922
+ "\x12memoriesConceptIDs\x18\b \x03(\rB\x02\x10\x01R\x12memoriesConceptIDs\"(\n" +
1923
+ "\x06HdType\x12\b\n" +
1924
+ "\x04NONE\x10\x00\x12\t\n" +
1925
+ "\x05LQ_4K\x10\x01\x12\t\n" +
1926
+ "\x05HQ_4K\x10\x02\x1aL\n" +
1927
+ "\bIntegral\x12@\n" +
1928
+ "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\x85\x05\n" +
1929
+ "\x0eVideoTransport\x12E\n" +
1930
+ "\bintegral\x18\x01 \x01(\v2).WAMediaTransport.VideoTransport.IntegralR\bintegral\x12H\n" +
1931
+ "\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.VideoTransport.AncillaryR\tancillary\x1a\x93\x03\n" +
1932
+ "\tAncillary\x12\x18\n" +
1933
+ "\aseconds\x18\x01 \x01(\rR\aseconds\x12/\n" +
1934
+ "\acaption\x18\x02 \x01(\v2\x15.WACommon.MessageTextR\acaption\x12 \n" +
1935
+ "\vgifPlayback\x18\x03 \x01(\bR\vgifPlayback\x12\x16\n" +
1936
+ "\x06height\x18\x04 \x01(\rR\x06height\x12\x14\n" +
1937
+ "\x05width\x18\x05 \x01(\rR\x05width\x12\x18\n" +
1938
+ "\asidecar\x18\x06 \x01(\fR\asidecar\x12^\n" +
1939
+ "\x0egifAttribution\x18\a \x01(\x0e26.WAMediaTransport.VideoTransport.Ancillary.AttributionR\x0egifAttribution\x12.\n" +
1940
+ "\x12accessibilityLabel\x18\b \x01(\tR\x12accessibilityLabel\x12\x12\n" +
1941
+ "\x04isHd\x18\t \x01(\bR\x04isHd\"-\n" +
1942
+ "\vAttribution\x12\b\n" +
1943
+ "\x04NONE\x10\x00\x12\t\n" +
1944
+ "\x05GIPHY\x10\x01\x12\t\n" +
1945
+ "\x05TENOR\x10\x02\x1aL\n" +
1946
+ "\bIntegral\x12@\n" +
1947
+ "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\xce\b\n" +
1948
+ "\x0eAudioTransport\x12E\n" +
1949
+ "\bintegral\x18\x01 \x01(\v2).WAMediaTransport.AudioTransport.IntegralR\bintegral\x12H\n" +
1950
+ "\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.AudioTransport.AncillaryR\tancillary\x1a\xdc\x05\n" +
1951
+ "\tAncillary\x12\x18\n" +
1952
+ "\aseconds\x18\x01 \x01(\rR\aseconds\x12X\n" +
1953
+ "\vavatarAudio\x18\x02 \x01(\v26.WAMediaTransport.AudioTransport.Ancillary.AvatarAudioR\vavatarAudio\x1a\xda\x04\n" +
1954
+ "\vAvatarAudio\x12\x16\n" +
1955
+ "\x06poseID\x18\x01 \x01(\rR\x06poseID\x12\x7f\n" +
1956
+ "\x10avatarAnimations\x18\x02 \x03(\v2S.WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimationsR\x10avatarAnimations\x1a\xd9\x02\n" +
1957
+ "\x1cDownloadableAvatarAnimations\x12\x1e\n" +
1958
+ "\n" +
1959
+ "fileSHA256\x18\x01 \x01(\fR\n" +
1960
+ "fileSHA256\x12$\n" +
1961
+ "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
1962
+ "\n" +
1963
+ "directPath\x18\x03 \x01(\tR\n" +
1964
+ "directPath\x12\x1a\n" +
1965
+ "\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12,\n" +
1966
+ "\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\x12\x1a\n" +
1967
+ "\bobjectID\x18\x06 \x01(\tR\bobjectID\x12m\n" +
1968
+ "\x0eanimationsType\x18\a \x01(\x0e2E.WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsTypeR\x0eanimationsType\"V\n" +
1969
+ "\x0eAnimationsType\x12\r\n" +
1970
+ "\tTALKING_A\x10\x00\x12\n" +
1971
+ "\n" +
1972
+ "\x06IDLE_A\x10\x01\x12\r\n" +
1973
+ "\tTALKING_B\x10\x02\x12\n" +
1974
+ "\n" +
1975
+ "\x06IDLE_B\x10\x03\x12\x0e\n" +
1976
+ "\n" +
1977
+ "BACKGROUND\x10\x04\x1a\xcb\x01\n" +
1978
+ "\bIntegral\x12@\n" +
1979
+ "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\x12W\n" +
1980
+ "\vaudioFormat\x18\x02 \x01(\x0e25.WAMediaTransport.AudioTransport.Integral.AudioFormatR\vaudioFormat\"$\n" +
1981
+ "\vAudioFormat\x12\v\n" +
1982
+ "\aUNKNOWN\x10\x00\x12\b\n" +
1983
+ "\x04OPUS\x10\x01\"\xa3\x02\n" +
1984
+ "\x11DocumentTransport\x12H\n" +
1985
+ "\bintegral\x18\x01 \x01(\v2,.WAMediaTransport.DocumentTransport.IntegralR\bintegral\x12K\n" +
1986
+ "\tancillary\x18\x02 \x01(\v2-.WAMediaTransport.DocumentTransport.AncillaryR\tancillary\x1a)\n" +
1987
+ "\tAncillary\x12\x1c\n" +
1988
+ "\tpageCount\x18\x01 \x01(\rR\tpageCount\x1aL\n" +
1989
+ "\bIntegral\x12@\n" +
1990
+ "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\x96\x05\n" +
1991
+ "\x10StickerTransport\x12G\n" +
1992
+ "\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.StickerTransport.IntegralR\bintegral\x12J\n" +
1993
+ "\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.StickerTransport.AncillaryR\tancillary\x1a\xd3\x02\n" +
1994
+ "\tAncillary\x12\x1c\n" +
1995
+ "\tpageCount\x18\x01 \x01(\rR\tpageCount\x12\x16\n" +
1996
+ "\x06height\x18\x02 \x01(\rR\x06height\x12\x14\n" +
1997
+ "\x05width\x18\x03 \x01(\rR\x05width\x12*\n" +
1998
+ "\x10firstFrameLength\x18\x04 \x01(\rR\x10firstFrameLength\x12,\n" +
1999
+ "\x11firstFrameSidecar\x18\x05 \x01(\fR\x11firstFrameSidecar\x12\"\n" +
2000
+ "\fmustacheText\x18\x06 \x01(\tR\fmustacheText\x12\"\n" +
2001
+ "\fisThirdParty\x18\a \x01(\bR\fisThirdParty\x12(\n" +
2002
+ "\x0freceiverFetchID\x18\b \x01(\tR\x0freceiverFetchID\x12.\n" +
2003
+ "\x12accessibilityLabel\x18\t \x01(\tR\x12accessibilityLabel\x1a\x96\x01\n" +
2004
+ "\bIntegral\x12@\n" +
2005
+ "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\x12\x1e\n" +
2006
+ "\n" +
2007
+ "isAnimated\x18\x02 \x01(\bR\n" +
2008
+ "isAnimated\x12(\n" +
2009
+ "\x0freceiverFetchID\x18\x03 \x01(\tR\x0freceiverFetchID\"\xda\x02\n" +
2010
+ "\x10ContactTransport\x12G\n" +
2011
+ "\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.ContactTransport.IntegralR\bintegral\x12J\n" +
2012
+ "\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.ContactTransport.AncillaryR\tancillary\x1a-\n" +
2013
+ "\tAncillary\x12 \n" +
2014
+ "\vdisplayName\x18\x01 \x01(\tR\vdisplayName\x1a\x81\x01\n" +
2015
+ "\bIntegral\x12\x16\n" +
2016
+ "\x05vcard\x18\x01 \x01(\tH\x00R\x05vcard\x12R\n" +
2017
+ "\x11downloadableVcard\x18\x02 \x01(\v2\".WAMediaTransport.WAMediaTransportH\x00R\x11downloadableVcardB\t\n" +
2018
+ "\acontactB,Z*go.mau.fi/whatsmeow/proto/waMediaTransport"
2019
+
2020
+ var (
2021
+ file_waMediaTransport_WAMediaTransport_proto_rawDescOnce sync.Once
2022
+ file_waMediaTransport_WAMediaTransport_proto_rawDescData []byte
2023
+ )
2024
+
2025
+ func file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP() []byte {
2026
+ file_waMediaTransport_WAMediaTransport_proto_rawDescOnce.Do(func() {
2027
+ file_waMediaTransport_WAMediaTransport_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waMediaTransport_WAMediaTransport_proto_rawDesc), len(file_waMediaTransport_WAMediaTransport_proto_rawDesc)))
2028
+ })
2029
+ return file_waMediaTransport_WAMediaTransport_proto_rawDescData
2030
+ }
2031
+
2032
+ var file_waMediaTransport_WAMediaTransport_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
2033
+ var file_waMediaTransport_WAMediaTransport_proto_msgTypes = make([]protoimpl.MessageInfo, 25)
2034
+ var file_waMediaTransport_WAMediaTransport_proto_goTypes = []any{
2035
+ (ImageTransport_Ancillary_HdType)(0), // 0: WAMediaTransport.ImageTransport.Ancillary.HdType
2036
+ (VideoTransport_Ancillary_Attribution)(0), // 1: WAMediaTransport.VideoTransport.Ancillary.Attribution
2037
+ (AudioTransport_Ancillary_AvatarAudio_AnimationsType)(0), // 2: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsType
2038
+ (AudioTransport_Integral_AudioFormat)(0), // 3: WAMediaTransport.AudioTransport.Integral.AudioFormat
2039
+ (*WAMediaTransport)(nil), // 4: WAMediaTransport.WAMediaTransport
2040
+ (*ImageTransport)(nil), // 5: WAMediaTransport.ImageTransport
2041
+ (*VideoTransport)(nil), // 6: WAMediaTransport.VideoTransport
2042
+ (*AudioTransport)(nil), // 7: WAMediaTransport.AudioTransport
2043
+ (*DocumentTransport)(nil), // 8: WAMediaTransport.DocumentTransport
2044
+ (*StickerTransport)(nil), // 9: WAMediaTransport.StickerTransport
2045
+ (*ContactTransport)(nil), // 10: WAMediaTransport.ContactTransport
2046
+ (*WAMediaTransport_Ancillary)(nil), // 11: WAMediaTransport.WAMediaTransport.Ancillary
2047
+ (*WAMediaTransport_Integral)(nil), // 12: WAMediaTransport.WAMediaTransport.Integral
2048
+ (*WAMediaTransport_Ancillary_Thumbnail)(nil), // 13: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail
2049
+ (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail)(nil), // 14: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnail
2050
+ (*ImageTransport_Ancillary)(nil), // 15: WAMediaTransport.ImageTransport.Ancillary
2051
+ (*ImageTransport_Integral)(nil), // 16: WAMediaTransport.ImageTransport.Integral
2052
+ (*VideoTransport_Ancillary)(nil), // 17: WAMediaTransport.VideoTransport.Ancillary
2053
+ (*VideoTransport_Integral)(nil), // 18: WAMediaTransport.VideoTransport.Integral
2054
+ (*AudioTransport_Ancillary)(nil), // 19: WAMediaTransport.AudioTransport.Ancillary
2055
+ (*AudioTransport_Integral)(nil), // 20: WAMediaTransport.AudioTransport.Integral
2056
+ (*AudioTransport_Ancillary_AvatarAudio)(nil), // 21: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio
2057
+ (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations)(nil), // 22: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations
2058
+ (*DocumentTransport_Ancillary)(nil), // 23: WAMediaTransport.DocumentTransport.Ancillary
2059
+ (*DocumentTransport_Integral)(nil), // 24: WAMediaTransport.DocumentTransport.Integral
2060
+ (*StickerTransport_Ancillary)(nil), // 25: WAMediaTransport.StickerTransport.Ancillary
2061
+ (*StickerTransport_Integral)(nil), // 26: WAMediaTransport.StickerTransport.Integral
2062
+ (*ContactTransport_Ancillary)(nil), // 27: WAMediaTransport.ContactTransport.Ancillary
2063
+ (*ContactTransport_Integral)(nil), // 28: WAMediaTransport.ContactTransport.Integral
2064
+ (*waCommon.MessageText)(nil), // 29: WACommon.MessageText
2065
+ }
2066
+ var file_waMediaTransport_WAMediaTransport_proto_depIdxs = []int32{
2067
+ 12, // 0: WAMediaTransport.WAMediaTransport.integral:type_name -> WAMediaTransport.WAMediaTransport.Integral
2068
+ 11, // 1: WAMediaTransport.WAMediaTransport.ancillary:type_name -> WAMediaTransport.WAMediaTransport.Ancillary
2069
+ 16, // 2: WAMediaTransport.ImageTransport.integral:type_name -> WAMediaTransport.ImageTransport.Integral
2070
+ 15, // 3: WAMediaTransport.ImageTransport.ancillary:type_name -> WAMediaTransport.ImageTransport.Ancillary
2071
+ 18, // 4: WAMediaTransport.VideoTransport.integral:type_name -> WAMediaTransport.VideoTransport.Integral
2072
+ 17, // 5: WAMediaTransport.VideoTransport.ancillary:type_name -> WAMediaTransport.VideoTransport.Ancillary
2073
+ 20, // 6: WAMediaTransport.AudioTransport.integral:type_name -> WAMediaTransport.AudioTransport.Integral
2074
+ 19, // 7: WAMediaTransport.AudioTransport.ancillary:type_name -> WAMediaTransport.AudioTransport.Ancillary
2075
+ 24, // 8: WAMediaTransport.DocumentTransport.integral:type_name -> WAMediaTransport.DocumentTransport.Integral
2076
+ 23, // 9: WAMediaTransport.DocumentTransport.ancillary:type_name -> WAMediaTransport.DocumentTransport.Ancillary
2077
+ 26, // 10: WAMediaTransport.StickerTransport.integral:type_name -> WAMediaTransport.StickerTransport.Integral
2078
+ 25, // 11: WAMediaTransport.StickerTransport.ancillary:type_name -> WAMediaTransport.StickerTransport.Ancillary
2079
+ 28, // 12: WAMediaTransport.ContactTransport.integral:type_name -> WAMediaTransport.ContactTransport.Integral
2080
+ 27, // 13: WAMediaTransport.ContactTransport.ancillary:type_name -> WAMediaTransport.ContactTransport.Ancillary
2081
+ 13, // 14: WAMediaTransport.WAMediaTransport.Ancillary.thumbnail:type_name -> WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail
2082
+ 14, // 15: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.downloadableThumbnail:type_name -> WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnail
2083
+ 0, // 16: WAMediaTransport.ImageTransport.Ancillary.hdType:type_name -> WAMediaTransport.ImageTransport.Ancillary.HdType
2084
+ 4, // 17: WAMediaTransport.ImageTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
2085
+ 29, // 18: WAMediaTransport.VideoTransport.Ancillary.caption:type_name -> WACommon.MessageText
2086
+ 1, // 19: WAMediaTransport.VideoTransport.Ancillary.gifAttribution:type_name -> WAMediaTransport.VideoTransport.Ancillary.Attribution
2087
+ 4, // 20: WAMediaTransport.VideoTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
2088
+ 21, // 21: WAMediaTransport.AudioTransport.Ancillary.avatarAudio:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio
2089
+ 4, // 22: WAMediaTransport.AudioTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
2090
+ 3, // 23: WAMediaTransport.AudioTransport.Integral.audioFormat:type_name -> WAMediaTransport.AudioTransport.Integral.AudioFormat
2091
+ 22, // 24: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.avatarAnimations:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations
2092
+ 2, // 25: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations.animationsType:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsType
2093
+ 4, // 26: WAMediaTransport.DocumentTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
2094
+ 4, // 27: WAMediaTransport.StickerTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
2095
+ 4, // 28: WAMediaTransport.ContactTransport.Integral.downloadableVcard:type_name -> WAMediaTransport.WAMediaTransport
2096
+ 29, // [29:29] is the sub-list for method output_type
2097
+ 29, // [29:29] is the sub-list for method input_type
2098
+ 29, // [29:29] is the sub-list for extension type_name
2099
+ 29, // [29:29] is the sub-list for extension extendee
2100
+ 0, // [0:29] is the sub-list for field type_name
2101
+ }
2102
+
2103
+ func init() { file_waMediaTransport_WAMediaTransport_proto_init() }
2104
+ func file_waMediaTransport_WAMediaTransport_proto_init() {
2105
+ if File_waMediaTransport_WAMediaTransport_proto != nil {
2106
+ return
2107
+ }
2108
+ file_waMediaTransport_WAMediaTransport_proto_msgTypes[24].OneofWrappers = []any{
2109
+ (*ContactTransport_Integral_Vcard)(nil),
2110
+ (*ContactTransport_Integral_DownloadableVcard)(nil),
2111
+ }
2112
+ type x struct{}
2113
+ out := protoimpl.TypeBuilder{
2114
+ File: protoimpl.DescBuilder{
2115
+ GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
2116
+ RawDescriptor: unsafe.Slice(unsafe.StringData(file_waMediaTransport_WAMediaTransport_proto_rawDesc), len(file_waMediaTransport_WAMediaTransport_proto_rawDesc)),
2117
+ NumEnums: 4,
2118
+ NumMessages: 25,
2119
+ NumExtensions: 0,
2120
+ NumServices: 0,
2121
+ },
2122
+ GoTypes: file_waMediaTransport_WAMediaTransport_proto_goTypes,
2123
+ DependencyIndexes: file_waMediaTransport_WAMediaTransport_proto_depIdxs,
2124
+ EnumInfos: file_waMediaTransport_WAMediaTransport_proto_enumTypes,
2125
+ MessageInfos: file_waMediaTransport_WAMediaTransport_proto_msgTypes,
2126
+ }.Build()
2127
+ File_waMediaTransport_WAMediaTransport_proto = out.File
2128
+ file_waMediaTransport_WAMediaTransport_proto_goTypes = nil
2129
+ file_waMediaTransport_WAMediaTransport_proto_depIdxs = nil
2130
+ }