javonet-nodejs-sdk 2.5.15 → 2.5.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2041) hide show
  1. package/dist/core/delegatesCache/DelegatesCache.cjs +59 -0
  2. package/dist/core/handler/AbstractHandler.cjs +62 -0
  3. package/dist/core/handler/ArrayGetItemHandler.cjs +61 -0
  4. package/dist/core/handler/ArrayGetRankHandler.cjs +52 -0
  5. package/dist/core/handler/ArrayGetSizeHandler.cjs +52 -0
  6. package/dist/core/handler/ArrayHandler.cjs +41 -0
  7. package/dist/core/handler/ArraySetItemHandler.cjs +62 -0
  8. package/dist/core/handler/CastingHandler.cjs +34 -0
  9. package/dist/core/handler/ConvertTypeHandler.cjs +53 -0
  10. package/dist/core/handler/CreateClassInstanceHandler.cjs +62 -0
  11. package/dist/core/handler/DestructReferenceHandler.cjs +42 -0
  12. package/dist/core/handler/EnableNamespaceHandler.cjs +56 -0
  13. package/dist/core/handler/EnableTypeHandler.cjs +58 -0
  14. package/dist/core/handler/GetGlobalStaticFieldHandler.cjs +62 -0
  15. package/dist/core/handler/GetInstanceFieldHandler.cjs +61 -0
  16. package/dist/core/handler/GetInstanceMethodAsDelegateHandler.cjs +83 -0
  17. package/dist/core/handler/GetStaticFieldHandler.cjs +61 -0
  18. package/dist/core/handler/GetStaticMethodAsDelegateHandler.cjs +85 -0
  19. package/dist/core/handler/GetTypeHandler.cjs +87 -0
  20. package/dist/core/handler/Handler.cjs +136 -0
  21. package/dist/core/handler/InvokeDelegateHandler.cjs +53 -0
  22. package/dist/core/handler/InvokeGlobalFunctionHandler.cjs +62 -0
  23. package/dist/core/handler/InvokeInstanceMethodHandler.cjs +64 -0
  24. package/dist/core/handler/InvokeStaticMethodHandler.cjs +64 -0
  25. package/dist/core/handler/LoadLibraryHandler.cjs +71 -0
  26. package/dist/core/handler/PassDelegateHandler.cjs +164 -0
  27. package/dist/core/handler/ResolveReferenceHandler.cjs +41 -0
  28. package/dist/core/handler/SetGlobalStaticFieldHandler.cjs +63 -0
  29. package/dist/core/handler/SetInstanceFieldHandler.cjs +61 -0
  30. package/dist/core/handler/SetStaticFieldHandler.cjs +59 -0
  31. package/dist/core/handler/ValueHandler.cjs +37 -0
  32. package/dist/core/interpreter/Interpreter.cjs +163 -0
  33. package/dist/core/namespaceCache/NamespaceCache.cjs +61 -0
  34. package/dist/core/protocol/CommandDeserializer.cjs +188 -0
  35. package/dist/core/protocol/CommandSerializer.cjs +64 -0
  36. package/dist/core/protocol/TypeDeserializer.cjs +91 -0
  37. package/dist/core/protocol/TypeSerializer.cjs +153 -0
  38. package/dist/core/receiver/Receiver.cjs +65 -0
  39. package/dist/core/receiver/ReceiverNative.cjs +37 -0
  40. package/dist/core/referenceCache/ReferencesCache.cjs +65 -0
  41. package/dist/core/transmitter/Transmitter.cjs +44 -0
  42. package/dist/core/transmitter/TransmitterWebsocket.cjs +55 -0
  43. package/dist/core/transmitter/TransmitterWebsocketBrowser.cjs +59 -0
  44. package/dist/core/transmitter/TransmitterWrapper.cjs +75 -0
  45. package/dist/core/typeCache/TypeCache.cjs +61 -0
  46. package/dist/core/webSocketClient/WebSocketClient.cjs +150 -0
  47. package/dist/core/webSocketClient/WebSocketClientBrowser.cjs +153 -0
  48. package/dist/sdk/ConfigRuntimeFactory.cjs +209 -0
  49. package/dist/sdk/InvocationContext.cjs +495 -0
  50. package/dist/sdk/Javonet.cjs +150 -0
  51. package/dist/sdk/RuntimeContext.cjs +304 -0
  52. package/dist/sdk/RuntimeFactory.cjs +98 -0
  53. package/dist/sdk/tools/browser/ConfigSourceResolver.cjs +153 -0
  54. package/dist/sdk/tools/browser/SdkExceptionHelper.cjs +37 -0
  55. package/dist/sdk/tools/nodejs/JsonFileResolver.cjs +120 -0
  56. package/dist/sdk/tools/nodejs/SdkExceptionHelper.cjs +100 -0
  57. package/dist/types/core/delegatesCache/DelegatesCache.d.ts +21 -0
  58. package/dist/types/core/handler/AbstractHandler.d.ts +7 -0
  59. package/dist/types/core/handler/ArrayGetItemHandler.d.ts +5 -0
  60. package/dist/types/core/handler/ArrayGetRankHandler.d.ts +5 -0
  61. package/dist/types/core/handler/ArrayGetSizeHandler.d.ts +5 -0
  62. package/dist/types/core/handler/ArrayHandler.d.ts +4 -0
  63. package/dist/types/core/handler/ArraySetItemHandler.d.ts +5 -0
  64. package/dist/types/core/handler/CastingHandler.d.ts +3 -0
  65. package/dist/types/core/handler/ConvertTypeHandler.d.ts +22 -0
  66. package/dist/types/core/handler/CreateClassInstanceHandler.d.ts +5 -0
  67. package/dist/types/core/handler/DestructReferenceHandler.d.ts +4 -0
  68. package/dist/types/core/handler/EnableNamespaceHandler.d.ts +5 -0
  69. package/dist/types/core/handler/EnableTypeHandler.d.ts +5 -0
  70. package/dist/types/core/handler/GetGlobalStaticFieldHandler.d.ts +5 -0
  71. package/dist/types/core/handler/GetInstanceFieldHandler.d.ts +5 -0
  72. package/dist/types/core/handler/GetInstanceMethodAsDelegateHandler.d.ts +38 -0
  73. package/dist/types/core/handler/GetStaticFieldHandler.d.ts +5 -0
  74. package/dist/types/core/handler/GetStaticMethodAsDelegateHandler.d.ts +36 -0
  75. package/dist/types/core/handler/GetTypeHandler.d.ts +16 -0
  76. package/dist/types/core/handler/Handler.d.ts +27 -0
  77. package/dist/types/core/handler/InvokeDelegateHandler.d.ts +15 -0
  78. package/dist/types/core/handler/InvokeGlobalFunctionHandler.d.ts +5 -0
  79. package/dist/types/core/handler/InvokeInstanceMethodHandler.d.ts +5 -0
  80. package/dist/types/core/handler/InvokeStaticMethodHandler.d.ts +5 -0
  81. package/dist/types/core/handler/LoadLibraryHandler.d.ts +7 -0
  82. package/dist/types/core/handler/PassDelegateHandler.d.ts +104 -0
  83. package/dist/types/core/handler/ResolveReferenceHandler.d.ts +12 -0
  84. package/dist/types/core/handler/SetGlobalStaticFieldHandler.d.ts +4 -0
  85. package/dist/types/core/handler/SetInstanceFieldHandler.d.ts +5 -0
  86. package/dist/types/core/handler/SetStaticFieldHandler.d.ts +5 -0
  87. package/dist/types/core/handler/ValueHandler.d.ts +4 -0
  88. package/dist/types/core/interpreter/Interpreter.d.ts +27 -0
  89. package/dist/types/core/namespaceCache/NamespaceCache.d.ts +9 -0
  90. package/dist/types/core/protocol/CommandDeserializer.d.ts +25 -0
  91. package/dist/types/core/protocol/CommandSerializer.d.ts +4 -0
  92. package/dist/types/core/protocol/TypeDeserializer.d.ts +15 -0
  93. package/dist/types/core/protocol/TypeSerializer.d.ts +17 -0
  94. package/dist/types/core/receiver/Receiver.d.ts +14 -0
  95. package/dist/types/core/receiver/ReceiverNative.d.ts +4 -0
  96. package/dist/types/core/referenceCache/ReferencesCache.d.ts +24 -0
  97. package/dist/types/core/transmitter/Transmitter.d.ts +6 -0
  98. package/dist/types/core/transmitter/TransmitterWebsocket.d.ts +21 -0
  99. package/dist/types/core/transmitter/TransmitterWebsocketBrowser.d.ts +30 -0
  100. package/dist/types/core/transmitter/TransmitterWrapper.d.ts +11 -0
  101. package/dist/types/core/typeCache/TypeCache.d.ts +9 -0
  102. package/dist/types/core/webSocketClient/WebSocketClient.d.ts +50 -0
  103. package/dist/types/core/webSocketClient/WebSocketClientBrowser.d.ts +63 -0
  104. package/dist/types/sdk/ConfigRuntimeFactory.d.ts +73 -0
  105. package/dist/types/sdk/InvocationContext.d.ts +207 -0
  106. package/dist/types/sdk/Javonet.d.ts +63 -0
  107. package/dist/types/sdk/RuntimeContext.d.ts +103 -0
  108. package/dist/types/sdk/RuntimeFactory.d.ts +58 -0
  109. package/dist/types/sdk/tools/browser/ConfigSourceResolver.d.ts +46 -0
  110. package/dist/types/sdk/tools/browser/SdkExceptionHelper.d.ts +7 -0
  111. package/dist/types/sdk/tools/nodejs/JsonFileResolver.d.ts +13 -0
  112. package/dist/types/sdk/tools/nodejs/SdkExceptionHelper.d.ts +6 -0
  113. package/dist/types/utils/Command.d.ts +42 -0
  114. package/dist/types/utils/CommandType.d.ts +44 -0
  115. package/dist/types/utils/ConnectionType.d.ts +5 -0
  116. package/dist/types/utils/CustomError.d.ts +3 -0
  117. package/dist/types/utils/ExceptionType.d.ts +10 -0
  118. package/dist/types/utils/Runtime.d.ts +24 -0
  119. package/dist/types/utils/RuntimeLogger.d.ts +5 -0
  120. package/dist/types/utils/RuntimeLoggerBrowser.d.ts +15 -0
  121. package/dist/types/utils/RuntimeName.d.ts +13 -0
  122. package/dist/types/utils/RuntimeNameHandler.d.ts +7 -0
  123. package/dist/types/utils/StringEncodingMode.d.ts +6 -0
  124. package/dist/types/utils/Type.d.ts +14 -0
  125. package/dist/types/utils/connectionData/IConnectionData.d.ts +5 -0
  126. package/dist/types/utils/connectionData/InMemoryConnectionData.d.ts +16 -0
  127. package/dist/types/utils/connectionData/WsConnectionData.d.ts +31 -0
  128. package/dist/types/utils/exception/ExceptionSerializer.d.ts +6 -0
  129. package/dist/types/utils/exception/ExceptionThrower.d.ts +4 -0
  130. package/dist/types/utils/guid/generateGuid.d.ts +1 -0
  131. package/dist/types/utils/nodejs/TypesConverter.d.ts +48 -0
  132. package/dist/types/utils/nodejs/connectionData/TcpConnectionData.d.ts +25 -0
  133. package/dist/types/utils/nodejs/uuid/REGEX.d.ts +1 -0
  134. package/dist/types/utils/nodejs/uuid/rng.d.ts +1 -0
  135. package/dist/types/utils/nodejs/uuid/stringify.d.ts +1 -0
  136. package/dist/types/utils/nodejs/uuid/v4.d.ts +1 -0
  137. package/dist/types/utils/nodejs/uuid/validate.d.ts +1 -0
  138. package/dist/utils/Command.cjs +87 -0
  139. package/dist/utils/CommandType.cjs +74 -0
  140. package/dist/utils/ConnectionType.cjs +35 -0
  141. package/dist/utils/CustomError.cjs +33 -0
  142. package/dist/utils/ExceptionType.cjs +40 -0
  143. package/dist/utils/Runtime.cjs +103 -0
  144. package/dist/utils/RuntimeLogger.cjs +63 -0
  145. package/dist/utils/RuntimeLoggerBrowser.cjs +58 -0
  146. package/dist/utils/RuntimeName.cjs +43 -0
  147. package/dist/utils/RuntimeNameHandler.cjs +62 -0
  148. package/dist/utils/StringEncodingMode.cjs +36 -0
  149. package/dist/utils/Type.cjs +44 -0
  150. package/dist/utils/connectionData/IConnectionData.cjs +38 -0
  151. package/dist/utils/connectionData/InMemoryConnectionData.cjs +52 -0
  152. package/dist/utils/connectionData/WsConnectionData.cjs +61 -0
  153. package/dist/utils/exception/ExceptionSerializer.cjs +82 -0
  154. package/dist/utils/exception/ExceptionThrower.cjs +111 -0
  155. package/dist/utils/guid/generateGuid.cjs +34 -0
  156. package/dist/utils/nodejs/TypesConverter.cjs +102 -0
  157. package/dist/utils/nodejs/connectionData/TcpConnectionData.cjs +111 -0
  158. package/dist/utils/nodejs/uuid/REGEX.cjs +28 -0
  159. package/dist/utils/nodejs/uuid/rng.cjs +47 -0
  160. package/dist/utils/nodejs/uuid/stringify.cjs +39 -0
  161. package/dist/utils/nodejs/uuid/v4.cjs +43 -0
  162. package/dist/utils/nodejs/uuid/validate.cjs +31 -0
  163. package/lib/core/delegatesCache/DelegatesCache.js +37 -0
  164. package/lib/core/handler/AbstractHandler.js +2 -2
  165. package/lib/core/handler/ArrayGetItemHandler.js +2 -2
  166. package/lib/core/handler/ArrayGetRankHandler.js +2 -2
  167. package/lib/core/handler/ArrayGetSizeHandler.js +2 -2
  168. package/lib/core/handler/ArrayHandler.js +2 -2
  169. package/lib/core/handler/ArraySetItemHandler.js +2 -2
  170. package/lib/core/handler/CastingHandler.js +2 -2
  171. package/lib/core/handler/ConvertTypeHandler.js +3 -3
  172. package/lib/core/handler/CreateClassInstanceHandler.js +4 -2
  173. package/lib/core/handler/DestructReferenceHandler.js +3 -3
  174. package/lib/core/handler/EnableNamespaceHandler.js +3 -3
  175. package/lib/core/handler/EnableTypeHandler.js +3 -3
  176. package/lib/core/handler/GetGlobalStaticFieldHandler.js +2 -2
  177. package/lib/core/handler/GetInstanceFieldHandler.js +2 -2
  178. package/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +2 -2
  179. package/lib/core/handler/GetStaticFieldHandler.js +3 -2
  180. package/lib/core/handler/GetStaticMethodAsDelegateHandler.js +2 -3
  181. package/lib/core/handler/GetTypeHandler.js +16 -7
  182. package/lib/core/handler/Handler.js +91 -60
  183. package/lib/core/handler/InvokeDelegateHandler.js +4 -4
  184. package/lib/core/handler/InvokeGlobalFunctionHandler.js +3 -5
  185. package/lib/core/handler/InvokeInstanceMethodHandler.js +2 -2
  186. package/lib/core/handler/InvokeStaticMethodHandler.js +2 -2
  187. package/lib/core/handler/LoadLibraryHandler.js +7 -4
  188. package/lib/core/handler/PassDelegateHandler.js +38 -24
  189. package/lib/core/handler/ResolveReferenceHandler.js +13 -3
  190. package/lib/core/handler/SetGlobalStaticFieldHandler.js +2 -2
  191. package/lib/core/handler/SetInstanceFieldHandler.js +2 -2
  192. package/lib/core/handler/SetStaticFieldHandler.js +2 -2
  193. package/lib/core/handler/ValueHandler.js +2 -2
  194. package/lib/core/interpreter/Interpreter.js +164 -0
  195. package/lib/core/namespaceCache/NamespaceCache.js +1 -1
  196. package/lib/core/protocol/CommandDeserializer.js +180 -0
  197. package/lib/core/protocol/CommandSerializer.js +48 -0
  198. package/lib/core/protocol/TypeDeserializer.js +81 -0
  199. package/lib/core/protocol/TypeSerializer.js +143 -0
  200. package/lib/core/receiver/Receiver.js +17 -8
  201. package/lib/core/receiver/ReceiverNative.js +2 -2
  202. package/lib/core/referenceCache/ReferencesCache.js +27 -4
  203. package/lib/core/transmitter/Transmitter.js +6 -8
  204. package/lib/core/transmitter/TransmitterWebsocket.js +2 -6
  205. package/lib/core/transmitter/TransmitterWebsocketBrowser.js +39 -0
  206. package/lib/core/transmitter/TransmitterWrapper.js +26 -13
  207. package/lib/core/typeCache/TypeCache.js +1 -1
  208. package/lib/core/webSocketClient/WebSocketClient.js +56 -24
  209. package/lib/core/webSocketClient/WebSocketClientBrowser.js +174 -0
  210. package/lib/declarations.d.ts +35 -0
  211. package/lib/sdk/ConfigRuntimeFactory.js +108 -58
  212. package/lib/sdk/InvocationContext.js +487 -0
  213. package/lib/sdk/Javonet.js +63 -29
  214. package/lib/sdk/RuntimeContext.js +289 -0
  215. package/lib/sdk/RuntimeFactory.js +12 -5
  216. package/lib/sdk/tools/browser/ConfigSourceResolver.js +146 -0
  217. package/lib/sdk/tools/browser/SdkExceptionHelper.js +20 -0
  218. package/lib/sdk/tools/nodejs/JsonFileResolver.js +106 -0
  219. package/lib/sdk/tools/nodejs/SdkExceptionHelper.js +89 -0
  220. package/lib/utils/Command.js +67 -0
  221. package/lib/utils/CommandType.js +45 -0
  222. package/lib/utils/ConnectionType.js +6 -0
  223. package/lib/utils/CustomError.js +6 -0
  224. package/lib/utils/ExceptionType.js +13 -0
  225. package/lib/utils/Runtime.js +94 -0
  226. package/lib/utils/RuntimeLogger.js +19 -9
  227. package/lib/utils/RuntimeLoggerBrowser.js +35 -0
  228. package/lib/utils/RuntimeName.js +14 -0
  229. package/lib/utils/RuntimeNameHandler.js +38 -0
  230. package/lib/utils/StringEncodingMode.js +7 -0
  231. package/lib/utils/Type.js +15 -0
  232. package/lib/utils/connectionData/IConnectionData.js +13 -0
  233. package/lib/utils/connectionData/InMemoryConnectionData.js +35 -0
  234. package/lib/utils/connectionData/WsConnectionData.js +48 -0
  235. package/lib/utils/exception/ExceptionSerializer.js +64 -0
  236. package/lib/utils/exception/ExceptionThrower.js +96 -0
  237. package/lib/utils/guid/generateGuid.js +9 -0
  238. package/lib/utils/nodejs/TypesConverter.js +91 -0
  239. package/lib/utils/nodejs/connectionData/TcpConnectionData.js +89 -0
  240. package/lib/utils/nodejs/uuid/REGEX.js +2 -0
  241. package/lib/utils/nodejs/uuid/rng.js +23 -0
  242. package/lib/utils/nodejs/uuid/stringify.js +51 -0
  243. package/lib/utils/nodejs/uuid/v4.js +26 -0
  244. package/lib/utils/nodejs/uuid/validate.js +7 -0
  245. package/package.json +59 -47
  246. package/Binaries/Clr/Javonet.Clr.Utils.dll +0 -0
  247. package/Binaries/Clr/JavonetClrRuntime.dll +0 -0
  248. package/Binaries/Jvm/JavonetJvmRuntime.jar +0 -0
  249. package/Binaries/Native/Linux/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  250. package/Binaries/Native/Linux/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  251. package/Binaries/Native/Linux/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  252. package/Binaries/Native/Linux/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  253. package/Binaries/Native/Linux/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  254. package/Binaries/Native/Linux/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  255. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  256. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  257. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  258. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  259. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  260. package/Binaries/Native/Linux/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  261. package/Binaries/Native/Linux/ARM64/libJavonetActivationService.so +0 -0
  262. package/Binaries/Native/Linux/ARM64/libJavonetCppRuntimeNative.so +0 -0
  263. package/Binaries/Native/Linux/ARM64/libJavonetGoRuntimeNative.so +0 -0
  264. package/Binaries/Native/Linux/ARM64/libJavonetJvmRuntimeNative.so +0 -0
  265. package/Binaries/Native/Linux/ARM64/libJavonetNetcoreRuntimeNative.so +0 -0
  266. package/Binaries/Native/Linux/ARM64/libJavonetPhpRuntimeNative.so +0 -0
  267. package/Binaries/Native/Linux/ARM64/libJavonetPythonRuntimeNative.so +0 -0
  268. package/Binaries/Native/Linux/ARM64/libJavonetRuby342RuntimeNative.so +0 -0
  269. package/Binaries/Native/Linux/ARM64/libJavonetRubyRuntimeNative.so +0 -0
  270. package/Binaries/Native/Linux/ARM64/libJavonetTcpClient.so +0 -0
  271. package/Binaries/Native/Linux/ARM64/libJavonetTcpTlsClient.so +0 -0
  272. package/Binaries/Native/Linux/ARM64/libUtils.so +0 -0
  273. package/Binaries/Native/Linux/ARM64/libnethost.so +0 -0
  274. package/Binaries/Native/Linux/ARM64/version.txt +0 -1
  275. package/Binaries/Native/Linux/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  276. package/Binaries/Native/Linux/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  277. package/Binaries/Native/Linux/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  278. package/Binaries/Native/Linux/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  279. package/Binaries/Native/Linux/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  280. package/Binaries/Native/Linux/X64/NetVersionLatest.runtimeconfig.json +0 -10
  281. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  282. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  283. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  284. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  285. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  286. package/Binaries/Native/Linux/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  287. package/Binaries/Native/Linux/X64/libJavonetActivationService.so +0 -0
  288. package/Binaries/Native/Linux/X64/libJavonetCppRuntimeNative.so +0 -0
  289. package/Binaries/Native/Linux/X64/libJavonetGoRuntimeNative.so +0 -0
  290. package/Binaries/Native/Linux/X64/libJavonetJvmRuntimeNative.so +0 -0
  291. package/Binaries/Native/Linux/X64/libJavonetNetcoreRuntimeNative.so +0 -0
  292. package/Binaries/Native/Linux/X64/libJavonetNodejs1816RuntimeNative.so +0 -0
  293. package/Binaries/Native/Linux/X64/libJavonetNodejsRuntimeNative.so +0 -0
  294. package/Binaries/Native/Linux/X64/libJavonetPerlRuntimeNative.so +0 -0
  295. package/Binaries/Native/Linux/X64/libJavonetPhpRuntimeNative.so +0 -0
  296. package/Binaries/Native/Linux/X64/libJavonetPython2RuntimeNative.so +0 -0
  297. package/Binaries/Native/Linux/X64/libJavonetPythonRuntimeNative.so +0 -0
  298. package/Binaries/Native/Linux/X64/libJavonetRuby278RuntimeNative.so +0 -0
  299. package/Binaries/Native/Linux/X64/libJavonetRuby342RuntimeNative.so +0 -0
  300. package/Binaries/Native/Linux/X64/libJavonetRubyRuntimeNative.so +0 -0
  301. package/Binaries/Native/Linux/X64/libJavonetTcpClient.so +0 -0
  302. package/Binaries/Native/Linux/X64/libJavonetTcpTlsClient.so +0 -0
  303. package/Binaries/Native/Linux/X64/libUtils.so +0 -0
  304. package/Binaries/Native/Linux/X64/libnethost.so +0 -0
  305. package/Binaries/Native/Linux/X64/libnode.so.108 +0 -0
  306. package/Binaries/Native/Linux/X64/libperl.so.5.34.0 +0 -0
  307. package/Binaries/Native/Linux/X64/libpython2.7.so.1.0 +0 -0
  308. package/Binaries/Native/Linux/X64/libruby.so.2.7.8 +0 -0
  309. package/Binaries/Native/Linux/X64/libruby.so.3.4.2 +0 -0
  310. package/Binaries/Native/Linux/X64/version.txt +0 -1
  311. package/Binaries/Native/MacOs/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  312. package/Binaries/Native/MacOs/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  313. package/Binaries/Native/MacOs/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  314. package/Binaries/Native/MacOs/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  315. package/Binaries/Native/MacOs/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  316. package/Binaries/Native/MacOs/X64/NetVersionLatest.runtimeconfig.json +0 -10
  317. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  318. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  319. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  320. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  321. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  322. package/Binaries/Native/MacOs/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  323. package/Binaries/Native/MacOs/X64/libJavonetActivationService.dylib +0 -0
  324. package/Binaries/Native/MacOs/X64/libJavonetCppRuntimeNative.dylib +0 -0
  325. package/Binaries/Native/MacOs/X64/libJavonetGoRuntimeNative.dylib +0 -0
  326. package/Binaries/Native/MacOs/X64/libJavonetJvmRuntimeNative.dylib +0 -0
  327. package/Binaries/Native/MacOs/X64/libJavonetNetcoreRuntimeNative.dylib +0 -0
  328. package/Binaries/Native/MacOs/X64/libJavonetNodejs1816RuntimeNative.dylib +0 -0
  329. package/Binaries/Native/MacOs/X64/libJavonetNodejsRuntimeNative.dylib +0 -0
  330. package/Binaries/Native/MacOs/X64/libJavonetPhpRuntimeNative.dylib +0 -0
  331. package/Binaries/Native/MacOs/X64/libJavonetPythonRuntimeNative.dylib +0 -0
  332. package/Binaries/Native/MacOs/X64/libJavonetRuby278RuntimeNative.dylib +0 -0
  333. package/Binaries/Native/MacOs/X64/libJavonetRuby342RuntimeNative.dylib +0 -0
  334. package/Binaries/Native/MacOs/X64/libJavonetRubyRuntimeNative.dylib +0 -0
  335. package/Binaries/Native/MacOs/X64/libJavonetTcpClient.dylib +0 -0
  336. package/Binaries/Native/MacOs/X64/libJavonetTcpTlsClient.dylib +0 -0
  337. package/Binaries/Native/MacOs/X64/libUtils.dylib +0 -0
  338. package/Binaries/Native/MacOs/X64/libnethost.dylib +0 -0
  339. package/Binaries/Native/MacOs/X64/libnode.108.dylib +0 -0
  340. package/Binaries/Native/MacOs/X64/libruby.2.7.dylib +0 -0
  341. package/Binaries/Native/MacOs/X64/libruby.3.4.dylib +0 -0
  342. package/Binaries/Native/MacOs/X64/version.txt +0 -1
  343. package/Binaries/Native/Windows/ARM64/JavonetActivationService.dll +0 -0
  344. package/Binaries/Native/Windows/ARM64/JavonetCppRuntimeNative.dll +0 -0
  345. package/Binaries/Native/Windows/ARM64/JavonetGoRuntimeNative.dll +0 -0
  346. package/Binaries/Native/Windows/ARM64/JavonetJvmRuntimeNative.dll +0 -0
  347. package/Binaries/Native/Windows/ARM64/JavonetNetcoreRuntimeNative.dll +0 -0
  348. package/Binaries/Native/Windows/ARM64/JavonetPhpRuntimeNative.dll +0 -0
  349. package/Binaries/Native/Windows/ARM64/JavonetPythonRuntimeNative.dll +0 -0
  350. package/Binaries/Native/Windows/ARM64/JavonetRuby278RuntimeNative.dll +0 -0
  351. package/Binaries/Native/Windows/ARM64/JavonetRubyRuntimeNative.dll +0 -0
  352. package/Binaries/Native/Windows/ARM64/JavonetTcpClient.dll +0 -0
  353. package/Binaries/Native/Windows/ARM64/JavonetTcpTlsClient.dll +0 -0
  354. package/Binaries/Native/Windows/ARM64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  355. package/Binaries/Native/Windows/ARM64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  356. package/Binaries/Native/Windows/ARM64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  357. package/Binaries/Native/Windows/ARM64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  358. package/Binaries/Native/Windows/ARM64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  359. package/Binaries/Native/Windows/ARM64/NetVersionLatest.runtimeconfig.json +0 -10
  360. package/Binaries/Native/Windows/ARM64/Utils.dll +0 -0
  361. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  362. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  363. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  364. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  365. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  366. package/Binaries/Native/Windows/ARM64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  367. package/Binaries/Native/Windows/ARM64/libcrypto-3-arm64.dll +0 -0
  368. package/Binaries/Native/Windows/ARM64/libssl-3-arm64.dll +0 -0
  369. package/Binaries/Native/Windows/ARM64/libxml2.dll +0 -0
  370. package/Binaries/Native/Windows/ARM64/libxmlsec-openssl.dll +0 -0
  371. package/Binaries/Native/Windows/ARM64/libxmlsec.dll +0 -0
  372. package/Binaries/Native/Windows/ARM64/libxslt.dll +0 -0
  373. package/Binaries/Native/Windows/ARM64/nethost.dll +0 -0
  374. package/Binaries/Native/Windows/ARM64/version.txt +0 -0
  375. package/Binaries/Native/Windows/X64/JavonetActivationService.dll +0 -0
  376. package/Binaries/Native/Windows/X64/JavonetClrRuntimeNative.dll +0 -0
  377. package/Binaries/Native/Windows/X64/JavonetCppRuntimeNative.dll +0 -0
  378. package/Binaries/Native/Windows/X64/JavonetGoRuntimeNative.dll +0 -0
  379. package/Binaries/Native/Windows/X64/JavonetJvmRuntimeNative.dll +0 -0
  380. package/Binaries/Native/Windows/X64/JavonetNetcoreRuntimeNative.dll +0 -0
  381. package/Binaries/Native/Windows/X64/JavonetNodejs1816RuntimeNative.dll +0 -0
  382. package/Binaries/Native/Windows/X64/JavonetNodejsRuntimeNative.dll +0 -0
  383. package/Binaries/Native/Windows/X64/JavonetPerl532RuntimeNativeAuxiliary.dll +0 -0
  384. package/Binaries/Native/Windows/X64/JavonetPerl540RuntimeNativeAuxiliary.dll +0 -0
  385. package/Binaries/Native/Windows/X64/JavonetPerlRuntimeNative.dll +0 -0
  386. package/Binaries/Native/Windows/X64/JavonetPhpRuntimeNative.dll +0 -0
  387. package/Binaries/Native/Windows/X64/JavonetPython2RuntimeNative.dll +0 -0
  388. package/Binaries/Native/Windows/X64/JavonetPythonRuntimeNative.dll +0 -0
  389. package/Binaries/Native/Windows/X64/JavonetRuby278RuntimeNative.dll +0 -0
  390. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNative.dll +0 -0
  391. package/Binaries/Native/Windows/X64/JavonetRubyRuntimeNativeAuxiliary.dll +0 -0
  392. package/Binaries/Native/Windows/X64/JavonetTcpClient.dll +0 -0
  393. package/Binaries/Native/Windows/X64/JavonetTcpTlsClient.dll +0 -0
  394. package/Binaries/Native/Windows/X64/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  395. package/Binaries/Native/Windows/X64/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  396. package/Binaries/Native/Windows/X64/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  397. package/Binaries/Native/Windows/X64/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  398. package/Binaries/Native/Windows/X64/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  399. package/Binaries/Native/Windows/X64/NetVersionLatest.runtimeconfig.json +0 -10
  400. package/Binaries/Native/Windows/X64/Utils.dll +0 -0
  401. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  402. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  403. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  404. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  405. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  406. package/Binaries/Native/Windows/X64/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  407. package/Binaries/Native/Windows/X64/libcrypto-3-x64.dll +0 -0
  408. package/Binaries/Native/Windows/X64/libnode.dll +0 -0
  409. package/Binaries/Native/Windows/X64/libssl-3-x64.dll +0 -0
  410. package/Binaries/Native/Windows/X64/libxml2.dll +0 -0
  411. package/Binaries/Native/Windows/X64/libxmlsec-openssl.dll +0 -0
  412. package/Binaries/Native/Windows/X64/libxmlsec.dll +0 -0
  413. package/Binaries/Native/Windows/X64/libxslt.dll +0 -0
  414. package/Binaries/Native/Windows/X64/nethost.dll +0 -0
  415. package/Binaries/Native/Windows/X64/python27.dll +0 -0
  416. package/Binaries/Native/Windows/X64/version.txt +0 -1
  417. package/Binaries/Native/Windows/X64/x64-msvcrt-ruby270.dll +0 -0
  418. package/Binaries/Native/Windows/X64/x64-ucrt-ruby340.dll +0 -0
  419. package/Binaries/Native/Windows/X86/JavonetActivationService.dll +0 -0
  420. package/Binaries/Native/Windows/X86/JavonetClrRuntimeNative.dll +0 -0
  421. package/Binaries/Native/Windows/X86/JavonetCppRuntimeNative.dll +0 -0
  422. package/Binaries/Native/Windows/X86/JavonetGoRuntimeNative.dll +0 -0
  423. package/Binaries/Native/Windows/X86/JavonetJvmRuntimeNative.dll +0 -0
  424. package/Binaries/Native/Windows/X86/JavonetNetcoreRuntimeNative.dll +0 -0
  425. package/Binaries/Native/Windows/X86/JavonetPhpRuntimeNative.dll +0 -0
  426. package/Binaries/Native/Windows/X86/JavonetPython2RuntimeNative.dll +0 -0
  427. package/Binaries/Native/Windows/X86/JavonetPythonRuntimeNative.dll +0 -0
  428. package/Binaries/Native/Windows/X86/JavonetTcpClient.dll +0 -0
  429. package/Binaries/Native/Windows/X86/JavonetTcpTlsClient.dll +0 -0
  430. package/Binaries/Native/Windows/X86/NetVersion31LatestPatch.runtimeconfig.json +0 -10
  431. package/Binaries/Native/Windows/X86/NetVersion60LatestPatch.runtimeconfig.json +0 -10
  432. package/Binaries/Native/Windows/X86/NetVersion70LatestPatch.runtimeconfig.json +0 -10
  433. package/Binaries/Native/Windows/X86/NetVersion80LatestPatch.runtimeconfig.json +0 -10
  434. package/Binaries/Native/Windows/X86/NetVersion90LatestPatch.runtimeconfig.json +0 -10
  435. package/Binaries/Native/Windows/X86/NetVersionLatest.runtimeconfig.json +0 -10
  436. package/Binaries/Native/Windows/X86/Utils.dll +0 -0
  437. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni.h +0 -1960
  438. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Linux/jni_md.h +0 -51
  439. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni.h +0 -1960
  440. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/MacOs/jni_md.h +0 -51
  441. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni.h +0 -1960
  442. package/Binaries/Native/Windows/X86/dynamicCompilationHeaders/Windows/jni_md.h +0 -37
  443. package/Binaries/Native/Windows/X86/libcrypto-3.dll +0 -0
  444. package/Binaries/Native/Windows/X86/libssl-3.dll +0 -0
  445. package/Binaries/Native/Windows/X86/libxml2.dll +0 -0
  446. package/Binaries/Native/Windows/X86/libxmlsec-openssl.dll +0 -0
  447. package/Binaries/Native/Windows/X86/libxmlsec.dll +0 -0
  448. package/Binaries/Native/Windows/X86/libxslt.dll +0 -0
  449. package/Binaries/Native/Windows/X86/nethost.dll +0 -0
  450. package/Binaries/Native/Windows/X86/version.txt +0 -1
  451. package/Binaries/Netcore/Javonet.Netcore.Core.dll +0 -0
  452. package/Binaries/Netcore/Javonet.Netcore.Utils.dll +0 -0
  453. package/Binaries/Nodejs/index.js +0 -66
  454. package/Binaries/Nodejs/lib/core/delegatesCache/DelegatesCache.js +0 -35
  455. package/Binaries/Nodejs/lib/core/handler/AbstractHandler.js +0 -41
  456. package/Binaries/Nodejs/lib/core/handler/ArrayGetItemHandler.js +0 -38
  457. package/Binaries/Nodejs/lib/core/handler/ArrayGetRankHandler.js +0 -28
  458. package/Binaries/Nodejs/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  459. package/Binaries/Nodejs/lib/core/handler/ArrayHandler.js +0 -18
  460. package/Binaries/Nodejs/lib/core/handler/ArraySetItemHandler.js +0 -43
  461. package/Binaries/Nodejs/lib/core/handler/CastingHandler.js +0 -10
  462. package/Binaries/Nodejs/lib/core/handler/ConvertTypeHandler.js +0 -38
  463. package/Binaries/Nodejs/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  464. package/Binaries/Nodejs/lib/core/handler/DestructReferenceHandler.js +0 -19
  465. package/Binaries/Nodejs/lib/core/handler/EnableNamespaceHandler.js +0 -34
  466. package/Binaries/Nodejs/lib/core/handler/EnableTypeHandler.js +0 -35
  467. package/Binaries/Nodejs/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  468. package/Binaries/Nodejs/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  469. package/Binaries/Nodejs/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  470. package/Binaries/Nodejs/lib/core/handler/GetStaticFieldHandler.js +0 -36
  471. package/Binaries/Nodejs/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  472. package/Binaries/Nodejs/lib/core/handler/GetTypeHandler.js +0 -63
  473. package/Binaries/Nodejs/lib/core/handler/Handler.js +0 -98
  474. package/Binaries/Nodejs/lib/core/handler/InvokeDelegateHandler.js +0 -36
  475. package/Binaries/Nodejs/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  476. package/Binaries/Nodejs/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  477. package/Binaries/Nodejs/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  478. package/Binaries/Nodejs/lib/core/handler/LoadLibraryHandler.js +0 -48
  479. package/Binaries/Nodejs/lib/core/handler/PassDelegateHandler.js +0 -157
  480. package/Binaries/Nodejs/lib/core/handler/ResolveReferenceHandler.js +0 -13
  481. package/Binaries/Nodejs/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  482. package/Binaries/Nodejs/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  483. package/Binaries/Nodejs/lib/core/handler/SetStaticFieldHandler.js +0 -33
  484. package/Binaries/Nodejs/lib/core/handler/ValueHandler.js +0 -13
  485. package/Binaries/Nodejs/lib/core/interpreter/Interpreter.js +0 -142
  486. package/Binaries/Nodejs/lib/core/namespaceCache/NamespaceCache.js +0 -39
  487. package/Binaries/Nodejs/lib/core/protocol/CommandDeserializer.js +0 -181
  488. package/Binaries/Nodejs/lib/core/protocol/CommandSerializer.js +0 -50
  489. package/Binaries/Nodejs/lib/core/protocol/TypeDeserializer.js +0 -83
  490. package/Binaries/Nodejs/lib/core/protocol/TypeSerializer.js +0 -143
  491. package/Binaries/Nodejs/lib/core/receiver/Receiver.js +0 -32
  492. package/Binaries/Nodejs/lib/core/receiver/ReceiverNative.js +0 -13
  493. package/Binaries/Nodejs/lib/core/referenceCache/ReferencesCache.js +0 -30
  494. package/Binaries/Nodejs/lib/core/transmitter/Transmitter.js +0 -21
  495. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  496. package/Binaries/Nodejs/lib/core/transmitter/TransmitterWrapper.js +0 -47
  497. package/Binaries/Nodejs/lib/core/typeCache/TypeCache.js +0 -39
  498. package/Binaries/Nodejs/lib/core/webSocketClient/WebSocketClient.js +0 -136
  499. package/Binaries/Nodejs/lib/declarations.d.ts +0 -64
  500. package/Binaries/Nodejs/lib/sdk/ConfigRuntimeFactory.js +0 -155
  501. package/Binaries/Nodejs/lib/sdk/InvocationContext.js +0 -485
  502. package/Binaries/Nodejs/lib/sdk/Javonet.js +0 -105
  503. package/Binaries/Nodejs/lib/sdk/RuntimeContext.js +0 -300
  504. package/Binaries/Nodejs/lib/sdk/RuntimeFactory.js +0 -87
  505. package/Binaries/Nodejs/lib/sdk/tools/JsonFileResolver.js +0 -101
  506. package/Binaries/Nodejs/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  507. package/Binaries/Nodejs/lib/utils/Command.js +0 -69
  508. package/Binaries/Nodejs/lib/utils/CommandType.js +0 -47
  509. package/Binaries/Nodejs/lib/utils/ConnectionType.js +0 -8
  510. package/Binaries/Nodejs/lib/utils/CustomError.js +0 -8
  511. package/Binaries/Nodejs/lib/utils/ExceptionType.js +0 -13
  512. package/Binaries/Nodejs/lib/utils/RuntimeLogger.js +0 -30
  513. package/Binaries/Nodejs/lib/utils/RuntimeName.js +0 -16
  514. package/Binaries/Nodejs/lib/utils/RuntimeNameHandler.js +0 -38
  515. package/Binaries/Nodejs/lib/utils/StringEncodingMode.js +0 -9
  516. package/Binaries/Nodejs/lib/utils/Type.js +0 -17
  517. package/Binaries/Nodejs/lib/utils/TypesConverter.js +0 -91
  518. package/Binaries/Nodejs/lib/utils/connectionData/IConnectionData.js +0 -15
  519. package/Binaries/Nodejs/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  520. package/Binaries/Nodejs/lib/utils/connectionData/TcpConnectionData.js +0 -77
  521. package/Binaries/Nodejs/lib/utils/connectionData/WsConnectionData.js +0 -50
  522. package/Binaries/Nodejs/lib/utils/exception/ExceptionSerializer.js +0 -64
  523. package/Binaries/Nodejs/lib/utils/exception/ExceptionThrower.js +0 -95
  524. package/Binaries/Nodejs/lib/utils/guid/generateGuid.js +0 -9
  525. package/Binaries/Nodejs/lib/utils/uuid/REGEX.js +0 -2
  526. package/Binaries/Nodejs/lib/utils/uuid/rng.js +0 -12
  527. package/Binaries/Nodejs/lib/utils/uuid/stringify.js +0 -51
  528. package/Binaries/Nodejs/lib/utils/uuid/v4.js +0 -27
  529. package/Binaries/Nodejs/lib/utils/uuid/validate.js +0 -6
  530. package/Binaries/Perl/Linux/X64/deps/bin/moose-outdated +0 -22
  531. package/Binaries/Perl/Linux/X64/deps/bin/package-stash-conflicts +0 -22
  532. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-events +0 -62
  533. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-highlight +0 -54
  534. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load +0 -155
  535. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-load-dump +0 -314
  536. package/Binaries/Perl/Linux/X64/deps/bin/yamlpp-parse-emit +0 -123
  537. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  538. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  539. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  540. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  541. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  542. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  543. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Capture/Tiny.pm +0 -917
  544. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load/PP.pm +0 -59
  545. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Class/Load.pm +0 -420
  546. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  547. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  548. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  549. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Data/OptList.pm +0 -416
  550. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/GlobalDestruction.pm +0 -110
  551. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/OverloadInfo.pm +0 -309
  552. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace/Frame.pm +0 -272
  553. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Devel/StackTrace.pm +0 -624
  554. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Eval/Closure.pm +0 -379
  555. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config/MakeMaker.pm +0 -141
  556. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Config.pm +0 -152
  557. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Unix.pm +0 -97
  558. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/VMS.pm +0 -118
  559. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers/Windows.pm +0 -125
  560. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/Helpers.pm +0 -122
  561. package/Binaries/Perl/Linux/X64/deps/lib/perl5/ExtUtils/InstallPaths.pm +0 -627
  562. package/Binaries/Perl/Linux/X64/deps/lib/perl5/FFI/CheckLib.pm +0 -856
  563. package/Binaries/Perl/Linux/X64/deps/lib/perl5/File/Which.pm +0 -398
  564. package/Binaries/Perl/Linux/X64/deps/lib/perl5/IPC/System/Simple.pm +0 -1115
  565. package/Binaries/Perl/Linux/X64/deps/lib/perl5/MRO/Compat.pm +0 -407
  566. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Implementation.pm +0 -290
  567. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime/Conflicts.pm +0 -105
  568. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Module/Runtime.pm +0 -520
  569. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  570. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  571. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  572. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  573. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  574. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  575. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  576. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  577. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  578. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  579. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  580. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  581. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  582. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  583. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  584. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  585. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  586. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  587. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  588. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  589. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  590. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  591. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  592. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  593. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  594. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  595. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  596. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  597. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  598. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  599. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  600. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  601. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  602. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  603. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  604. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  605. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  606. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  607. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  608. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  609. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  610. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  611. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  612. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  613. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  614. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  615. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  616. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  617. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  618. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  619. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  620. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  621. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  622. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  623. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  624. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  625. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  626. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  627. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  628. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  629. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  630. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  631. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  632. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  633. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  634. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  635. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  636. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  637. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  638. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  639. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  640. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  641. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  642. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  643. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  644. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  645. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  646. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  647. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  648. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  649. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  650. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  651. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  652. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  653. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  654. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  655. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  656. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  657. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  658. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  659. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  660. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  661. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  662. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  663. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  664. package/Binaries/Perl/Linux/X64/deps/lib/perl5/PPI.pm +0 -822
  665. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/DeprecationManager.pm +0 -368
  666. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/Conflicts.pm +0 -35
  667. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash/PP.pm +0 -503
  668. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Package/Stash.pm +0 -308
  669. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Path/Tiny.pm +0 -3946
  670. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  671. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Scope/Guard.pm +0 -183
  672. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Cookbook.pod +0 -602
  673. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Progressive.pm +0 -174
  674. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Tutorial.pod +0 -539
  675. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter/Util.pm +0 -488
  676. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Exporter.pm +0 -1769
  677. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Sub/Install.pm +0 -486
  678. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Task/Weaken.pm +0 -95
  679. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  680. package/Binaries/Perl/Linux/X64/deps/lib/perl5/Try/Tiny.pm +0 -820
  681. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  682. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  683. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  684. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  685. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  686. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  687. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  688. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  689. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  690. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  691. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  692. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  693. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  694. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  695. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  696. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  697. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  698. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  699. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  700. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  701. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  702. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  703. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  704. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  705. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  706. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  707. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  708. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  709. package/Binaries/Perl/Linux/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  710. package/Binaries/Perl/Linux/X64/deps/lib/perl5/aliased.pm +0 -371
  711. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  712. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Attribute-Util-1.07/install.json +0 -1
  713. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/MYMETA.json +0 -124
  714. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Capture-Tiny-0.50/install.json +0 -1
  715. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/MYMETA.json +0 -1290
  716. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-0.25/install.json +0 -1
  717. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/MYMETA.json +0 -1222
  718. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Class-Load-XS-0.10/install.json +0 -1
  719. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  720. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-Cmp-0.010/install.json +0 -1
  721. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/MYMETA.json +0 -570
  722. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-OptList-0.114/install.json +0 -1
  723. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  724. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Data-UUID-1.227/install.json +0 -1
  725. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/MYMETA.json +0 -65
  726. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-GlobalDestruction-0.14/install.json +0 -1
  727. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/MYMETA.json +0 -73
  728. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-OverloadInfo-0.007/install.json +0 -1
  729. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/MYMETA.json +0 -1081
  730. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Devel-StackTrace-2.05/install.json +0 -1
  731. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/MYMETA.json +0 -463
  732. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Dist-CheckConflicts-0.11/install.json +0 -1
  733. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/MYMETA.json +0 -599
  734. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Eval-Closure-0.14/install.json +0 -1
  735. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/MYMETA.json +0 -79
  736. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Config-0.010/install.json +0 -1
  737. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/MYMETA.json +0 -89
  738. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-Helpers-0.028/install.json +0 -1
  739. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/MYMETA.json +0 -76
  740. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/ExtUtils-InstallPaths-0.014/install.json +0 -1
  741. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/MYMETA.json +0 -156
  742. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-CheckLib-0.31/install.json +0 -1
  743. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/MYMETA.json +0 -198
  744. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/FFI-Platypus-2.10/install.json +0 -1
  745. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/MYMETA.json +0 -81
  746. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/File-Which-1.27/install.json +0 -1
  747. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/MYMETA.json +0 -69
  748. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/IPC-System-Simple-1.30/install.json +0 -1
  749. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/MYMETA.json +0 -66
  750. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/MRO-Compat-0.15/install.json +0 -1
  751. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/MYMETA.json +0 -122
  752. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Build-Tiny-0.051/install.json +0 -1
  753. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/MYMETA.json +0 -625
  754. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Implementation-0.09/install.json +0 -1
  755. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/MYMETA.json +0 -83
  756. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-0.018/install.json +0 -1
  757. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/MYMETA.json +0 -1162
  758. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Module-Runtime-Conflicts-0.003/install.json +0 -1
  759. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/MYMETA.json +0 -3189
  760. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Moose-2.2207/install.json +0 -1
  761. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  762. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Nice-Try-v1.3.15/install.json +0 -1
  763. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/MYMETA.json +0 -1115
  764. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-1.281/install.json +0 -1
  765. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  766. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/PPI-XS-0.910/install.json +0 -1
  767. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/MYMETA.json +0 -1069
  768. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-DeprecationManager-0.18/install.json +0 -1
  769. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/MYMETA.json +0 -1371
  770. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-0.40/install.json +0 -1
  771. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/MYMETA.json +0 -1331
  772. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Package-Stash-XS-0.30/install.json +0 -1
  773. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/MYMETA.json +0 -89
  774. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Params-Util-1.102/install.json +0 -1
  775. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/MYMETA.json +0 -186
  776. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Path-Tiny-0.148/install.json +0 -1
  777. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  778. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Safe-Isa-1.000010/install.json +0 -1
  779. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  780. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  781. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/MYMETA.json +0 -53
  782. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Scope-Guard-0.21/install.json +0 -1
  783. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/MYMETA.json +0 -595
  784. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-0.991/install.json +0 -1
  785. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/MYMETA.json +0 -55
  786. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Exporter-Progressive-0.001013/install.json +0 -1
  787. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/MYMETA.json +0 -572
  788. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Sub-Install-0.929/install.json +0 -1
  789. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/MYMETA.json +0 -1092
  790. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Task-Weaken-1.06/install.json +0 -1
  791. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  792. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Test-Fatal-0.017/install.json +0 -1
  793. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/MYMETA.json +0 -1344
  794. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Try-Tiny-0.32/install.json +0 -1
  795. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/MYMETA.json +0 -40
  796. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/Want-0.29/install.json +0 -1
  797. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  798. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/YAML-PP-v0.39.0/install.json +0 -1
  799. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/MYMETA.json +0 -1035
  800. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/aliased-0.34/install.json +0 -1
  801. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  802. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/.meta/autobox-v3.0.2/install.json +0 -1
  803. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/Load/XS.pm +0 -89
  804. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Attribute.pm +0 -1100
  805. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class/Immutable/Trait.pm +0 -172
  806. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Class.pm +0 -2312
  807. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Deprecated.pm +0 -95
  808. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Instance.pm +0 -533
  809. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Accessor.pm +0 -404
  810. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Constructor.pm +0 -251
  811. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Generated.pm +0 -142
  812. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Inlined.pm +0 -191
  813. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Meta.pm +0 -169
  814. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method/Wrapped.pm +0 -333
  815. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Method.pm +0 -356
  816. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/MiniTrait.pm +0 -113
  817. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/AttributeCore.pm +0 -125
  818. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasAttributes.pm +0 -171
  819. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasMethods.pm +0 -304
  820. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin/HasOverloads.pm +0 -243
  821. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Mixin.pm +0 -107
  822. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Module.pm +0 -209
  823. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Object.pm +0 -196
  824. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Overload.pm +0 -340
  825. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP/Package.pm +0 -460
  826. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Class/MOP.pm +0 -1222
  827. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Data/UUID.pm +0 -158
  828. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Build.pm +0 -634
  829. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/API.pm +0 -293
  830. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Buffer.pm +0 -366
  831. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Bundle.pm +0 -795
  832. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Closure.pm +0 -199
  833. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Constant.pm +0 -246
  834. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/DL.pm +0 -231
  835. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Function.pm +0 -229
  836. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Internal.pm +0 -96
  837. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/ASM.pm +0 -126
  838. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/C.pm +0 -123
  839. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang/Win32.pm +0 -457
  840. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Lang.pm +0 -141
  841. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Legacy.pm +0 -140
  842. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Memory.pm +0 -268
  843. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/Meta.pm +0 -148
  844. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record/TieArray.pm +0 -174
  845. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Record.pm +0 -575
  846. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/ShareConfig.pm +0 -122
  847. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/PointerSizeBuffer.pm +0 -162
  848. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringArray.pm +0 -272
  849. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/StringPointer.pm +0 -190
  850. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type/WideString.pm +0 -529
  851. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/Type.pm +0 -1399
  852. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version0.pm +0 -285
  853. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version1.pm +0 -390
  854. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser/Version2.pm +0 -115
  855. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus/TypeParser.pm +0 -183
  856. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Platypus.pm +0 -3302
  857. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Builder.pm +0 -538
  858. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner/Result.pm +0 -134
  859. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe/Runner.pm +0 -204
  860. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Probe.pm +0 -715
  861. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/Temp.pm +0 -147
  862. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/FFI/typemap +0 -46
  863. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Conflicts.pm +0 -132
  864. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BankAccount_MethodModifiersAndSubclassing.pod +0 -384
  865. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_AttributeFeatures.pod +0 -397
  866. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/BinaryTree_BuilderAndLazyBuild.pod +0 -176
  867. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Company_Subtypes.pod +0 -615
  868. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/DateTime_ExtendingNonMooseParent.pod +0 -127
  869. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Document_AugmentAndInner.pod +0 -197
  870. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Genome_OverloadingSubtypesAndCoercion.pod +0 -318
  871. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/HTTP_SubtypesAndCoercion.pod +0 -345
  872. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Immutable.pod +0 -99
  873. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Person_BUILDARGSAndBUILD.pod +0 -180
  874. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Basics/Point_AttributesAndSubclassing.pod +0 -489
  875. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Debugging_BaseClassRole.pod +0 -153
  876. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/ExtensionOverview.pod +0 -404
  877. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Extending/Mooseish_MooseSugar.pod +0 -160
  878. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Debugging_BaseClassReplacement.pod +0 -172
  879. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Labeled_AttributeMetaclass.pod +0 -337
  880. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Legacy/Table_ClassMetaclass.pod +0 -132
  881. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/GlobRef_InstanceMetaclass.pod +0 -304
  882. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Labeled_AttributeTrait.pod +0 -325
  883. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/PrivateOrPublic_MethodMetaclass.pod +0 -224
  884. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/Table_MetaclassTrait.pod +0 -157
  885. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Meta/WhyMeta.pod +0 -117
  886. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/ApplicationToInstance.pod +0 -191
  887. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Comparable_CodeReuse.pod +0 -379
  888. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Roles/Restartable_AdvancedComposition.pod +0 -230
  889. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Keywords.pod +0 -240
  890. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Snack/Types.pod +0 -130
  891. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook/Style.pod +0 -77
  892. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Cookbook.pod +0 -289
  893. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Deprecated.pm +0 -98
  894. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AccessorMustReadWrite.pm +0 -14
  895. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddParameterizableTypeTakesParameterizableType.pm +0 -19
  896. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleTakesAMooseMetaRoleInstance.pm +0 -19
  897. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AddRoleToARoleTakesAMooseMetaRole.pm +0 -19
  898. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ApplyTakesABlessedInstance.pm +0 -19
  899. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttachToClassNeedsAClassMOPClassInstanceOrASubclass.pm +0 -19
  900. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInRoles.pm +0 -32
  901. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeConflictInSummation.pm +0 -28
  902. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeExtensionIsNotSupportedInRoles.pm +0 -19
  903. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeIsRequired.pm +0 -45
  904. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeMustBeAnClassMOPMixinAttributeCoreOrSubclass.pm +0 -19
  905. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeNamesDoNotMatch.pm +0 -25
  906. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotAnObject.pm +0 -28
  907. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AttributeValueIsNotDefined.pm +0 -22
  908. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/AutoDeRefNeedsArrayRefOrHashRef.pm +0 -14
  909. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BadOptionFormat.pm +0 -25
  910. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BothBuilderAndDefaultAreNotAllowed.pm +0 -19
  911. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderDoesNotExist.pm +0 -14
  912. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForAttribute.pm +0 -14
  913. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMethodNotSupportedForInlineAttribute.pm +0 -26
  914. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/BuilderMustBeAMethodName.pm +0 -19
  915. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingMethodOnAnImmutableInstance.pm +0 -19
  916. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CallingReadOnlyMethodOnAnImmutableInstance.pm +0 -19
  917. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanExtendOnlyClasses.pm +0 -15
  918. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyConsumeRole.pm +0 -18
  919. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanOnlyWrapBlessedCode.pm +0 -25
  920. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASubclass.pm +0 -15
  921. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CanReblessOnlyIntoASuperclass.pm +0 -14
  922. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAdditionalTypeCoercionsToUnion.pm +0 -18
  923. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAddAsAnAttributeToARole.pm +0 -20
  924. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotApplyBaseClassRolesToRole.pm +0 -13
  925. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAssignValueToReadOnlyAccessor.pm +0 -20
  926. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentIfLocalMethodPresent.pm +0 -13
  927. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAugmentNoSuperMethod.pm +0 -26
  928. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDerefWithoutIsa.pm +0 -14
  929. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotAutoDereferenceTypeConstraint.pm +0 -14
  930. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCalculateNativeType.pm +0 -14
  931. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractBaseMethod.pm +0 -19
  932. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCallAnAbstractMethod.pm +0 -12
  933. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAWeakRef.pm +0 -14
  934. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCoerceAttributeWhichHasNoCoercion.pm +0 -17
  935. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateHigherOrderTypeWithoutATypeParameter.pm +0 -13
  936. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresent.pm +0 -25
  937. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotCreateMethodAliasLocalMethodIsPresentInClass.pm +0 -19
  938. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateLocalMethodIsPresent.pm +0 -14
  939. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotDelegateWithoutIsa.pm +0 -13
  940. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindDelegateMetaclass.pm +0 -14
  941. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindType.pm +0 -19
  942. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFindTypeGivenToMatchOnType.pm +0 -33
  943. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotFixMetaclassCompatibility.pm +0 -26
  944. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotGenerateInlineConstraint.pm +0 -30
  945. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInitializeMooseMetaRoleComposite.pm +0 -30
  946. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotInlineTypeConstraintCheck.pm +0 -14
  947. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotLocatePackageInINC.pm +0 -41
  948. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotMakeMetaclassCompatible.pm +0 -23
  949. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideALocalMethod.pm +0 -20
  950. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideBodyOfMetaMethods.pm +0 -19
  951. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideLocalMethodIsPresent.pm +0 -13
  952. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotOverrideNoSuperMethod.pm +0 -26
  953. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotRegisterUnnamedTypeConstraint.pm +0 -12
  954. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CannotUseLazyBuildAndDefaultSimultaneously.pm +0 -14
  955. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CircularReferenceInAlso.pm +0 -31
  956. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesNotHaveInitMeta.pm +0 -22
  957. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassDoesTheExcludedRole.pm +0 -22
  958. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ClassNamesDoNotMatch.pm +0 -25
  959. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CloneObjectExpectsAnInstanceOfMetaclass.pm +0 -20
  960. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CodeBlockMustBeACodeRef.pm +0 -13
  961. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercingWithoutCoercions.pm +0 -12
  962. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionAlreadyExists.pm +0 -20
  963. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CoercionNeedsTypeConstraint.pm +0 -14
  964. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusions.pm +0 -22
  965. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConflictDetectedInCheckRoleExclusionsInToClass.pm +0 -16
  966. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ConstructClassInstanceTakesPackageName.pm +0 -12
  967. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateMethod.pm +0 -32
  968. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotCreateWriter.pm +0 -24
  969. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalConstructor.pm +0 -34
  970. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotEvalDestructor.pm +0 -34
  971. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotFindTypeConstraintToCoerceFrom.pm +0 -20
  972. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotGenerateInlineAttributeMethod.pm +0 -26
  973. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotLocateTypeConstraintForUnion.pm +0 -14
  974. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CouldNotParseType.pm +0 -30
  975. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfAttributes.pm +0 -13
  976. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesArrayRefOfSuperclasses.pm +0 -13
  977. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateMOPClassTakesHashRefOfMethods.pm +0 -13
  978. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesArrayRefOfRoles.pm +0 -13
  979. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfAttributes.pm +0 -13
  980. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/CreateTakesHashRefOfMethods.pm +0 -13
  981. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DefaultToMatchOnTypeMustBeCodeRef.pm +0 -33
  982. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToAClassWhichIsNotLoaded.pm +0 -20
  983. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToARoleWhichIsNotLoaded.pm +0 -20
  984. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DelegationToATypeWhichIsNotAClass.pm +0 -14
  985. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/DoesRequiresRoleName.pm +0 -13
  986. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  987. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/EnumValuesMustBeString.pm +0 -26
  988. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ExtendsMissingArgs.pm +0 -13
  989. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/HandlesMustBeAHashRef.pm +0 -20
  990. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalInheritedOptions.pm +0 -23
  991. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IllegalMethodTypeToAddMethodModifier.pm +0 -31
  992. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IncompatibleMetaclassOfSuperclass.pm +0 -27
  993. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitMetaRequiresClass.pm +0 -13
  994. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InitializeTakesUnBlessedPackageName.pm +0 -18
  995. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceBlessedIntoWrongClass.pm +0 -14
  996. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InstanceMustBeABlessedReference.pm +0 -20
  997. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgPassedToMooseUtilMetaRole.pm +0 -41
  998. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentToMethod.pm +0 -45
  999. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidArgumentsToTraitAliases.pm +0 -32
  1000. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidBaseTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1001. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHandleValue.pm +0 -20
  1002. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidHasProvidedInARole.pm +0 -19
  1003. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidNameForType.pm +0 -17
  1004. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidOverloadOperator.pm +0 -21
  1005. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidRoleApplication.pm +0 -19
  1006. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeConstraint.pm +0 -24
  1007. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidTypeGivenToCreateParameterizedTypeConstraint.pm +0 -14
  1008. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/InvalidValueForIs.pm +0 -14
  1009. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaDoesNotDoTheRole.pm +0 -14
  1010. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/IsaLacksDoesMethod.pm +0 -14
  1011. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/LazyAttributeNeedsADefault.pm +0 -14
  1012. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Legacy.pm +0 -8
  1013. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MOPAttributeNewNeedsAttributeName.pm +0 -19
  1014. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MatchActionMustBeACodeRef.pm +0 -28
  1015. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MessageParameterMustBeCodeRef.pm +0 -19
  1016. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsAClassNotASubclassOfGivenMetaclass.pm +0 -24
  1017. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsARoleNotASubclassOfGivenMetaclass.pm +0 -26
  1018. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassIsNotASubclassOfGivenMetaclass.pm +0 -23
  1019. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaClass.pm +0 -14
  1020. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeASubclassOfMooseMetaRole.pm +0 -14
  1021. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassMustBeDerivedFromClassMOPClass.pm +0 -19
  1022. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassNotLoaded.pm +0 -14
  1023. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MetaclassTypeIncompatible.pm +0 -39
  1024. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectedAMetaclassObject.pm +0 -24
  1025. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsFewerArgs.pm +0 -27
  1026. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodExpectsMoreArgs.pm +0 -25
  1027. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodModifierNeedsMethodName.pm +0 -13
  1028. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameConflictInRoles.pm +0 -47
  1029. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotFoundInInheritanceHierarchy.pm +0 -20
  1030. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MethodNameNotGiven.pm +0 -13
  1031. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAMethodName.pm +0 -13
  1032. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnAttributeName.pm +0 -13
  1033. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustDefineAnOverloadOperator.pm +0 -13
  1034. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustHaveAtLeastOneValueToEnumerate.pm +0 -19
  1035. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAHashOfOptions.pm +0 -19
  1036. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAMooseMetaRoleInstanceOrSubclass.pm +0 -24
  1037. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassAPackageNameOrAnExistingClassMOPPackageInstance.pm +0 -19
  1038. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfArguments.pm +0 -25
  1039. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustPassEvenNumberOfAttributeOptions.pm +0 -24
  1040. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustProvideANameForTheAttribute.pm +0 -19
  1041. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneMethod.pm +0 -13
  1042. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRole.pm +0 -13
  1043. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSpecifyAtleastOneRoleToApplicant.pm +0 -19
  1044. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAClassMOPAttributeInstance.pm +0 -19
  1045. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyADelegateToMethod.pm +0 -19
  1046. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMetaclass.pm +0 -20
  1047. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAMooseMetaAttributeInstance.pm +0 -19
  1048. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAccessorTypeToConstructWith.pm +0 -19
  1049. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyAnAttributeToConstructWith.pm +0 -19
  1050. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyArrayRefAsCurriedArguments.pm +0 -13
  1051. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/MustSupplyPackageNameAndName.pm +0 -20
  1052. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeedsTypeConstraintUnionForTypeCoercionUnion.pm +0 -25
  1053. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherAttributeNorAttributeNameIsGiven.pm +0 -12
  1054. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherClassNorClassNameIsGiven.pm +0 -12
  1055. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherRoleNorRoleNameIsGiven.pm +0 -12
  1056. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NeitherTypeNorTypeNameIsGiven.pm +0 -12
  1057. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoAttributeFoundInSuperClass.pm +0 -14
  1058. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoBodyToInitializeInAnAbstractBaseClass.pm +0 -19
  1059. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoCasesMatched.pm +0 -27
  1060. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoConstraintCheckForTypeConstraint.pm +0 -14
  1061. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoDestructorClassSpecified.pm +0 -13
  1062. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoImmutableTraitSpecifiedForClass.pm +0 -17
  1063. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/NoParentGivenToSubtype.pm +0 -18
  1064. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OnlyInstancesCanBeCloned.pm +0 -20
  1065. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OperatorIsRequired.pm +0 -19
  1066. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadConflictInSummation.pm +0 -62
  1067. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaClass.pm +0 -13
  1068. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaMethod.pm +0 -13
  1069. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMetaOverload.pm +0 -13
  1070. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAMethodNameOrCoderef.pm +0 -13
  1071. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresAnOperator.pm +0 -13
  1072. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverloadRequiresNamesForCoderef.pm +0 -13
  1073. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInComposition.pm +0 -43
  1074. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/OverrideConflictInSummation.pm +0 -66
  1075. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageDoesNotUseMooseExporter.pm +0 -28
  1076. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackageNameAndNameParamsNotGivenToWrap.pm +0 -25
  1077. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/PackagesAndModulesAreNotCachable.pm +0 -26
  1078. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ParameterIsNotSubtypeOfParent.pm +0 -26
  1079. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ReferencesAreNotAllowedAsDefault.pm +0 -27
  1080. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeLacksInitialization.pm +0 -19
  1081. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredAttributeNeedsADefault.pm +0 -14
  1082. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsImportedByClass.pm +0 -46
  1083. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RequiredMethodsNotImplementedByClass.pm +0 -31
  1084. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Attribute.pm +0 -12
  1085. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/AttributeName.pm +0 -12
  1086. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Class.pm +0 -14
  1087. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/EitherAttributeOrAttributeName.pm +0 -49
  1088. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Instance.pm +0 -12
  1089. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InstanceClass.pm +0 -12
  1090. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/InvalidAttributeOptions.pm +0 -13
  1091. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Method.pm +0 -12
  1092. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/ParamsHash.pm +0 -12
  1093. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/Role.pm +0 -16
  1094. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreate.pm +0 -13
  1095. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/RoleForCreateMOPClass.pm +0 -13
  1096. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/Role/TypeConstraint.pm +0 -14
  1097. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleDoesTheExcludedRole.pm +0 -28
  1098. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleExclusionConflict.pm +0 -27
  1099. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequired.pm +0 -13
  1100. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RoleNameRequiredForMooseMetaRole.pm +0 -13
  1101. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportAugment.pm +0 -12
  1102. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportExtends.pm +0 -12
  1103. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportInner.pm +0 -12
  1104. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesDoNotSupportRegexReferencesForMethodModifiers.pm +0 -20
  1105. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesInCreateTakesAnArrayRef.pm +0 -14
  1106. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/RolesListMustBeInstancesOfMooseMetaRole.pm +0 -26
  1107. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/SingleParamsToNewMustBeHashRef.pm +0 -12
  1108. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TriggerMustBeACodeRef.pm +0 -14
  1109. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintCannotBeUsedForAParameterizableType.pm +0 -25
  1110. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeConstraintIsAlreadyCreated.pm +0 -26
  1111. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/TypeParameterMustBeMooseMetaType.pm +0 -13
  1112. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeHandles.pm +0 -20
  1113. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToCanonicalizeNonRolePackage.pm +0 -20
  1114. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnableToRecognizeDelegateMetaclass.pm +0 -22
  1115. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UndefinedHashKeysPassedToMethod.pm +0 -25
  1116. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionCalledWithAnArrayRefAndAdditionalArgs.pm +0 -24
  1117. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/UnionTakesAtleastTwoTypeNames.pm +0 -12
  1118. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForInlineTypeConstraint.pm +0 -49
  1119. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/ValidationFailedForTypeConstraint.pm +0 -33
  1120. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrapTakesACodeRefToBless.pm +0 -26
  1121. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception/WrongTypeConstraintGiven.pm +0 -21
  1122. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exception.pm +0 -211
  1123. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Exporter.pm +0 -1048
  1124. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Intro.pod +0 -77
  1125. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Attributes.pod +0 -709
  1126. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/BestPractices.pod +0 -292
  1127. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Classes.pod +0 -218
  1128. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Concepts.pod +0 -439
  1129. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Construction.pod +0 -228
  1130. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Contributing.pod +0 -545
  1131. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delegation.pod +0 -313
  1132. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Delta.pod +0 -1275
  1133. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions/Manifest.pod +0 -4124
  1134. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Exceptions.pod +0 -239
  1135. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/FAQ.pod +0 -470
  1136. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MOP.pod +0 -214
  1137. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MethodModifiers.pod +0 -449
  1138. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/MooseX.pod +0 -326
  1139. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Resources.pod +0 -526
  1140. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Roles.pod +0 -557
  1141. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Support.pod +0 -204
  1142. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Types.pod +0 -501
  1143. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual/Unsweetened.pod +0 -386
  1144. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Manual.pod +0 -334
  1145. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Array.pm +0 -387
  1146. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Bool.pm +0 -146
  1147. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Code.pm +0 -129
  1148. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Counter.pm +0 -157
  1149. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Hash.pm +0 -227
  1150. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/Number.pm +0 -155
  1151. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait/String.pm +0 -187
  1152. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native/Trait.pm +0 -244
  1153. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute/Native.pm +0 -299
  1154. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Attribute.pm +0 -1810
  1155. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class/Immutable/Trait.pm +0 -123
  1156. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Class.pm +0 -1014
  1157. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Instance.pm +0 -109
  1158. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/Writer.pm +0 -27
  1159. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/accessor.pm +0 -56
  1160. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/clear.pm +0 -28
  1161. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/count.pm +0 -22
  1162. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/delete.pm +0 -50
  1163. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/elements.pm +0 -22
  1164. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first.pm +0 -42
  1165. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/first_index.pm +0 -51
  1166. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/get.pm +0 -31
  1167. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/grep.pm +0 -41
  1168. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/insert.pm +0 -58
  1169. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/is_empty.pm +0 -22
  1170. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/join.pm +0 -41
  1171. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/map.pm +0 -41
  1172. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/natatime.pm +0 -66
  1173. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/pop.pm +0 -47
  1174. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/push.pm +0 -36
  1175. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/reduce.pm +0 -42
  1176. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/set.pm +0 -64
  1177. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shallow_clone.pm +0 -26
  1178. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shift.pm +0 -47
  1179. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/shuffle.pm +0 -24
  1180. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort.pm +0 -44
  1181. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/sort_in_place.pm +0 -45
  1182. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/splice.pm +0 -72
  1183. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/uniq.pm +0 -24
  1184. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array/unshift.pm +0 -36
  1185. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Array.pm +0 -28
  1186. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/not.pm +0 -20
  1187. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/set.pm +0 -24
  1188. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/toggle.pm +0 -29
  1189. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Bool/unset.pm +0 -24
  1190. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute.pm +0 -20
  1191. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Code/execute_method.pm +0 -20
  1192. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Collection.pm +0 -167
  1193. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/Writer.pm +0 -24
  1194. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/dec.pm +0 -30
  1195. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/inc.pm +0 -30
  1196. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/reset.pm +0 -36
  1197. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Counter/set.pm +0 -25
  1198. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/Writer.pm +0 -41
  1199. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/accessor.pm +0 -61
  1200. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/clear.pm +0 -37
  1201. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/count.pm +0 -22
  1202. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/defined.pm +0 -31
  1203. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/delete.pm +0 -46
  1204. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/elements.pm +0 -23
  1205. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/exists.pm +0 -31
  1206. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/get.pm +0 -35
  1207. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/is_empty.pm +0 -22
  1208. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/keys.pm +0 -22
  1209. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/kv.pm +0 -23
  1210. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/set.pm +0 -99
  1211. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/shallow_clone.pm +0 -26
  1212. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash/values.pm +0 -22
  1213. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Hash.pm +0 -28
  1214. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/abs.pm +0 -29
  1215. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/add.pm +0 -31
  1216. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/div.pm +0 -31
  1217. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mod.pm +0 -31
  1218. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/mul.pm +0 -31
  1219. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/set.pm +0 -25
  1220. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Number/sub.pm +0 -31
  1221. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Reader.pm +0 -47
  1222. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/append.pm +0 -31
  1223. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chomp.pm +0 -40
  1224. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/chop.pm +0 -40
  1225. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/clear.pm +0 -24
  1226. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/inc.pm +0 -33
  1227. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/length.pm +0 -22
  1228. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/match.pm +0 -42
  1229. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/prepend.pm +0 -31
  1230. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/replace.pm +0 -69
  1231. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/String/substr.pm +0 -123
  1232. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native/Writer.pm +0 -174
  1233. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor/Native.pm +0 -157
  1234. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Accessor.pm +0 -208
  1235. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Augmented.pm +0 -171
  1236. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Constructor.pm +0 -145
  1237. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Delegation.pm +0 -307
  1238. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Destructor.pm +0 -251
  1239. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Meta.pm +0 -112
  1240. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method/Overridden.pm +0 -160
  1241. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Method.pm +0 -100
  1242. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Mixin/AttributeCore.pm +0 -185
  1243. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Object/Trait.pm +0 -107
  1244. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/RoleSummation.pm +0 -440
  1245. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToClass.pm +0 -314
  1246. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToInstance.pm +0 -142
  1247. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application/ToRole.pm +0 -283
  1248. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Application.pm +0 -225
  1249. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Attribute.pm +0 -259
  1250. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Composite.pm +0 -320
  1251. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Conflicting.pm +0 -135
  1252. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method/Required.pm +0 -127
  1253. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role/Method.pm +0 -101
  1254. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/Role.pm +0 -1059
  1255. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion/Union.pm +0 -141
  1256. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeCoercion.pm +0 -239
  1257. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Class.pm +0 -261
  1258. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/DuckType.pm +0 -217
  1259. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Enum.pm +0 -235
  1260. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterizable.pm +0 -200
  1261. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Parameterized.pm +0 -188
  1262. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Registry.pm +0 -206
  1263. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Role.pm +0 -235
  1264. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint/Union.pm +0 -346
  1265. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Meta/TypeConstraint.pm +0 -607
  1266. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Object.pm +0 -271
  1267. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Role.pm +0 -377
  1268. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Spec/Role.pod +0 -397
  1269. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Unsweetened.pod +0 -77
  1270. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/MetaRole.pm +0 -329
  1271. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints/Builtins.pm +0 -305
  1272. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util/TypeConstraints.pm +0 -1443
  1273. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose/Util.pm +0 -725
  1274. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Moose.pm +0 -1268
  1275. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/PPI/XS.pm +0 -137
  1276. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Package/Stash/XS.pm +0 -110
  1277. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util/PP.pm +0 -276
  1278. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Params/Util.pm +0 -486
  1279. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Scalar/Util/Numeric.pm +0 -137
  1280. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Test/Moose.pm +0 -228
  1281. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/Want.pm +0 -742
  1282. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Attribute/Util/.packlist +0 -12
  1283. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Capture/Tiny/.packlist +0 -2
  1284. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/.packlist +0 -3
  1285. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/.packlist +0 -3
  1286. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Class/Load/XS/XS.so +0 -0
  1287. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/Cmp/.packlist +0 -6
  1288. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/OptList/.packlist +0 -2
  1289. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/.packlist +0 -3
  1290. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Data/UUID/UUID.so +0 -0
  1291. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/GlobalDestruction/.packlist +0 -2
  1292. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/OverloadInfo/.packlist +0 -2
  1293. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Devel/StackTrace/.packlist +0 -4
  1294. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Eval/Closure/.packlist +0 -2
  1295. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Config/.packlist +0 -4
  1296. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/Helpers/.packlist +0 -8
  1297. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/ExtUtils/InstallPaths/.packlist +0 -2
  1298. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/CheckLib/.packlist +0 -2
  1299. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/.packlist +0 -98
  1300. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Constant/Constant.txt +0 -1
  1301. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Memory/Memory.txt +0 -1
  1302. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Platypus.so +0 -0
  1303. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/FFI/Platypus/Record/Meta/Meta.txt +0 -1
  1304. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/File/Which/.packlist +0 -2
  1305. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/IPC/System/Simple/.packlist +0 -2
  1306. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/MRO/Compat/.packlist +0 -2
  1307. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Implementation/.packlist +0 -2
  1308. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/.packlist +0 -2
  1309. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Module/Runtime/Conflicts/.packlist +0 -2
  1310. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/.packlist +0 -574
  1311. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Moose/Moose.so +0 -0
  1312. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Nice/Try/.packlist +0 -2
  1313. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/.packlist +0 -186
  1314. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/.packlist +0 -3
  1315. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/PPI/XS/XS.so +0 -0
  1316. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/DeprecationManager/.packlist +0 -2
  1317. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/.packlist +0 -6
  1318. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/.packlist +0 -3
  1319. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Package/Stash/XS/XS.so +0 -0
  1320. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/.packlist +0 -5
  1321. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Params/Util/Util.so +0 -0
  1322. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Path/Tiny/.packlist +0 -2
  1323. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Safe/Isa/.packlist +0 -2
  1324. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/.packlist +0 -3
  1325. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scalar/Util/Numeric/Numeric.so +0 -0
  1326. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Scope/Guard/.packlist +0 -2
  1327. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/.packlist +0 -8
  1328. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Exporter/Progressive/.packlist +0 -2
  1329. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Sub/Install/.packlist +0 -2
  1330. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Task/Weaken/.packlist +0 -2
  1331. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Test/Fatal/.packlist +0 -2
  1332. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Try/Tiny/.packlist +0 -2
  1333. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/.packlist +0 -3
  1334. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/Want/Want.so +0 -0
  1335. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/YAML/PP/.packlist +0 -55
  1336. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/aliased/.packlist +0 -2
  1337. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/.packlist +0 -5
  1338. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/auto/autobox/autobox.so +0 -0
  1339. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox/universal.pm +0 -13
  1340. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pm +0 -404
  1341. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/autobox.pod +0 -709
  1342. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/metaclass.pm +0 -155
  1343. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/oose.pm +0 -137
  1344. package/Binaries/Perl/Linux/X64/deps/lib/perl5/x86_64-linux-gnu-thread-multi/perllocal.pod +0 -968
  1345. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1346. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1347. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1348. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1349. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1350. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1351. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1352. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1353. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1354. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1355. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1356. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1357. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1358. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1359. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1360. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1361. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1362. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1363. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1364. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1365. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1366. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1367. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1368. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1369. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1370. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1371. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1372. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1373. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1374. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1375. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1376. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1377. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1378. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1379. package/Binaries/Perl/Linux/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1380. package/Binaries/Perl/Linux/X64/lib/Javonet/Javonet.pm +0 -82
  1381. package/Binaries/Perl/Linux/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1382. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1383. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1384. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1385. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1386. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1387. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1388. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1389. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1390. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1391. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1392. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1393. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1394. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1395. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1396. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1397. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1398. package/Binaries/Perl/Linux/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1399. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events +0 -62
  1400. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-events.bat +0 -79
  1401. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight +0 -54
  1402. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-highlight.bat +0 -71
  1403. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load +0 -155
  1404. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump +0 -314
  1405. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load-dump.bat +0 -331
  1406. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-load.bat +0 -172
  1407. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit +0 -123
  1408. package/Binaries/Perl/Windows/X64/deps/bin/yamlpp-parse-emit.bat +0 -140
  1409. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Abstract.pm +0 -74
  1410. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Alias.pm +0 -75
  1411. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Memoize.pm +0 -77
  1412. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Method.pm +0 -151
  1413. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/SigHandler.pm +0 -61
  1414. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Attribute/Util.pm +0 -101
  1415. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/Numeric.pm +0 -188
  1416. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp/StrOrNumeric.pm +0 -200
  1417. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Data/Cmp.pm +0 -278
  1418. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/MYMETA.json +0 -43
  1419. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Attribute-Util-1.07/install.json +0 -1
  1420. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/MYMETA.json +0 -591
  1421. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-Cmp-0.010/install.json +0 -1
  1422. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/MYMETA.json +0 -50
  1423. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Data-UUID-1.227/install.json +0 -1
  1424. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/MYMETA.json +0 -68
  1425. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Nice-Try-v1.3.15/install.json +0 -1
  1426. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/MYMETA.json +0 -1115
  1427. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-1.281/install.json +0 -1
  1428. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/MYMETA.json +0 -1045
  1429. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/PPI-XS-0.910/install.json +0 -1
  1430. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/MYMETA.json +0 -64
  1431. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Safe-Isa-1.000010/install.json +0 -1
  1432. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/MYMETA.json +0 -50
  1433. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Scalar-Util-Numeric-0.40/install.json +0 -1
  1434. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/MYMETA.json +0 -598
  1435. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Test-Fatal-0.017/install.json +0 -1
  1436. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/MYMETA.json +0 -40
  1437. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/Want-0.29/install.json +0 -1
  1438. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/MYMETA.json +0 -222
  1439. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/YAML-PP-v0.39.0/install.json +0 -1
  1440. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/MYMETA.json +0 -53
  1441. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/.meta/autobox-v3.0.2/install.json +0 -1
  1442. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Data/UUID.pm +0 -158
  1443. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/PPI/XS.pm +0 -137
  1444. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Scalar/Util/Numeric.pm +0 -137
  1445. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/Want.pm +0 -742
  1446. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Attribute/Util/.packlist +0 -6
  1447. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/Cmp/.packlist +0 -3
  1448. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/.packlist +0 -2
  1449. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Data/UUID/UUID.xs.dll +0 -0
  1450. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Nice/Try/.packlist +0 -1
  1451. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/.packlist +0 -95
  1452. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/.packlist +0 -2
  1453. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/PPI/XS/XS.xs.dll +0 -0
  1454. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Safe/Isa/.packlist +0 -1
  1455. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/.packlist +0 -2
  1456. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Scalar/Util/Numeric/Numeric.xs.dll +0 -0
  1457. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Test/Fatal/.packlist +0 -1
  1458. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/.packlist +0 -2
  1459. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/Want/Want.xs.dll +0 -0
  1460. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/YAML/PP/.packlist +0 -39
  1461. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/.packlist +0 -4
  1462. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/auto/autobox/autobox.xs.dll +0 -0
  1463. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox/universal.pm +0 -13
  1464. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pm +0 -404
  1465. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/autobox.pod +0 -709
  1466. package/Binaries/Perl/Windows/X64/deps/lib/perl5/MSWin32-x64-multi-thread/perllocal.pod +0 -264
  1467. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Nice/Try.pm +0 -3257
  1468. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Cache.pm +0 -301
  1469. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/File.pm +0 -136
  1470. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Fragment.pm +0 -90
  1471. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document/Normalized.pm +0 -315
  1472. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Document.pm +0 -1012
  1473. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Dumper.pm +0 -309
  1474. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Element.pm +0 -907
  1475. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception/ParserRejection.pm +0 -10
  1476. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Exception.pm +0 -108
  1477. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Find.pm +0 -391
  1478. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Lexer.pm +0 -1584
  1479. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Node.pm +0 -831
  1480. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal/Standard.pm +0 -139
  1481. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Normal.pm +0 -257
  1482. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Singletons.pm +0 -92
  1483. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Break.pm +0 -75
  1484. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Compound.pm +0 -205
  1485. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Data.pm +0 -81
  1486. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/End.pm +0 -79
  1487. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Expression.pm +0 -67
  1488. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Given.pm +0 -90
  1489. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include/Perl6.pm +0 -87
  1490. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Include.pm +0 -365
  1491. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Null.pm +0 -75
  1492. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Package.pm +0 -145
  1493. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Scheduled.pm +0 -124
  1494. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Sub.pm +0 -222
  1495. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Unknown.pm +0 -68
  1496. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/UnmatchedBrace.pm +0 -80
  1497. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/Variable.pm +0 -195
  1498. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement/When.pm +0 -100
  1499. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Statement.pm +0 -344
  1500. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Block.pm +0 -82
  1501. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Condition.pm +0 -67
  1502. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Constructor.pm +0 -62
  1503. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/For.pm +0 -77
  1504. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Given.pm +0 -63
  1505. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/List.pm +0 -87
  1506. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Signature.pm +0 -61
  1507. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Subscript.pm +0 -68
  1508. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/Unknown.pm +0 -69
  1509. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure/When.pm +0 -63
  1510. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Structure.pm +0 -348
  1511. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/ArrayIndex.pm +0 -77
  1512. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Attribute.pm +0 -176
  1513. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/BOM.pm +0 -113
  1514. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Cast.pm +0 -87
  1515. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Comment.pm +0 -146
  1516. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/DashedWord.pm +0 -96
  1517. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Data.pm +0 -116
  1518. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/End.pm +0 -111
  1519. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/HereDoc.pm +0 -338
  1520. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Label.pm +0 -58
  1521. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Magic.pm +0 -200
  1522. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Binary.pm +0 -117
  1523. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Exp.pm +0 -146
  1524. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Float.pm +0 -140
  1525. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Hex.pm +0 -108
  1526. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Octal.pm +0 -115
  1527. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number/Version.pm +0 -164
  1528. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Number.pm +0 -166
  1529. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Operator.pm +0 -124
  1530. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Pod.pm +0 -159
  1531. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Prototype.pm +0 -100
  1532. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Double.pm +0 -138
  1533. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Interpolate.pm +0 -76
  1534. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Literal.pm +0 -81
  1535. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote/Single.pm +0 -93
  1536. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Quote.pm +0 -120
  1537. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Backtick.pm +0 -62
  1538. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Command.pm +0 -62
  1539. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Readline.pm +0 -71
  1540. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Regexp.pm +0 -126
  1541. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike/Words.pm +0 -88
  1542. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/QuoteLike.pm +0 -77
  1543. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Match.pm +0 -76
  1544. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Substitute.pm +0 -66
  1545. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp/Transliterate.pm +0 -70
  1546. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Regexp.pm +0 -136
  1547. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Separator.pm +0 -64
  1548. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Structure.pm +0 -209
  1549. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Symbol.pm +0 -241
  1550. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Unknown.pm +0 -506
  1551. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Whitespace.pm +0 -454
  1552. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/Word.pm +0 -375
  1553. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Full.pm +0 -450
  1554. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine/Simple.pm +0 -67
  1555. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token/_QuoteEngine.pm +0 -240
  1556. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Token.pm +0 -245
  1557. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Tokenizer.pm +0 -1123
  1558. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform/UpdateCopyright.pm +0 -179
  1559. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Transform.pm +0 -240
  1560. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/Util.pm +0 -72
  1561. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI/XSAccessor.pm +0 -165
  1562. package/Binaries/Perl/Windows/X64/deps/lib/perl5/PPI.pm +0 -822
  1563. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Safe/Isa.pm +0 -213
  1564. package/Binaries/Perl/Windows/X64/deps/lib/perl5/Test/Fatal.pm +0 -477
  1565. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Common.pm +0 -273
  1566. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Constructor.pm +0 -435
  1567. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Dumper.pm +0 -283
  1568. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Emitter.pm +0 -1165
  1569. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Exception.pm +0 -79
  1570. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Grammar.pm +0 -2150
  1571. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Highlight.pm +0 -235
  1572. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Lexer.pm +0 -962
  1573. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Loader.pm +0 -103
  1574. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Parser.pm +0 -1469
  1575. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Perl.pm +0 -83
  1576. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Reader.pm +0 -78
  1577. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Render.pm +0 -155
  1578. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Representer.pm +0 -230
  1579. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Binary.pm +0 -102
  1580. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Catchall.pm +0 -76
  1581. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Core.pm +0 -155
  1582. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Failsafe.pm +0 -71
  1583. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Include.pm +0 -259
  1584. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/JSON.pm +0 -259
  1585. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Merge.pm +0 -109
  1586. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Perl.pm +0 -1004
  1587. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/Tie/IxHash.pm +0 -156
  1588. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema/YAML1_1.pm +0 -249
  1589. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Schema.pm +0 -447
  1590. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Type/MergeKey.pm +0 -40
  1591. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer/File.pm +0 -104
  1592. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP/Writer.pm +0 -89
  1593. package/Binaries/Perl/Windows/X64/deps/lib/perl5/YAML/PP.pm +0 -1547
  1594. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/Exception.pm +0 -29
  1595. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionSerializer.pm +0 -25
  1596. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/ExceptionThrower.pm +0 -40
  1597. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Exception/SdkExceptionHelper.pm +0 -93
  1598. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/AbstractHandler.pm +0 -11
  1599. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/AbstractCommandHandler.pm +0 -48
  1600. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetItemHandler.pm +0 -38
  1601. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetRankHandler.pm +0 -29
  1602. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArrayGetSizeHandler.pm +0 -37
  1603. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ArraySetItemHandler.pm +0 -40
  1604. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CastingHandler.pm +0 -22
  1605. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/CreateClassInstanceHandler.pm +0 -37
  1606. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/DestructReferenceHandler.pm +0 -39
  1607. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetInstanceFieldHandler.pm +0 -39
  1608. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetStaticFieldHandler.pm +0 -40
  1609. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/GetTypeHandler.pm +0 -40
  1610. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeGlobalFunctionHandler.pm +0 -63
  1611. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeInstanceMethodHandler.pm +0 -51
  1612. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/InvokeStaticMethodHandler.pm +0 -51
  1613. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/LoadLibraryHandler.pm +0 -42
  1614. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ResolveInstanceHandler.pm +0 -38
  1615. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetInstanceFieldHandler.pm +0 -40
  1616. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/SetStaticFieldHandler.pm +0 -42
  1617. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/CommandHandler/ValueHandler.pm +0 -29
  1618. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/HandlerDictionary.pm +0 -24
  1619. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/PerlHandler.pm +0 -174
  1620. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Handler/ReferencesCache.pm +0 -45
  1621. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Interpreter/Interpreter.pm +0 -44
  1622. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandDeserializer.pm +0 -204
  1623. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/CommandSerializer.pm +0 -88
  1624. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeDeserializer.pm +0 -97
  1625. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Protocol/TypeSerializer.pm +0 -145
  1626. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Receiver/Receiver.pm +0 -41
  1627. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitter.pm +0 -29
  1628. package/Binaries/Perl/Windows/X64/lib/Javonet/Core/Transmitter/PerlTransmitterWrapper.pm +0 -131
  1629. package/Binaries/Perl/Windows/X64/lib/Javonet/Javonet.pm +0 -82
  1630. package/Binaries/Perl/Windows/X64/lib/Javonet/JavonetPerlSdk.pm +0 -2
  1631. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommand.pm +0 -101
  1632. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/PerlCommandType.pm +0 -58
  1633. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLib.pm +0 -29
  1634. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/RuntimeLogger.pm +0 -37
  1635. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/StringEncodingMode.pm +0 -22
  1636. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Core/Type.pm +0 -30
  1637. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractEnumInvocationContext.pm +0 -22
  1638. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInstanceContext.pm +0 -18
  1639. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractInvocationContext.pm +0 -13
  1640. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractMethodInvocationContext.pm +0 -18
  1641. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeContext.pm +0 -17
  1642. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractRuntimeFactory.pm +0 -26
  1643. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/Abstract/AbstractTypeContext.pm +0 -15
  1644. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/ConnectionType.pm +0 -19
  1645. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/InvocationContext.pm +0 -450
  1646. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeContext.pm +0 -292
  1647. package/Binaries/Perl/Windows/X64/lib/Javonet/Sdk/Internal/RuntimeFactory.pm +0 -114
  1648. package/Binaries/Python/javonet/core/__init__.py +0 -0
  1649. package/Binaries/Python/javonet/core/callback/__init__.py +0 -0
  1650. package/Binaries/Python/javonet/core/callback/callbackFunc.py +0 -7
  1651. package/Binaries/Python/javonet/core/delegateCache/DelegatesCache.py +0 -39
  1652. package/Binaries/Python/javonet/core/delegateCache/__init__.py +0 -0
  1653. package/Binaries/Python/javonet/core/handler/AbstractCommandHandler.py +0 -20
  1654. package/Binaries/Python/javonet/core/handler/AbstractHandler.py +0 -3
  1655. package/Binaries/Python/javonet/core/handler/ArrayGetItemHandler.py +0 -27
  1656. package/Binaries/Python/javonet/core/handler/ArrayGetRankHandler.py +0 -25
  1657. package/Binaries/Python/javonet/core/handler/ArrayGetSizeHandler.py +0 -24
  1658. package/Binaries/Python/javonet/core/handler/ArrayHandler.py +0 -13
  1659. package/Binaries/Python/javonet/core/handler/ArraySetItemHandler.py +0 -39
  1660. package/Binaries/Python/javonet/core/handler/CastingHandler.py +0 -6
  1661. package/Binaries/Python/javonet/core/handler/CreateClassInstanceHandler.py +0 -22
  1662. package/Binaries/Python/javonet/core/handler/DestructReferenceHandler.py +0 -13
  1663. package/Binaries/Python/javonet/core/handler/EnableNamespaceHandler.py +0 -28
  1664. package/Binaries/Python/javonet/core/handler/EnableTypeHandler.py +0 -28
  1665. package/Binaries/Python/javonet/core/handler/GetEnumItemHandler.py +0 -29
  1666. package/Binaries/Python/javonet/core/handler/GetEnumNameHandler.py +0 -22
  1667. package/Binaries/Python/javonet/core/handler/GetEnumValueHandler.py +0 -22
  1668. package/Binaries/Python/javonet/core/handler/GetInstanceFieldHandler.py +0 -27
  1669. package/Binaries/Python/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -29
  1670. package/Binaries/Python/javonet/core/handler/GetStaticFieldHandler.py +0 -27
  1671. package/Binaries/Python/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -31
  1672. package/Binaries/Python/javonet/core/handler/GetTypeHandler.py +0 -85
  1673. package/Binaries/Python/javonet/core/handler/Handler.py +0 -100
  1674. package/Binaries/Python/javonet/core/handler/HandlerDictionary.py +0 -8
  1675. package/Binaries/Python/javonet/core/handler/InvokeDelegateHandler.py +0 -27
  1676. package/Binaries/Python/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -46
  1677. package/Binaries/Python/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -31
  1678. package/Binaries/Python/javonet/core/handler/InvokeStaticMethodHandler.py +0 -33
  1679. package/Binaries/Python/javonet/core/handler/LoadLibraryHandler.py +0 -40
  1680. package/Binaries/Python/javonet/core/handler/PassDelegateHandler.py +0 -21
  1681. package/Binaries/Python/javonet/core/handler/ResolveInstanceHandler.py +0 -19
  1682. package/Binaries/Python/javonet/core/handler/SetInstanceFieldHandler.py +0 -29
  1683. package/Binaries/Python/javonet/core/handler/SetStaticFieldHandler.py +0 -29
  1684. package/Binaries/Python/javonet/core/handler/ValueHandler.py +0 -6
  1685. package/Binaries/Python/javonet/core/handler/__init__.py +0 -0
  1686. package/Binaries/Python/javonet/core/interpreter/Interpreter.py +0 -55
  1687. package/Binaries/Python/javonet/core/interpreter/__init__.py +0 -0
  1688. package/Binaries/Python/javonet/core/namespaceCache/NamespaceCache.py +0 -44
  1689. package/Binaries/Python/javonet/core/namespaceCache/__init__.py +0 -0
  1690. package/Binaries/Python/javonet/core/protocol/CommandDeserializer.py +0 -164
  1691. package/Binaries/Python/javonet/core/protocol/CommandSerializer.py +0 -29
  1692. package/Binaries/Python/javonet/core/protocol/TypeDeserializer.py +0 -64
  1693. package/Binaries/Python/javonet/core/protocol/TypeSerializer.py +0 -96
  1694. package/Binaries/Python/javonet/core/protocol/__init__.py +0 -0
  1695. package/Binaries/Python/javonet/core/receiver/Receiver.py +0 -42
  1696. package/Binaries/Python/javonet/core/receiver/__init__.py +0 -0
  1697. package/Binaries/Python/javonet/core/referenceCache/ReferencesCache.py +0 -39
  1698. package/Binaries/Python/javonet/core/referenceCache/__init__.py +0 -0
  1699. package/Binaries/Python/javonet/core/transmitter/Transmitter.py +0 -20
  1700. package/Binaries/Python/javonet/core/transmitter/TransmitterWrapper.py +0 -110
  1701. package/Binaries/Python/javonet/core/transmitter/__init__.py +0 -0
  1702. package/Binaries/Python/javonet/core/typeCache/TypeCache.py +0 -44
  1703. package/Binaries/Python/javonet/core/typeCache/__init__.py +0 -0
  1704. package/Binaries/Python/javonet/core/webSocketClient/WebSocketClient.py +0 -32
  1705. package/Binaries/Python/javonet/utils/Command.py +0 -90
  1706. package/Binaries/Python/javonet/utils/CommandType.py +0 -46
  1707. package/Binaries/Python/javonet/utils/ConnectionType.py +0 -7
  1708. package/Binaries/Python/javonet/utils/ExceptionType.py +0 -55
  1709. package/Binaries/Python/javonet/utils/RuntimeLogger.py +0 -30
  1710. package/Binaries/Python/javonet/utils/RuntimeName.py +0 -18
  1711. package/Binaries/Python/javonet/utils/RuntimeNameHandler.py +0 -30
  1712. package/Binaries/Python/javonet/utils/StringEncodingMode.py +0 -8
  1713. package/Binaries/Python/javonet/utils/Type.py +0 -16
  1714. package/Binaries/Python/javonet/utils/UtilsConst.py +0 -42
  1715. package/Binaries/Python/javonet/utils/__init__.py +0 -0
  1716. package/Binaries/Python/javonet/utils/connectionData/IConnectionData.py +0 -18
  1717. package/Binaries/Python/javonet/utils/connectionData/InMemoryConnectionData.py +0 -23
  1718. package/Binaries/Python/javonet/utils/connectionData/TcpConnectionData.py +0 -67
  1719. package/Binaries/Python/javonet/utils/connectionData/WsConnectionData.py +0 -30
  1720. package/Binaries/Python/javonet/utils/connectionData/__init__.py +0 -0
  1721. package/Binaries/Python/javonet/utils/exception/ExceptionSerializer.py +0 -66
  1722. package/Binaries/Python/javonet/utils/exception/ExceptionThrower.py +0 -81
  1723. package/Binaries/Python/javonet/utils/exception/JavonetException.py +0 -10
  1724. package/Binaries/Python/javonet/utils/exception/__init__.py +0 -0
  1725. package/Binaries/Python/javonet/utils/messageHelper/MessageHelper.py +0 -86
  1726. package/Binaries/Python/javonet/utils/messageHelper/__init__.py +0 -0
  1727. package/Binaries/Python2/javonet/__init__.py +0 -32
  1728. package/Binaries/Python2/javonet/core/__init__.py +0 -1
  1729. package/Binaries/Python2/javonet/core/callback/__init__.py +0 -4
  1730. package/Binaries/Python2/javonet/core/callback/callbackFunc.py +0 -20
  1731. package/Binaries/Python2/javonet/core/delegateCache/DelegatesCache.py +0 -73
  1732. package/Binaries/Python2/javonet/core/delegateCache/__init__.py +0 -4
  1733. package/Binaries/Python2/javonet/core/handler/AbstractCommandHandler.py +0 -45
  1734. package/Binaries/Python2/javonet/core/handler/AbstractHandler.py +0 -9
  1735. package/Binaries/Python2/javonet/core/handler/ArrayGetItemHandler.py +0 -51
  1736. package/Binaries/Python2/javonet/core/handler/ArrayGetRankHandler.py +0 -41
  1737. package/Binaries/Python2/javonet/core/handler/ArrayGetSizeHandler.py +0 -45
  1738. package/Binaries/Python2/javonet/core/handler/ArrayHandler.py +0 -25
  1739. package/Binaries/Python2/javonet/core/handler/ArraySetItemHandler.py +0 -60
  1740. package/Binaries/Python2/javonet/core/handler/CastingHandler.py +0 -11
  1741. package/Binaries/Python2/javonet/core/handler/CreateClassInstanceHandler.py +0 -39
  1742. package/Binaries/Python2/javonet/core/handler/DestructReferenceHandler.py +0 -25
  1743. package/Binaries/Python2/javonet/core/handler/EnableNamespaceHandler.py +0 -43
  1744. package/Binaries/Python2/javonet/core/handler/EnableTypeHandler.py +0 -43
  1745. package/Binaries/Python2/javonet/core/handler/GetEnumItemHandler.py +0 -54
  1746. package/Binaries/Python2/javonet/core/handler/GetEnumNameHandler.py +0 -44
  1747. package/Binaries/Python2/javonet/core/handler/GetEnumValueHandler.py +0 -36
  1748. package/Binaries/Python2/javonet/core/handler/GetInstanceFieldHandler.py +0 -40
  1749. package/Binaries/Python2/javonet/core/handler/GetInstanceMethodAsDelegateHandler.py +0 -43
  1750. package/Binaries/Python2/javonet/core/handler/GetStaticFieldHandler.py +0 -41
  1751. package/Binaries/Python2/javonet/core/handler/GetStaticMethodAsDelegateHandler.py +0 -43
  1752. package/Binaries/Python2/javonet/core/handler/GetTypeHandler.py +0 -115
  1753. package/Binaries/Python2/javonet/core/handler/Handler.py +0 -152
  1754. package/Binaries/Python2/javonet/core/handler/HandlerDictionary.py +0 -23
  1755. package/Binaries/Python2/javonet/core/handler/InvokeDelegateHandler.py +0 -56
  1756. package/Binaries/Python2/javonet/core/handler/InvokeGlobalFunctionHandler.py +0 -78
  1757. package/Binaries/Python2/javonet/core/handler/InvokeInstanceMethodHandler.py +0 -45
  1758. package/Binaries/Python2/javonet/core/handler/InvokeStaticMethodHandler.py +0 -45
  1759. package/Binaries/Python2/javonet/core/handler/LoadLibraryHandler.py +0 -62
  1760. package/Binaries/Python2/javonet/core/handler/PassDelegateHandler.py +0 -36
  1761. package/Binaries/Python2/javonet/core/handler/ResolveInstanceHandler.py +0 -33
  1762. package/Binaries/Python2/javonet/core/handler/SetInstanceFieldHandler.py +0 -42
  1763. package/Binaries/Python2/javonet/core/handler/SetStaticFieldHandler.py +0 -43
  1764. package/Binaries/Python2/javonet/core/handler/ValueHandler.py +0 -27
  1765. package/Binaries/Python2/javonet/core/handler/__init__.py +0 -1
  1766. package/Binaries/Python2/javonet/core/interpreter/Interpreter.py +0 -36
  1767. package/Binaries/Python2/javonet/core/interpreter/__init__.py +0 -0
  1768. package/Binaries/Python2/javonet/core/namespaceCache/NamespaceCache.py +0 -69
  1769. package/Binaries/Python2/javonet/core/namespaceCache/__init__.py +0 -4
  1770. package/Binaries/Python2/javonet/core/protocol/CommandDeserializer.py +0 -237
  1771. package/Binaries/Python2/javonet/core/protocol/CommandSerializer.py +0 -56
  1772. package/Binaries/Python2/javonet/core/protocol/TypeDeserializer.py +0 -154
  1773. package/Binaries/Python2/javonet/core/protocol/TypeSerializer.py +0 -187
  1774. package/Binaries/Python2/javonet/core/protocol/__init__.py +0 -0
  1775. package/Binaries/Python2/javonet/core/receiver/Receiver.py +0 -35
  1776. package/Binaries/Python2/javonet/core/receiver/__init__.py +0 -1
  1777. package/Binaries/Python2/javonet/core/referenceCache/ReferencesCache.py +0 -57
  1778. package/Binaries/Python2/javonet/core/referenceCache/__init__.py +0 -0
  1779. package/Binaries/Python2/javonet/core/transmitter/Transmitter.py +0 -59
  1780. package/Binaries/Python2/javonet/core/transmitter/TransmitterWrapper.py +0 -102
  1781. package/Binaries/Python2/javonet/core/transmitter/__init__.py +0 -0
  1782. package/Binaries/Python2/javonet/core/typeCache/TypeCache.py +0 -69
  1783. package/Binaries/Python2/javonet/core/typeCache/__init__.py +0 -4
  1784. package/Binaries/Python2/javonet/core/webSocketClient/WebSocketClient.py +0 -39
  1785. package/Binaries/Python2/javonet/core/webSocketClient/__init__.py +0 -0
  1786. package/Binaries/Python2/javonet/utils/Command.py +0 -170
  1787. package/Binaries/Python2/javonet/utils/CommandType.py +0 -154
  1788. package/Binaries/Python2/javonet/utils/ConnectionType.py +0 -36
  1789. package/Binaries/Python2/javonet/utils/ExceptionType.py +0 -95
  1790. package/Binaries/Python2/javonet/utils/PythonStringBuilder.py +0 -38
  1791. package/Binaries/Python2/javonet/utils/RuntimeLogger.py +0 -50
  1792. package/Binaries/Python2/javonet/utils/RuntimeName.py +0 -120
  1793. package/Binaries/Python2/javonet/utils/RuntimeNameHandler.py +0 -47
  1794. package/Binaries/Python2/javonet/utils/StringEncodingMode.py +0 -38
  1795. package/Binaries/Python2/javonet/utils/Type.py +0 -68
  1796. package/Binaries/Python2/javonet/utils/UtilsConst.py +0 -38
  1797. package/Binaries/Python2/javonet/utils/__init__.py +0 -4
  1798. package/Binaries/Python2/javonet/utils/connectionData/IConnectionData.py +0 -45
  1799. package/Binaries/Python2/javonet/utils/connectionData/InMemoryConnectionData.py +0 -32
  1800. package/Binaries/Python2/javonet/utils/connectionData/TcpConnectionData.py +0 -142
  1801. package/Binaries/Python2/javonet/utils/connectionData/WsConnectionData.py +0 -75
  1802. package/Binaries/Python2/javonet/utils/connectionData/__init__.py +0 -4
  1803. package/Binaries/Python2/javonet/utils/exception/ExceptionSerializer.py +0 -94
  1804. package/Binaries/Python2/javonet/utils/exception/ExceptionThrower.py +0 -85
  1805. package/Binaries/Python2/javonet/utils/exception/JavonetException.py +0 -31
  1806. package/Binaries/Python2/javonet/utils/exception/__init__.py +0 -4
  1807. package/Binaries/Ruby/Linux/X64/core/handler/abstract_command_handler.rb +0 -24
  1808. package/Binaries/Ruby/Linux/X64/core/handler/abstract_handler.rb +0 -5
  1809. package/Binaries/Ruby/Linux/X64/core/handler/array_get_item_handler.rb +0 -47
  1810. package/Binaries/Ruby/Linux/X64/core/handler/array_get_rank_handler.rb +0 -23
  1811. package/Binaries/Ruby/Linux/X64/core/handler/array_get_size_handler.rb +0 -37
  1812. package/Binaries/Ruby/Linux/X64/core/handler/array_handler.rb +0 -12
  1813. package/Binaries/Ruby/Linux/X64/core/handler/array_set_item_handler.rb +0 -47
  1814. package/Binaries/Ruby/Linux/X64/core/handler/casting_handler.rb +0 -11
  1815. package/Binaries/Ruby/Linux/X64/core/handler/create_class_instance_handler.rb +0 -34
  1816. package/Binaries/Ruby/Linux/X64/core/handler/destruct_reference_handler.rb +0 -21
  1817. package/Binaries/Ruby/Linux/X64/core/handler/enable_namespace_handler.rb +0 -31
  1818. package/Binaries/Ruby/Linux/X64/core/handler/enable_type_handler.rb +0 -32
  1819. package/Binaries/Ruby/Linux/X64/core/handler/get_instance_field_handler.rb +0 -34
  1820. package/Binaries/Ruby/Linux/X64/core/handler/get_static_field_handler.rb +0 -34
  1821. package/Binaries/Ruby/Linux/X64/core/handler/get_type_handler.rb +0 -71
  1822. package/Binaries/Ruby/Linux/X64/core/handler/handler.rb +0 -111
  1823. package/Binaries/Ruby/Linux/X64/core/handler/handler_dictionary.rb +0 -8
  1824. package/Binaries/Ruby/Linux/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1825. package/Binaries/Ruby/Linux/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1826. package/Binaries/Ruby/Linux/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1827. package/Binaries/Ruby/Linux/X64/core/handler/load_library_handler.rb +0 -33
  1828. package/Binaries/Ruby/Linux/X64/core/handler/resolve_instance_handler.rb +0 -24
  1829. package/Binaries/Ruby/Linux/X64/core/handler/set_instance_field_handler.rb +0 -35
  1830. package/Binaries/Ruby/Linux/X64/core/handler/set_static_field_handler.rb +0 -31
  1831. package/Binaries/Ruby/Linux/X64/core/handler/value_handler.rb +0 -7
  1832. package/Binaries/Ruby/Linux/X64/core/interpreter/interpreter.rb +0 -25
  1833. package/Binaries/Ruby/Linux/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1834. package/Binaries/Ruby/Linux/X64/core/protocol/command_deserializer.rb +0 -182
  1835. package/Binaries/Ruby/Linux/X64/core/protocol/command_serializer.rb +0 -35
  1836. package/Binaries/Ruby/Linux/X64/core/protocol/type_deserializer.rb +0 -126
  1837. package/Binaries/Ruby/Linux/X64/core/protocol/type_serializer.rb +0 -259
  1838. package/Binaries/Ruby/Linux/X64/core/receiver/receiver.rb +0 -22
  1839. package/Binaries/Ruby/Linux/X64/core/reference_cache/references_cache.rb +0 -39
  1840. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter.rb +0 -58
  1841. package/Binaries/Ruby/Linux/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1842. package/Binaries/Ruby/Linux/X64/core/type_cache/type_cache.rb +0 -42
  1843. package/Binaries/Ruby/Linux/X64/utils/command.rb +0 -93
  1844. package/Binaries/Ruby/Linux/X64/utils/command_type.rb +0 -135
  1845. package/Binaries/Ruby/Linux/X64/utils/connection_type.rb +0 -4
  1846. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_serializer.rb +0 -93
  1847. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_thrower.rb +0 -65
  1848. package/Binaries/Ruby/Linux/X64/utils/exceptions/exception_type.rb +0 -10
  1849. package/Binaries/Ruby/Linux/X64/utils/runtime_logger.rb +0 -30
  1850. package/Binaries/Ruby/Linux/X64/utils/runtime_name.rb +0 -13
  1851. package/Binaries/Ruby/Linux/X64/utils/runtime_name_handler.rb +0 -40
  1852. package/Binaries/Ruby/Linux/X64/utils/string_encoding_mode.rb +0 -6
  1853. package/Binaries/Ruby/Linux/X64/utils/tcp_connection_data.rb +0 -37
  1854. package/Binaries/Ruby/Linux/X64/utils/type.rb +0 -14
  1855. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_command_handler.rb +0 -24
  1856. package/Binaries/Ruby/MacOs/X64/core/handler/abstract_handler.rb +0 -5
  1857. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_item_handler.rb +0 -47
  1858. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_rank_handler.rb +0 -23
  1859. package/Binaries/Ruby/MacOs/X64/core/handler/array_get_size_handler.rb +0 -37
  1860. package/Binaries/Ruby/MacOs/X64/core/handler/array_handler.rb +0 -12
  1861. package/Binaries/Ruby/MacOs/X64/core/handler/array_set_item_handler.rb +0 -47
  1862. package/Binaries/Ruby/MacOs/X64/core/handler/casting_handler.rb +0 -11
  1863. package/Binaries/Ruby/MacOs/X64/core/handler/create_class_instance_handler.rb +0 -34
  1864. package/Binaries/Ruby/MacOs/X64/core/handler/destruct_reference_handler.rb +0 -21
  1865. package/Binaries/Ruby/MacOs/X64/core/handler/enable_namespace_handler.rb +0 -31
  1866. package/Binaries/Ruby/MacOs/X64/core/handler/enable_type_handler.rb +0 -32
  1867. package/Binaries/Ruby/MacOs/X64/core/handler/get_instance_field_handler.rb +0 -34
  1868. package/Binaries/Ruby/MacOs/X64/core/handler/get_static_field_handler.rb +0 -34
  1869. package/Binaries/Ruby/MacOs/X64/core/handler/get_type_handler.rb +0 -71
  1870. package/Binaries/Ruby/MacOs/X64/core/handler/handler.rb +0 -111
  1871. package/Binaries/Ruby/MacOs/X64/core/handler/handler_dictionary.rb +0 -8
  1872. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1873. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1874. package/Binaries/Ruby/MacOs/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1875. package/Binaries/Ruby/MacOs/X64/core/handler/load_library_handler.rb +0 -33
  1876. package/Binaries/Ruby/MacOs/X64/core/handler/resolve_instance_handler.rb +0 -24
  1877. package/Binaries/Ruby/MacOs/X64/core/handler/set_instance_field_handler.rb +0 -35
  1878. package/Binaries/Ruby/MacOs/X64/core/handler/set_static_field_handler.rb +0 -31
  1879. package/Binaries/Ruby/MacOs/X64/core/handler/value_handler.rb +0 -7
  1880. package/Binaries/Ruby/MacOs/X64/core/interpreter/interpreter.rb +0 -25
  1881. package/Binaries/Ruby/MacOs/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1882. package/Binaries/Ruby/MacOs/X64/core/protocol/command_deserializer.rb +0 -182
  1883. package/Binaries/Ruby/MacOs/X64/core/protocol/command_serializer.rb +0 -35
  1884. package/Binaries/Ruby/MacOs/X64/core/protocol/type_deserializer.rb +0 -126
  1885. package/Binaries/Ruby/MacOs/X64/core/protocol/type_serializer.rb +0 -259
  1886. package/Binaries/Ruby/MacOs/X64/core/receiver/receiver.rb +0 -22
  1887. package/Binaries/Ruby/MacOs/X64/core/reference_cache/references_cache.rb +0 -39
  1888. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter.rb +0 -58
  1889. package/Binaries/Ruby/MacOs/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1890. package/Binaries/Ruby/MacOs/X64/core/type_cache/type_cache.rb +0 -42
  1891. package/Binaries/Ruby/MacOs/X64/utils/command.rb +0 -93
  1892. package/Binaries/Ruby/MacOs/X64/utils/command_type.rb +0 -135
  1893. package/Binaries/Ruby/MacOs/X64/utils/connection_type.rb +0 -4
  1894. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_serializer.rb +0 -93
  1895. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_thrower.rb +0 -65
  1896. package/Binaries/Ruby/MacOs/X64/utils/exceptions/exception_type.rb +0 -10
  1897. package/Binaries/Ruby/MacOs/X64/utils/runtime_logger.rb +0 -30
  1898. package/Binaries/Ruby/MacOs/X64/utils/runtime_name.rb +0 -13
  1899. package/Binaries/Ruby/MacOs/X64/utils/runtime_name_handler.rb +0 -40
  1900. package/Binaries/Ruby/MacOs/X64/utils/string_encoding_mode.rb +0 -6
  1901. package/Binaries/Ruby/MacOs/X64/utils/tcp_connection_data.rb +0 -37
  1902. package/Binaries/Ruby/MacOs/X64/utils/type.rb +0 -14
  1903. package/Binaries/Ruby/Windows/X64/core/handler/abstract_command_handler.rb +0 -24
  1904. package/Binaries/Ruby/Windows/X64/core/handler/abstract_handler.rb +0 -5
  1905. package/Binaries/Ruby/Windows/X64/core/handler/array_get_item_handler.rb +0 -47
  1906. package/Binaries/Ruby/Windows/X64/core/handler/array_get_rank_handler.rb +0 -23
  1907. package/Binaries/Ruby/Windows/X64/core/handler/array_get_size_handler.rb +0 -37
  1908. package/Binaries/Ruby/Windows/X64/core/handler/array_handler.rb +0 -12
  1909. package/Binaries/Ruby/Windows/X64/core/handler/array_set_item_handler.rb +0 -47
  1910. package/Binaries/Ruby/Windows/X64/core/handler/casting_handler.rb +0 -11
  1911. package/Binaries/Ruby/Windows/X64/core/handler/create_class_instance_handler.rb +0 -34
  1912. package/Binaries/Ruby/Windows/X64/core/handler/destruct_reference_handler.rb +0 -21
  1913. package/Binaries/Ruby/Windows/X64/core/handler/enable_namespace_handler.rb +0 -31
  1914. package/Binaries/Ruby/Windows/X64/core/handler/enable_type_handler.rb +0 -32
  1915. package/Binaries/Ruby/Windows/X64/core/handler/get_instance_field_handler.rb +0 -34
  1916. package/Binaries/Ruby/Windows/X64/core/handler/get_static_field_handler.rb +0 -34
  1917. package/Binaries/Ruby/Windows/X64/core/handler/get_type_handler.rb +0 -71
  1918. package/Binaries/Ruby/Windows/X64/core/handler/handler.rb +0 -111
  1919. package/Binaries/Ruby/Windows/X64/core/handler/handler_dictionary.rb +0 -8
  1920. package/Binaries/Ruby/Windows/X64/core/handler/invoke_global_function_handler.rb +0 -45
  1921. package/Binaries/Ruby/Windows/X64/core/handler/invoke_instance_method_handler.rb +0 -36
  1922. package/Binaries/Ruby/Windows/X64/core/handler/invoke_static_method_handler.rb +0 -38
  1923. package/Binaries/Ruby/Windows/X64/core/handler/load_library_handler.rb +0 -33
  1924. package/Binaries/Ruby/Windows/X64/core/handler/resolve_instance_handler.rb +0 -24
  1925. package/Binaries/Ruby/Windows/X64/core/handler/set_instance_field_handler.rb +0 -35
  1926. package/Binaries/Ruby/Windows/X64/core/handler/set_static_field_handler.rb +0 -31
  1927. package/Binaries/Ruby/Windows/X64/core/handler/value_handler.rb +0 -7
  1928. package/Binaries/Ruby/Windows/X64/core/interpreter/interpreter.rb +0 -25
  1929. package/Binaries/Ruby/Windows/X64/core/namespace_cache/namespace_cache.rb +0 -42
  1930. package/Binaries/Ruby/Windows/X64/core/protocol/command_deserializer.rb +0 -182
  1931. package/Binaries/Ruby/Windows/X64/core/protocol/command_serializer.rb +0 -35
  1932. package/Binaries/Ruby/Windows/X64/core/protocol/type_deserializer.rb +0 -126
  1933. package/Binaries/Ruby/Windows/X64/core/protocol/type_serializer.rb +0 -259
  1934. package/Binaries/Ruby/Windows/X64/core/receiver/receiver.rb +0 -22
  1935. package/Binaries/Ruby/Windows/X64/core/reference_cache/references_cache.rb +0 -39
  1936. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter.rb +0 -58
  1937. package/Binaries/Ruby/Windows/X64/core/transmitter/transmitter_wrapper.rb +0 -32
  1938. package/Binaries/Ruby/Windows/X64/core/type_cache/type_cache.rb +0 -42
  1939. package/Binaries/Ruby/Windows/X64/utils/command.rb +0 -93
  1940. package/Binaries/Ruby/Windows/X64/utils/command_type.rb +0 -135
  1941. package/Binaries/Ruby/Windows/X64/utils/connection_type.rb +0 -4
  1942. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_serializer.rb +0 -93
  1943. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_thrower.rb +0 -65
  1944. package/Binaries/Ruby/Windows/X64/utils/exceptions/exception_type.rb +0 -10
  1945. package/Binaries/Ruby/Windows/X64/utils/runtime_logger.rb +0 -30
  1946. package/Binaries/Ruby/Windows/X64/utils/runtime_name.rb +0 -13
  1947. package/Binaries/Ruby/Windows/X64/utils/runtime_name_handler.rb +0 -40
  1948. package/Binaries/Ruby/Windows/X64/utils/string_encoding_mode.rb +0 -6
  1949. package/Binaries/Ruby/Windows/X64/utils/tcp_connection_data.rb +0 -37
  1950. package/Binaries/Ruby/Windows/X64/utils/type.rb +0 -14
  1951. package/Binaries/version.txt +0 -1
  1952. package/addon/JavonetNodejsRuntimeAddon.cpp +0 -299
  1953. package/addon/JavonetNodejsRuntimeAddon.h +0 -70
  1954. package/binding.gyp +0 -8
  1955. package/dist/Javonet.d.ts +0 -4858
  1956. package/dist/index.js +0 -66
  1957. package/dist/lib/core/delegatesCache/DelegatesCache.js +0 -35
  1958. package/dist/lib/core/handler/AbstractHandler.js +0 -41
  1959. package/dist/lib/core/handler/ArrayGetItemHandler.js +0 -38
  1960. package/dist/lib/core/handler/ArrayGetRankHandler.js +0 -28
  1961. package/dist/lib/core/handler/ArrayGetSizeHandler.js +0 -29
  1962. package/dist/lib/core/handler/ArrayHandler.js +0 -18
  1963. package/dist/lib/core/handler/ArraySetItemHandler.js +0 -43
  1964. package/dist/lib/core/handler/CastingHandler.js +0 -10
  1965. package/dist/lib/core/handler/ConvertTypeHandler.js +0 -38
  1966. package/dist/lib/core/handler/CreateClassInstanceHandler.js +0 -36
  1967. package/dist/lib/core/handler/DestructReferenceHandler.js +0 -19
  1968. package/dist/lib/core/handler/EnableNamespaceHandler.js +0 -34
  1969. package/dist/lib/core/handler/EnableTypeHandler.js +0 -35
  1970. package/dist/lib/core/handler/GetGlobalStaticFieldHandler.js +0 -37
  1971. package/dist/lib/core/handler/GetInstanceFieldHandler.js +0 -35
  1972. package/dist/lib/core/handler/GetInstanceMethodAsDelegateHandler.js +0 -73
  1973. package/dist/lib/core/handler/GetStaticFieldHandler.js +0 -36
  1974. package/dist/lib/core/handler/GetStaticMethodAsDelegateHandler.js +0 -74
  1975. package/dist/lib/core/handler/GetTypeHandler.js +0 -63
  1976. package/dist/lib/core/handler/Handler.js +0 -98
  1977. package/dist/lib/core/handler/InvokeDelegateHandler.js +0 -36
  1978. package/dist/lib/core/handler/InvokeGlobalFunctionHandler.js +0 -39
  1979. package/dist/lib/core/handler/InvokeInstanceMethodHandler.js +0 -38
  1980. package/dist/lib/core/handler/InvokeStaticMethodHandler.js +0 -38
  1981. package/dist/lib/core/handler/LoadLibraryHandler.js +0 -48
  1982. package/dist/lib/core/handler/PassDelegateHandler.js +0 -157
  1983. package/dist/lib/core/handler/ResolveReferenceHandler.js +0 -13
  1984. package/dist/lib/core/handler/SetGlobalStaticFieldHandler.js +0 -38
  1985. package/dist/lib/core/handler/SetInstanceFieldHandler.js +0 -35
  1986. package/dist/lib/core/handler/SetStaticFieldHandler.js +0 -33
  1987. package/dist/lib/core/handler/ValueHandler.js +0 -13
  1988. package/dist/lib/core/interpreter/Interpreter.js +0 -142
  1989. package/dist/lib/core/namespaceCache/NamespaceCache.js +0 -39
  1990. package/dist/lib/core/protocol/CommandDeserializer.js +0 -181
  1991. package/dist/lib/core/protocol/CommandSerializer.js +0 -50
  1992. package/dist/lib/core/protocol/TypeDeserializer.js +0 -83
  1993. package/dist/lib/core/protocol/TypeSerializer.js +0 -143
  1994. package/dist/lib/core/receiver/Receiver.js +0 -32
  1995. package/dist/lib/core/receiver/ReceiverNative.js +0 -13
  1996. package/dist/lib/core/referenceCache/ReferencesCache.js +0 -30
  1997. package/dist/lib/core/transmitter/Transmitter.js +0 -21
  1998. package/dist/lib/core/transmitter/TransmitterWebsocket.js +0 -33
  1999. package/dist/lib/core/transmitter/TransmitterWrapper.js +0 -47
  2000. package/dist/lib/core/typeCache/TypeCache.js +0 -39
  2001. package/dist/lib/core/webSocketClient/WebSocketClient.js +0 -136
  2002. package/dist/lib/declarations.d.ts +0 -64
  2003. package/dist/lib/sdk/ConfigRuntimeFactory.js +0 -155
  2004. package/dist/lib/sdk/InvocationContext.js +0 -485
  2005. package/dist/lib/sdk/Javonet.js +0 -105
  2006. package/dist/lib/sdk/RuntimeContext.js +0 -300
  2007. package/dist/lib/sdk/RuntimeFactory.js +0 -87
  2008. package/dist/lib/sdk/tools/JsonFileResolver.js +0 -101
  2009. package/dist/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2010. package/dist/lib/utils/Command.js +0 -69
  2011. package/dist/lib/utils/CommandType.js +0 -47
  2012. package/dist/lib/utils/ConnectionType.js +0 -8
  2013. package/dist/lib/utils/CustomError.js +0 -8
  2014. package/dist/lib/utils/ExceptionType.js +0 -13
  2015. package/dist/lib/utils/RuntimeLogger.js +0 -30
  2016. package/dist/lib/utils/RuntimeName.js +0 -16
  2017. package/dist/lib/utils/RuntimeNameHandler.js +0 -38
  2018. package/dist/lib/utils/StringEncodingMode.js +0 -9
  2019. package/dist/lib/utils/Type.js +0 -17
  2020. package/dist/lib/utils/TypesConverter.js +0 -91
  2021. package/dist/lib/utils/connectionData/IConnectionData.js +0 -15
  2022. package/dist/lib/utils/connectionData/InMemoryConnectionData.js +0 -35
  2023. package/dist/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2024. package/dist/lib/utils/connectionData/WsConnectionData.js +0 -50
  2025. package/dist/lib/utils/exception/ExceptionSerializer.js +0 -64
  2026. package/dist/lib/utils/exception/ExceptionThrower.js +0 -95
  2027. package/dist/lib/utils/guid/generateGuid.js +0 -9
  2028. package/dist/lib/utils/uuid/REGEX.js +0 -2
  2029. package/dist/lib/utils/uuid/rng.js +0 -12
  2030. package/dist/lib/utils/uuid/stringify.js +0 -51
  2031. package/dist/lib/utils/uuid/v4.js +0 -27
  2032. package/dist/lib/utils/uuid/validate.js +0 -6
  2033. package/lib/sdk/tools/JsonFileResolver.js +0 -101
  2034. package/lib/sdk/tools/SdkExceptionHelper.js +0 -79
  2035. package/lib/utils/TypesConverter.js +0 -91
  2036. package/lib/utils/connectionData/TcpConnectionData.js +0 -77
  2037. package/lib/utils/uuid/REGEX.js +0 -2
  2038. package/lib/utils/uuid/rng.js +0 -12
  2039. package/lib/utils/uuid/stringify.js +0 -51
  2040. package/lib/utils/uuid/v4.js +0 -27
  2041. package/lib/utils/uuid/validate.js +0 -6
@@ -1,1399 +0,0 @@
1
- package FFI::Platypus::Type;
2
-
3
- use strict;
4
- use warnings;
5
- use 5.008004;
6
- use Carp qw( croak );
7
- require FFI::Platypus;
8
-
9
- # ABSTRACT: Defining types for FFI::Platypus
10
- our $VERSION = '2.10'; # VERSION
11
-
12
- # The TypeParser and Type classes are used internally ONLY and
13
- # are not to be exposed to the user. External users should
14
- # not under any circumstances rely on the implementation of
15
- # these classes.
16
-
17
- sub alignof
18
- {
19
- my($self) = @_;
20
- my $meta = $self->meta;
21
-
22
- # TODO: it is possible, though complicated
23
- # to compute the alignment of a struct
24
- # type record.
25
- croak "cannot determine alignment of record"
26
- if $meta->{type} eq 'record'
27
- && $meta->{ref} == 1;
28
-
29
- my $ffi_type;
30
- if($meta->{type} eq 'pointer')
31
- {
32
- $ffi_type = 'pointer';
33
- }
34
- elsif($meta->{type} eq 'record')
35
- {
36
- $ffi_type = 'uint8';
37
- }
38
- else
39
- {
40
- $ffi_type = $meta->{ffi_type};
41
- }
42
-
43
- require FFI::Platypus::ShareConfig;
44
- FFI::Platypus::ShareConfig->get('align')->{$ffi_type};
45
- }
46
-
47
- 1;
48
-
49
- __END__
50
-
51
- =pod
52
-
53
- =encoding UTF-8
54
-
55
- =head1 NAME
56
-
57
- FFI::Platypus::Type - Defining types for FFI::Platypus
58
-
59
- =head1 VERSION
60
-
61
- version 2.10
62
-
63
- =head1 SYNOPSIS
64
-
65
- OO Interface:
66
-
67
- use FFI::Platypus 2.00;
68
- my $ffi = FFI::Platypus->new( api => 2 );
69
- $ffi->type('int' => 'my_int');
70
-
71
- =head1 DESCRIPTION
72
-
73
- B<Note>: This document assumes that you are using C<api =E<gt> 2>,
74
- which you should be using for all new code.
75
-
76
- This document describes how to define types using L<FFI::Platypus>.
77
- Types may be "defined" ahead of time, or simply used when defining or
78
- attaching functions.
79
-
80
- # Example of defining types
81
- use FFI::Platypus 2.00;
82
- my $ffi = FFI::Platypus->new( api => 2 );
83
- $ffi->type('int');
84
- $ffi->type('string');
85
-
86
- # Example of simply using types in function declaration or attachment
87
- my $f = $ffi->function(puts => ['string'] => 'int');
88
- $ffi->attach(puts => ['string'] => 'int');
89
-
90
- Unless you are using aliases the L<FFI::Platypus#type> method is not
91
- necessary, but they will throw an exception if the type is incorrectly
92
- specified or not supported, which may be helpful for determining if
93
- the types are available or not.
94
-
95
- Note: This document sometimes uses the term "C Function" as short hand
96
- for function implemented in a compiled language. Unless the term is
97
- referring literally to a C function example code, you can assume that
98
- it should also work with another compiled language.
99
-
100
- =head2 meta information about types
101
-
102
- You can get the size of a type using the L<FFI::Platypus#sizeof> method.
103
-
104
- my $intsize = $ffi->sizeof('int'); # usually 4
105
- my $intarraysize = $ffi->sizeof('int[64]'); # usually 256
106
-
107
- =head2 converting types
108
-
109
- Sometimes it is necessary to convert types. In particular various
110
- pointer types often need to be converted for consumption in Perl. For
111
- this purpose the L<FFI::Platypus#cast> method is provided. It needs to
112
- be used with care though, because not all type combinations are
113
- supported. Here are some useful ones:
114
-
115
- my $address = $ffi->cast('string' => 'opaque', $string);
116
-
117
- This converts a Perl string to a pointer address that can be used
118
- by functions that take an C<opaque> type. Be carefully though that
119
- the Perl string is not resized or free'd while in use from C code.
120
-
121
- my $string = $ffi->cast('opaque' => 'string', $pointer);
122
-
123
- This does the opposite, converting a null terminated string (the
124
- type of strings used by C) into a Perl string. In this case the
125
- string is copied, so the other language is free to deallocate or
126
- otherwise manipulate the string after the conversion without adversely
127
- affecting the Perl.
128
-
129
- =head2 aliases
130
-
131
- Some times using alternate names is useful for documenting the purpose
132
- of an argument or return type. For this "aliases" can be helpful. The
133
- second argument to the L<FFI::Platypus#type> method can be used to
134
- define a type alias that can later be used by function declaration
135
- and attachment.
136
-
137
- use FFI::Platypus 2.00;
138
- my $ffi = FFI::Platypus->new( api => 2 );
139
- $ffi->type('int' => 'myint');
140
- $ffi->type('string' => 'mystring');
141
- my $f = $ffi->function( puts => ['mystring'] => 'myint' );
142
- $ffi->attach( puts => ['mystring'] => 'myint' );
143
-
144
- Aliases are contained without the L<FFI::Platypus> object, so feel free
145
- to define your own crazy types without stepping on the toes of other
146
- CPAN developers using Platypus.
147
-
148
- One useful application of an alias is when you know types are different
149
- on two different platforms:
150
-
151
- if($^O eq 'MSWin32')
152
- {
153
- $type->type('sint16' => 'foo_t');
154
- } elsif($^O eq 'linux')
155
- {
156
- $type->type('sint32' => 'foo_t');
157
- }
158
-
159
- # function foo takes 16 bit signed integer on Windows
160
- # and a 32 bit signed integer on Linux.
161
- $ffi->attach( foo => [ 'foo_t' ] => 'void' );
162
-
163
- =for stopwords tm
164
-
165
- =head1 TYPE CATEGORIES
166
-
167
- =head2 Native types
168
-
169
- So called native types are the types that the CPU understands that can
170
- be passed on the argument stack or returned by a function. It does not
171
- include more complicated types like arrays or structs, which can be
172
- passed via pointers (see the opaque type below). Generally native types
173
- include void, integers, floats and pointers.
174
-
175
- =head3 the void type
176
-
177
- This can be used as a return value to indicate a function does not
178
- return a value (or if you want the return value to be ignored).
179
-
180
- $ffi->type( foo => [] => 'void' );
181
-
182
- Newer versions of Platypus also allow you to omit the return type and
183
- C<void> is assumed.
184
-
185
- $ffi->type( foo => [] );
186
-
187
- It doesn't really make sense to use C<void> in any other context. However,
188
- because of historical reasons involving older versions of Perl.
189
-
190
- It doesn't really make sense for C<void> to be passed in as an argument.
191
- However, because C functions that take no arguments frequently are specified
192
- as taking C<void> as this was required by older C compilers, as a special
193
- case you can specify a function's arguments as taking a single C<void> to
194
- mean it takes no arguments.
195
-
196
- # C: void foo(void);
197
- $ffi->type( foo => ['void'] );
198
- # same (but probably better)
199
- $ffi->type( foo => [] );
200
-
201
- =head3 integer types
202
-
203
- The following native integer types are always available (parentheticals
204
- indicates the usual corresponding C type):
205
-
206
- =over 4
207
-
208
- =item sint8
209
-
210
- Signed 8 bit byte (C<signed char>, C<int8_t>).
211
-
212
- =item uint8
213
-
214
- Unsigned 8 bit byte (C<unsigned char>, C<uint8_t>).
215
-
216
- =item sint16
217
-
218
- Signed 16 bit integer (C<short>, C<int16_t>)
219
-
220
- =item uint16
221
-
222
- Unsigned 16 bit integer (C<unsigned short>, C<uint16_t>)
223
-
224
- =item sint32
225
-
226
- Signed 32 bit integer (C<int>, C<int32_t>)
227
-
228
- =item uint32
229
-
230
- Unsigned 32 bit integer (C<unsigned int>, C<uint32_t>)
231
-
232
- =item sint64
233
-
234
- Signed 64 bit integer (C<long long>, C<int64_t>)
235
-
236
- =item uint64
237
-
238
- Unsigned 64 bit integer (C<unsigned long long>,
239
- C<uint64_t>)
240
-
241
- =back
242
-
243
- You may also use C<uchar>, C<ushort>, C<uint> and C<ulong> as short
244
- names for C<unsigned char>, C<unsigned short>, C<unsigned int> and
245
- C<unsigned long>.
246
-
247
- These integer types are also available, but there actual size and sign
248
- may depend on the platform.
249
-
250
- =over 4
251
-
252
- =item char
253
-
254
- Somewhat confusingly, C<char> is an integer type! This is really an
255
- alias for either C<sint8_t> or C<uint8_t> depending on your platform.
256
- If you want to pass a character (not integer) in to a C function that
257
- takes a character you want to use the perl L<ord|perlfunc/ord> function.
258
- Here is an example that uses the standard libc C<isalpha>, C<isdigit>
259
- type functions:
260
-
261
- use FFI::Platypus 2.00;
262
-
263
- my $ffi = FFI::Platypus->new( api => 2 );
264
- $ffi->lib(undef);
265
- $ffi->type('int' => 'character');
266
-
267
- my @list = qw(
268
- alnum alpha ascii blank cntrl digit lower print punct
269
- space upper xdigit
270
- );
271
-
272
- $ffi->attach("is$_" => ['character'] => 'int') for @list;
273
-
274
- my $char = shift(@ARGV) || 'a';
275
-
276
- no strict 'refs';
277
- printf "'%s' is %s %s\n", $char, $_, &{'is'.$_}(ord $char) for @list;
278
-
279
- =item size_t
280
-
281
- This is usually an C<unsigned long>, but it is up to the compiler to
282
- decide. The C<malloc> function is defined in terms of C<size_t>:
283
-
284
- $ffi->attach( malloc => ['size_t'] => 'opaque';
285
-
286
- (Note that you can get C<malloc> from L<FFI::Platypus::Memory>).
287
-
288
- =item long, unsigned long
289
-
290
- On 64 bit systems, this is usually a 64 bit integer. On 32 bit systems
291
- this is frequently a 32 bit integer (and C<long long> or
292
- C<unsigned long long> are for 64 bit).
293
-
294
- =back
295
-
296
- There are a number of other types that may or may not be available if
297
- they are detected when L<FFI::Platypus> is installed. This includes
298
- things like C<wchar_t>, C<off_t>, C<wint_t>. You can use this script to
299
- list all the integer types that L<FFI::Platypus> knows about, plus how
300
- they are implemented.
301
-
302
- use FFI::Platypus 2.00;
303
-
304
- my $ffi = FFI::Platypus->new( api => 2 );
305
-
306
- foreach my $type_name (sort $ffi->types)
307
- {
308
- my $meta = $ffi->type_meta($type_name);
309
- next unless defined $meta->{element_type} && $meta->{element_type} eq 'int';
310
- printf "%20s %s\n", $type_name, $meta->{ffi_type};
311
- }
312
-
313
- If you need a common system type that is not provided, please open a
314
- ticket in the Platypus project's GitHub issue tracker. Be sure to
315
- include the usual header file the type can be found in.
316
-
317
- =head3 Enum types
318
-
319
- C provides enumerated types, which are typically implemented as integer
320
- types.
321
-
322
- enum {
323
- BAR = 1,
324
- BAZ = 2
325
- } foo_t;
326
-
327
- void f(enum foo_t foo);
328
-
329
- Platypus provides C<enum> and C<senum> types for the integer types used
330
- to represent enum and signed enum types respectively.
331
-
332
- use constant BAR => 1;
333
- use constant BAZ => 2;
334
- $ffi->attach( f => [ 'enum' ] => 'void' );
335
- f(BAR);
336
- f(BAZ);
337
-
338
- When do you use C<senum>? Anytime the enum has negative values:
339
-
340
- enum {
341
- BAR = -1;
342
- BAZ = 2;
343
- } foo_t;
344
-
345
- void f(enum foo_t foo);
346
-
347
- Perl:
348
-
349
- use constant BAR => -1;
350
- use constant BAZ => 2;
351
- $ffi->attach( f => [ 'senum' ] => 'void' );
352
- f(BAR);
353
- f(BAZ);
354
-
355
- Dealing with enumerated values with FFI can be tricky because these are
356
- usually defined in C header files and cannot be found in dynamic libraries.
357
- For trivial usage you can do as illustrated above, simply define your own
358
- Perl constants. For more complicated usage, or where the values might vary
359
- from platform to platform you may want to consider the new Platypus bundle
360
- interface to define Perl constants (essentially the same as an enumerated
361
- value) from C space. This is more reliable, but does require a compiler
362
- at install time. See L<FFI::Platypus::Constant> for details.
363
-
364
- The main FAQ (L<FFI::Platypus/FAQ>) also has a discussion on dealing
365
- with constants and enumerated types.
366
-
367
- There is also a type plugin (L<FFI::Platypus::Type::Enum>) that can be helpful
368
- in writing interfaces that use enums.
369
-
370
- =head3 Boolean types
371
-
372
- At install time Platypus attempts to detect the correct type for C<bool>
373
- for your platform, and you can use that. C<bool> is really an integer
374
- type, but the type used varies from platform to platform.
375
-
376
- C header:
377
-
378
- #include <stdbool.h>
379
- bool foo();
380
-
381
- Platypus
382
-
383
- $ffi->attach( foo => [] => 'bool' );
384
-
385
- If you get an exception when trying to use this type it means you either
386
- have a very old version of Platypus, or for some reason it was unable to
387
- detect the correct type at install time. Please open a ticket if that is
388
- the case.
389
-
390
- =head3 floating point types
391
-
392
- The following native floating point types are always available
393
- (parentheticals indicates the usual corresponding C type):
394
-
395
- =over 4
396
-
397
- =item float
398
-
399
- Single precision floating point (I<float>)
400
-
401
- =item double
402
-
403
- Double precision floating point (I<double>)
404
-
405
- =item longdouble
406
-
407
- Floating point that may be larger than C<double> (I<longdouble>). This
408
- type is only available if supported by the C compiler used to build
409
- L<FFI::Platypus>. There may be a performance penalty for using this
410
- type, even if your Perl uses long doubles internally for its number
411
- value (NV) type, because of the way L<FFI::Platypus> interacts with
412
- C<libffi>.
413
-
414
- As an argument type either regular number values (NV) or instances of
415
- L<Math::LongDouble> are accepted. When used as a return type,
416
- L<Math::LongDouble> will be used, if you have that module installed.
417
- Otherwise the return type will be downgraded to whatever your Perl's
418
- number value (NV) is.
419
-
420
- =item complex_float
421
-
422
- Complex single precision floating point (I<float complex>)
423
-
424
- =item complex_double
425
-
426
- Complex double precision floating point (I<double complex>)
427
-
428
- C<complex_float> and C<complex_double> are only available if supported
429
- by your C compiler and by libffi. Complex numbers are only supported in
430
- very recent versions of libffi, and as of this writing the latest
431
- production version doesn't work on x86_64. It does seem to work with
432
- the latest production version of libffi on 32 bit Intel (x86), and with
433
- the latest libffi version in git on x86_64.
434
-
435
- =back
436
-
437
- =head3 opaque pointers
438
-
439
- Opaque pointers are simply a pointer to a region of memory that you do
440
- not manage, and do not know or care about its structure. It is like
441
- a C<void *> in C. These types are represented in Perl space as integers
442
- and get converted to and from pointers by L<FFI::Platypus>. You may use
443
- C<pointer> as an alias for C<opaque>, although this is discouraged.
444
- (The Platypus documentation uses the convention of using "pointer"
445
- to refer to pointers to known types (see below) and "opaque" as short
446
- hand for opaque pointer).
447
-
448
- As an example, libarchive defines C<struct archive> type in its header
449
- files, but does not define its content. Internally it is defined as a
450
- C<struct> type, but the caller does not see this. It is therefore
451
- opaque to its caller. There are C<archive_read_new> and
452
- C<archive_write_new> functions to create a new instance of this opaque
453
- object and C<archive_read_free> and C<archive_write_free> to destroy
454
- this objects when you are done.
455
-
456
- C header:
457
-
458
- struct archive;
459
- struct archive *archive_read_new(void);
460
- struct archive *archive_write_new(void);
461
- int archive_free(struct archive *);
462
- int archive_write_free(struct archive *);
463
-
464
- Perl code:
465
-
466
- $lib->find_lib( lib => 'archive' );
467
- $ffi->attach(archive_read_new => [] => 'opaque');
468
- $ffi->attach(archive_write_new => [] => 'opaque');
469
- $ffi->attach(archive_read_free => ['opaque'] => 'int');
470
- $ffi->attach(archive_write_free => ['opaque'] => 'int');
471
-
472
- It is often useful to alias an C<opaque> type like this so that you know
473
- what the object represents:
474
-
475
- $lib->find_lib( lib => 'archive' );
476
- $ffi->type('opaque' => 'archive');
477
- $ffi->attach(archive_read_new => [] => 'archive');
478
- $ffi->attach(archive_read_free => ['archive'] => 'int');
479
- ...
480
-
481
- As a special case, when you pass C<undef> into a function that takes an
482
- opaque type it will be translated into C<NULL> for C. When a C function
483
- returns a NULL pointer, it will be translated back to C<undef>.
484
-
485
- For functions that take a pointer to a void pointer (that is a C<void **>),
486
- you can use a pointer to an opaque type. Consider the C code:
487
-
488
- struct archive_entry;
489
- int archive_read_next_header(struct archive *, struvct archive_entry **);
490
-
491
- Once again the internals of C<archive_entry> are not provided. Perl code:
492
-
493
- $ffi->type('opaque' => 'archive_entry');
494
- $ffi->attach(archive_read_next_header => [ 'archive', 'archive_entry*' ] => 'int');
495
-
496
- Now we can call this function
497
-
498
- my $archive = archive_read_new();
499
- ... # additional prep for $active is required
500
- while(1) {
501
- my $entry;
502
- archive_read_next_header($archive, \$entry);
503
- last unless defined $entry;
504
- # can now use $entry for other archive_entry_ methods.
505
- }
506
-
507
- The way C<archive_read_next_header> works, it will return a pointer to the next
508
- C<archive_entry> object until it gets to the end, when it will return a pointer
509
- to C<NULL> which will be represented in Perl by a C<undef>.
510
-
511
- There are a number of useful utility functions for dealing with opaque
512
- types in the L<FFI::Platypus::Memory> module.
513
-
514
- =head2 Objects
515
-
516
- Object types are thin wrappers around two native types: integer and
517
- C<opaque> types. They are just blessed references around either of
518
- those two types so that methods can be defined on them, but when they
519
- get passed to a Platypus xsub they are converted into the native
520
- integer or C<opaque> types. This type is most useful when a API
521
- provides an OO style interface with an integer or C<opaque> value
522
- acting as an instance of a class. There are two detailed examples
523
- in the main Platypus documentation using libarchive and unix open:
524
-
525
- =over 4
526
-
527
- =item L<FFI::Platypus/libarchive>
528
-
529
- =item L<FFI::Platypus/"unix open">
530
-
531
- =back
532
-
533
- =head2 Strings
534
-
535
- # used when you need a char * or const char *
536
- $ffi->attach( puts => [ 'string' ] => 'int' );
537
-
538
- The C<string> type is a series of bytes that usually represent a
539
- series of characters. They will be NULL terminated for C and passed
540
- in as a pointer. This will typically work for APIs that take ASCII
541
- or UTF-8 strings which are common in Unix environments.
542
-
543
- (Note if you need to handle the native "wide" string for example
544
- if you need to talk UTF-16 on Windows see L<FFI::Platypus::Type::WideString>).
545
-
546
- (Note if you need to pass in a fixed length string by value (not as
547
- a pointer) then you can do so using L<FFI::Platypus::Record>).
548
-
549
- (Note that languages like L<Go|FFI::Platypus::Lang::Go> and L<Rust|FFI::Platypus::Lang::Rust> do not use NULL terminated strings
550
- and need their own string types; see the appropriate language plugins for details)
551
-
552
- # can also be used when you need a void * or const void *
553
- $ffi->attach( write => ['int', 'string', 'size_t' ] => 'ssizet' );
554
-
555
- The C<string> type can also be used to pass in the start of a buffer
556
- of arbitrary bytes stored in a Perl scalar. Because a C<string> is
557
- passed just as a pointer you will typically need to also pass the
558
- length of the buffer as a separate argument. This is necessary because
559
- buffers could potentially have a NULL in them.
560
-
561
- The pointer passed into C (or other language) is to the content of the
562
- actual scalar, which means it can modify the content of a scalar.
563
-
564
- B<NOTE>: When used as a return type, the string is I<copied> into a
565
- new scalar rather than using the original address. This is due to
566
- the ownership model of scalars in Perl, but it is also most of the
567
- time what you want.
568
-
569
- This can be problematic when a function returns a string that the callee
570
- is expected to free. Consider the functions:
571
-
572
- char *
573
- get_string()
574
- {
575
- char *buffer;
576
- buffer = malloc(20);
577
- strcpy(buffer, "Perl");
578
- }
579
-
580
- void
581
- free_string(char *buffer)
582
- {
583
- free(buffer);
584
- }
585
-
586
- This API returns a string that you are expected to free when you are
587
- done with it. (At least they have provided an API for freeing the
588
- string instead of expecting you to call libc free)! A simple binding
589
- to get the string would be:
590
-
591
- $ffi->attach( get_string => [] => 'string' ); # memory leak
592
- my $str = get_string();
593
-
594
- Which will work to a point, but the memory allocated by get_string
595
- will leak. Instead you need to get the opaque pointer, cast it to
596
- a string and then free it.
597
-
598
- $ffi->attach( get_string => [] => 'opaque' );
599
- $ffi->attach( free_string => ['opaque'] => 'void' );
600
- my $ptr = get_string();
601
- my $str = $ffi->cast( 'opaque' => 'string', $ptr ); # copies the string
602
- free_string($ptr);
603
-
604
- If you are doing this sort of thing a lot, it can be worth adding a
605
- custom type:
606
-
607
- $ffi->attach( free_string => ['opaque'] => 'void' );
608
- $ffi->custom_type( 'my_string' => {
609
- native_type => 'opaque',
610
- native_to_perl => sub {
611
- my($ptr) = @_;
612
- my $str = $ffi->cast( 'opaque' => 'string', $ptr ); # copies the string
613
- free_string($ptr);
614
- $str;
615
- }
616
- });
617
-
618
- $ffi->attach( get_string => [] => 'my_string' );
619
- my $str = get_string();
620
-
621
- Since version 0.62, pointers and arrays to strings are supported as a
622
- first class type. Prior to that L<FFI::Platypus::Type::StringArray>
623
- and L<FFI::Platypus::Type::StringPointer> could be used, though their
624
- use in new code is discouraged.
625
-
626
- $ffi->attach( foo => ['string[]'] => 'void' );
627
- foo( [ 'array', 'of', 'strings' ] );
628
-
629
- $ffi->attach( bar => ['string*'] => 'void' );
630
- my $string = 'baz';
631
- bar( \$string ); # $string may be modified.
632
-
633
- Strings are not allowed as return types from closure. This, again
634
- is due to the ownership model of scalars in Perl. (There is no way
635
- for Perl to know when calling language is done with the memory allocated
636
- to the string). Consider the API:
637
-
638
- typedef const char *(*get_message_t)(void);
639
-
640
- void
641
- print_message(get_message_t get_message)
642
- {
643
- const char *str;
644
- str = get_message();
645
- printf("message = %s\n", str);
646
- }
647
-
648
- It feels like this should be able to work:
649
-
650
- $ffi->type('()->string' => 'get_message_t'); # not ok
651
- $ffi->attach( print_message => ['get_message_t'] => 'void' );
652
- my $get_message = $ffi->closure(sub {
653
- return "my message";
654
- });
655
- print_message($get_message);
656
-
657
- If the type declaration for C<get_message_t> were legal, then this
658
- script would likely segfault or in the very least corrupt memory.
659
- The problem is that once C<"my message"> is returned from the closure
660
- Perl doesn't have a reference to it anymore and will free it.
661
- To do this safely, you have to keep a reference to the scalar around
662
- and return an opaque pointer to the string using a cast.
663
-
664
- $ffi->type('()->opaque' => 'get_message_t');
665
- $ffi->attach( print_message => ['get_message_t'] => 'void' );
666
- my $get_message => $ffi->closure(sub {
667
- our $message = "my message"; # needs to be our so that it doesn't
668
- # get free'd
669
- my $ptr = $ffi->cast('string' => 'opaque', $message);
670
- return $ptr;
671
- });
672
- print_message($get_message);
673
-
674
- Another type of string that you may run into with some APIs is the
675
- so called "wide" string. In your C code if you see C<wchar_t*>
676
- or C<const wchar_t*> or if in Win32 API code you see C<LPWSTR>
677
- or C<LPCWSTR>. Most commonly you will see these types when working
678
- with the Win32 API, but you may see them in Unix as well. These
679
- types are intended for dealing with Unicode, but they do not use
680
- the same UTF-8 format used by Perl internally, so they need to be
681
- converted. You can do this manually by allocating the memory
682
- and using the L<Encode> module, but the easier way is to use
683
- either L<FFI::Platypus::Type::WideString> or
684
- L<FFI::Platypus::Lang::Win32>, which handle the memory allocation
685
- and conversion for you.
686
-
687
- String types can be defined to have a fixed length using a trailing
688
- parenthetical like so C<string(10)>. For arguments this has little
689
- practical effect since the strings are passed as pointers anyway,
690
- but does impact return values. If a function that returns a C<string(10)>
691
- type returns a string that is not NULL terminated, only the first ten bytes
692
- will be returned in the result.
693
-
694
- Internally fixed length strings are implemented the same as
695
- classless record types (that is to say C<string(10)> is identically
696
- internally to C<record(10)*>).
697
-
698
- For the 1.00 Platypus API, the C<string(10)> type was specified as
699
- a pointer (that is C<string(10)*>). This was a mistake, but you
700
- can still use the latter as an alias for the correct form in the
701
- 2.00 API.
702
-
703
- =head2 Pointers and Arrays of Strings
704
-
705
- As of the 1.00 Platypus API, you can specify pointers to strings
706
- (C<string*>) and arrays of strings (C<string[10]>). Since strings
707
- themselves are passed as pointers, this means these types are
708
- passed in as pointers to pointers. If the pointer to the string
709
- is changed then when the function returns the scalar or array
710
- will be updated as well.
711
-
712
- =head2 Pointer / References
713
-
714
- In C you can pass a pointer to a variable to a function in order
715
- accomplish the task of pass by reference. In Perl the same task is
716
- accomplished by passing a reference (although you can also modify the
717
- argument stack thus Perl supports proper pass by reference as well).
718
-
719
- With L<FFI::Platypus> you can define a pointer to any native, string
720
- or record type. You cannot (at least not yet) define a pointer to
721
- a pointer or a pointer to an array or any other type not otherwise
722
- supported. When passing in a pointer to something you must make sure
723
- to pass in a reference to a scalar, or C<undef> (C<undef> will be
724
- translated int C<NULL>).
725
-
726
- If the C code makes a change to the value pointed to by the pointer, the
727
- scalar will be updated before returning to Perl space. Example, with C
728
- code.
729
-
730
- /* foo.c */
731
- void increment_int(int *value)
732
- {
733
- if(value != NULL)
734
- (*value)++;
735
- else
736
- fprintf(stderr, "NULL pointer!\n");
737
- }
738
-
739
- # foo.pl
740
- use FFI::Platypus 2.00;
741
- my $ffi = FFI::Platypus->new( api => 2 );
742
- $ffi->lib('libfoo.so'); # change to reflect the dynamic lib
743
- # that contains foo.c
744
- $ffi->type('int*' => 'int_p');
745
- $ffi->attach(increment_int => ['int_p'] => 'void');
746
- my $i = 0;
747
- increment_int(\$i); # $i == 1
748
- increment_int(\$i); # $i == 2
749
- increment_int(\$i); # $i == 3
750
- increment_int(undef); # prints "NULL pointer!\n"
751
-
752
- Older versions of Platypus did not support pointers to strings or records.
753
-
754
- =head2 Records
755
-
756
- Records are structured data of a fixed length. In C they are called
757
- C<struct>s.
758
-
759
- For most C structured data, as long as you do not need to a record
760
- by value, L<FFI::C> is the better choice. Briefly, L<FFI::C> supports
761
- C<struct>, C<union>, and arrays of C<struct> and C<unions>. L<FFI::C>
762
- does not support passing by value. The reminder of this section will
763
- discuss only the C<record> type.
764
-
765
- To declare a record type, use C<record>:
766
-
767
- $ffi->type( 'record (42)' => 'my_record_of_size_42_bytes' );
768
-
769
- The easiest way to mange records with Platypus is by using
770
- L<FFI::Platypus::Record> to define a record layout for a record class.
771
- Here is a brief example:
772
-
773
- package Unix::TimeStruct;
774
-
775
- use FFI::Platypus 2.00;
776
- use FFI::Platypus::Record;
777
-
778
- record_layout_1(qw(
779
- int tm_sec
780
- int tm_min
781
- int tm_hour
782
- int tm_mday
783
- int tm_mon
784
- int tm_year
785
- int tm_wday
786
- int tm_yday
787
- int tm_isdst
788
- long tm_gmtoff
789
- string tm_zone
790
- ));
791
-
792
- my $ffi = FFI::Platypus->new( api => 2 );
793
- $ffi->lib(undef);
794
- # define a record class Unix::TimeStruct and alias it to "tm"
795
- $ffi->type("record(Unix::TimeStruct)*" => 'tm');
796
-
797
- # attach the C localtime function as a constructor
798
- $ffi->attach( localtime => ['time_t*'] => 'tm', sub {
799
- my($inner, $class, $time) = @_;
800
- $time = time unless defined $time;
801
- $inner->(\$time);
802
- });
803
-
804
- package main;
805
-
806
- # now we can actually use our Unix::TimeStruct class
807
- my $time = Unix::TimeStruct->localtime;
808
- printf "time is %d:%d:%d %s\n",
809
- $time->tm_hour,
810
- $time->tm_min,
811
- $time->tm_sec,
812
- $time->tm_zone;
813
-
814
- For more detailed usage, see L<FFI::Platypus::Record>.
815
-
816
- Platypus does not manage the structure of a record (that is up to you),
817
- it just keeps track of their size and makes sure that they are copied
818
- correctly when used as a return type. A record in Perl is just a string
819
- of bytes stored as a scalar. In addition to defining a record layout
820
- for a record class, there are a number of tools you can use manipulate
821
- records in Perl, two notable examples are L<pack and unpack|perlpacktut>
822
- and L<Convert::Binary::C>.
823
-
824
- Here is an example with commentary that uses L<Convert::Binary::C> to
825
- extract the component time values from the C C<localtime> function, and
826
- then smushes them back together to get the original C<time_t> (an
827
- integer).
828
-
829
- use Convert::Binary::C;
830
- use FFI::Platypus 2.00;
831
- use Data::Dumper qw( Dumper );
832
-
833
- my $c = Convert::Binary::C->new;
834
-
835
- # Alignment of zero (0) means use
836
- # the alignment of your CPU
837
- $c->configure( Alignment => 0 );
838
-
839
- # parse the tm record structure so
840
- # that Convert::Binary::C knows
841
- # what to spit out and suck in
842
- $c->parse(<<ENDC);
843
- struct tm {
844
- int tm_sec;
845
- int tm_min;
846
- int tm_hour;
847
- int tm_mday;
848
- int tm_mon;
849
- int tm_year;
850
- int tm_wday;
851
- int tm_yday;
852
- int tm_isdst;
853
- long int tm_gmtoff;
854
- const char *tm_zone;
855
- };
856
- ENDC
857
-
858
- # get the size of tm so that we can give it
859
- # to Platypus
860
- my $tm_size = $c->sizeof("tm");
861
-
862
- # create the Platypus instance and create the appropriate
863
- # types and functions
864
- my $ffi = FFI::Platypus->new( api => 2 );
865
- $ffi->lib(undef);
866
- $ffi->type("record($tm_size)*" => 'tm');
867
- $ffi->attach( [ localtime => 'my_localtime' ] => ['time_t*'] => 'tm' );
868
- $ffi->attach( [ time => 'my_time' ] => ['tm'] => 'time_t' );
869
-
870
- # ===============================================
871
- # get the tm struct from the C localtime function
872
- # note that we pass in a reference to the value that time
873
- # returns because localtime takes a pointer to time_t
874
- # for some reason.
875
- my $time_hashref = $c->unpack( tm => my_localtime(\time) );
876
-
877
- # tm_zone comes back from Convert::Binary::C as an opaque,
878
- # cast it into a string. We localize it to just this do
879
- # block so that it will be a pointer when we pass it back
880
- # to C land below.
881
- do {
882
- local $time_hashref->{tm_zone} = $ffi->cast(opaque => string => $time_hashref->{tm_zone});
883
- print Dumper($time_hashref);
884
- };
885
-
886
- # ===============================================
887
- # convert the tm struct back into an epoch value
888
- my $time = my_time( $c->pack( tm => $time_hashref ) );
889
-
890
- print "time = $time\n";
891
- print "perl time = ", time, "\n";
892
-
893
- You can also link a record type to a class. It will then be accepted
894
- when blessed into that class as an argument passed into a C function,
895
- and when it is returned from a C function it will be blessed into that
896
- class. Basically:
897
-
898
- $ffi->type( 'record(My::Class)*' => 'my_class' );
899
- $ffi->attach( my_function1 => [ 'my_class' ] => 'void' );
900
- $ffi->attach( my_function2 => [ ] => 'my_class' );
901
-
902
- The only thing that your class MUST provide is either a
903
- C<ffi_record_size> or C<_ffi_record_size> class method that returns the
904
- size of the record in bytes.
905
-
906
- Contrast a record type which is stored as a scalar string of bytes in
907
- Perl to an opaque pointer which is stored as an integer in Perl. Both
908
- are treated as pointers in C functions. The situations when you usually
909
- want to use a record are when you know ahead of time what the size of
910
- the object that you are working with and probably something about its
911
- structure. Because a function that returns a structure copies the
912
- structure into a Perl data structure, you want to make sure that it is
913
- okay to copy the record objects that you are dealing with if any of your
914
- functions will be returning one of them.
915
-
916
- Opaque pointers should be used when you do not know the size of the
917
- object that you are using, or if the objects are created and free'd
918
- through an API interface other than C<malloc> and C<free>.
919
-
920
- The examples in this section actually use pointers to records (note
921
- the trailing star C<*> in the declarations). Most programming languages
922
- allow you to pass or return a record as either pass-by-value or as a
923
- pointer (pass-by-reference).
924
-
925
- C code:
926
-
927
- struct { int a; } foo_t;
928
- void pass_by_value_example( struct foo_t foo );
929
- void pass_by_reference_example( struct foo_t *foo );
930
-
931
- Perl code:
932
-
933
- {
934
- package Foo;
935
- use FFI::Platypus::Record;
936
- record_layout_1( int => 'a' );
937
- }
938
- $ffi->type( 'Record(Foo)' => 'foo_t' );
939
- $ffi->attach( pass_by_value_example => [ 'foo_t' ] => 'void' );
940
- $ffi->attach( pass_by_reference_example => [ 'foo_t*' ] => 'void' );
941
-
942
- As with strings, functions that return a pointer to a record are actually
943
- copied.
944
-
945
- C code:
946
-
947
- struct foo_t *return_struct_pointer_example();
948
-
949
- Perl code:
950
-
951
- $ffi->attach( return_struct_pointer_example => [] => 'foo_t*' );
952
- my $foo = return_struct_pointer_example();
953
- # $foo is a copy of the record returned by the function.
954
-
955
- As with strings, if the API expects you to free the record it returns
956
- (it is misbehaving a little, but lets set that aside), then you can
957
- work around this by returning an C<opaque> type, casting to the
958
- record, and finally freeing the original pointer.
959
-
960
- use FFI::Platypus::Memory qw( free );
961
- $ffi->attach( return_struct_pointer_example => [] => 'opaque' );
962
- my $foo_ptr = return_struct_pointer_example();
963
- my $foo = $ffi->cast( 'opaque' => 'foo_t*', $foo_ptr );
964
- free $foo_ptr;
965
-
966
- You can pass records into a closure, but care needs to be taken.
967
- Records passed into a closure are read-only inside the closure,
968
- including C<string rw> members. Although you can pass a "pointer"
969
- to a record into a closure, because of limitations of the
970
- implementation you actually have a copy, so all records passed
971
- into closures are passed by-value.
972
-
973
- Note that a record that does not have a class (classless) and is
974
- defined instead using a length is internally identical to fixed
975
- strings. That is to say C<string(10)> and C<record(10)*> are
976
- identical.
977
-
978
- =head2 Fixed length arrays
979
-
980
- Fixed length arrays of native types and strings are supported by
981
- L<FFI::Platypus>. Like pointers, if the values contained in the
982
- array are updated by the C function these changes will be reflected
983
- when it returns to Perl space. An example of using this is the
984
- Unix C<pipe> command which returns a list of two file descriptors
985
- as an array.
986
-
987
- use FFI::Platypus 2.00;
988
-
989
- my $ffi = FFI::Platypus->new( api => 2 );
990
- $ffi->lib(undef);
991
- $ffi->attach([pipe=>'mypipe'] => ['int[2]'] => 'int');
992
-
993
- my @fd = (0,0);
994
- mypipe(\@fd);
995
- my($fd1,$fd2) = @fd;
996
-
997
- print "$fd1 $fd2\n";
998
-
999
- Because of the way records are implemented, an array of records
1000
- does not make sense and is not currently supported.
1001
-
1002
- =head2 Variable length arrays
1003
-
1004
- [version 0.22]
1005
-
1006
- Variable length arrays are supported for argument types can also be
1007
- specified by using the C<[]> notation but by leaving the size empty:
1008
-
1009
- $ffi->type('int[]' => 'var_int_array');
1010
-
1011
- When used as an argument type it will probe the array reference that you
1012
- pass in to determine the correct size. Usually you will need to
1013
- communicate the size of the array to the C code. One way to do this is
1014
- to pass the length of the array in as an additional argument. For
1015
- example the C code:
1016
-
1017
- int
1018
- sum(int *array, int size)
1019
- {
1020
- int total, i;
1021
- for (i = 0, total = 0; i < size; i++)
1022
- {
1023
- total += array[i];
1024
- }
1025
- return total;
1026
- }
1027
-
1028
- Can be called from Perl like this:
1029
-
1030
- use FFI::Platypus 2.00;
1031
-
1032
- my $ffi = FFI::Platypus->new( api => 2 );
1033
- $ffi->lib('./var_array.so');
1034
-
1035
- $ffi->attach( sum => [ 'int[]', 'int' ] => 'int' );
1036
-
1037
- my @list = (1..100);
1038
-
1039
- print sum(\@list, scalar @list), "\n";
1040
-
1041
- Another method might be to have a special value, such as 0 or NULL
1042
- indicate the termination of the array.
1043
-
1044
- Because of the way records are implemented, an array of records
1045
- does not make sense and is not currently supported.
1046
-
1047
- =head2 Closures
1048
-
1049
- A closure (sometimes called a "callback", we use the C<libffi>
1050
- terminology) is a Perl subroutine that can be called from C. In order
1051
- to be called from C it needs to be passed to a C function. To define
1052
- the closure type you need to provide a list of argument types and a
1053
- return type. Currently only native types (integers, floating point
1054
- values, opaque), strings and records (by-value; you can pass a pointer
1055
- to a record, but due to limitations of the record implementation this
1056
- is actually a copy) are supported as closure argument types, and only
1057
- native types and records (by-value; pointer records and records with
1058
- string pointers cannot be returned from a closure) are supported as
1059
- closure return types. Inside the closure any records passed in are
1060
- read-only.
1061
-
1062
- We plan to add other types, though they can be converted using the Platypus
1063
- C<cast> or C<attach_cast> methods.
1064
-
1065
- Here is an example, with C code:
1066
-
1067
- /*
1068
- * closure.c - on Linux compile with: gcc closure.c -shared -o closure.so -fPIC
1069
- */
1070
-
1071
- #include <stdio.h>
1072
-
1073
- typedef int (*closure_t)(int);
1074
- closure_t my_closure = NULL;
1075
-
1076
- void set_closure(closure_t value)
1077
- {
1078
- my_closure = value;
1079
- }
1080
-
1081
- int call_closure(int value)
1082
- {
1083
- if(my_closure != NULL)
1084
- return my_closure(value);
1085
- else
1086
- fprintf(stderr, "closure is NULL\n");
1087
- }
1088
-
1089
- And the Perl code:
1090
-
1091
- use FFI::Platypus 2.00;
1092
-
1093
- my $ffi = FFI::Platypus->new( api => 2 );
1094
- $ffi->lib('./closure.so');
1095
- $ffi->type('(int)->int' => 'closure_t');
1096
-
1097
- $ffi->attach(set_closure => ['closure_t'] => 'void');
1098
- $ffi->attach(call_closure => ['int'] => 'int');
1099
-
1100
- my $closure1 = $ffi->closure(sub { $_[0] * 2 });
1101
- set_closure($closure1);
1102
- print call_closure(2), "\n"; # prints "4"
1103
-
1104
- my $closure2 = $ffi->closure(sub { $_[0] * 4 });
1105
- set_closure($closure2);
1106
- print call_closure(2), "\n"; # prints "8"
1107
-
1108
- If you have a pointer to a function in the form of an C<opaque> type,
1109
- you can pass this in place of a closure type:
1110
-
1111
- use FFI::Platypus 2.00;
1112
-
1113
- my $ffi = FFI::Platypus->new( api => 2 );
1114
- $ffi->lib('./closure.so');
1115
- $ffi->type('(int)->int' => 'closure_t');
1116
-
1117
- $ffi->attach(set_closure => ['closure_t'] => 'void');
1118
- $ffi->attach(call_closure => ['int'] => 'int');
1119
-
1120
- my $closure = $ffi->closure(sub { $_[0] * 6 });
1121
- my $opaque = $ffi->cast(closure_t => 'opaque', $closure);
1122
- set_closure($opaque);
1123
- print call_closure(2), "\n"; # prints "12"
1124
-
1125
- The syntax for specifying a closure type is a list of comma separated
1126
- types in parentheticals followed by a narrow arrow C<-E<gt>>, followed
1127
- by the return type for the closure. For example a closure that takes a
1128
- pointer, an integer and a string and returns an integer would look like
1129
- this:
1130
-
1131
- $ffi->type('(opaque, int, string) -> int' => 'my_closure_type');
1132
-
1133
- Care needs to be taken with scoping and closures, because of the way
1134
- Perl and C handle responsibility for allocating memory differently.
1135
- Perl keeps reference counts and frees objects when nothing is
1136
- referencing them. In C the code that allocates the memory is considered
1137
- responsible for explicitly free'ing the memory for objects it has
1138
- created when they are no longer needed. When you pass a closure into a
1139
- C function, the C code has a pointer or reference to that object, but it
1140
- has no way up letting Perl know when it is no longer using it. As a
1141
- result, if you do not keep a reference to your closure around it will be
1142
- free'd by Perl and if the C code ever tries to call the closure it will
1143
- probably SIGSEGV. Thus supposing you have a C function C<set_closure>
1144
- that takes a Perl closure, this is almost always wrong:
1145
-
1146
- set_closure($ffi->closure({ $_[0] * 2 })); # BAD
1147
-
1148
- In some cases, you may want to create a closure shouldn't ever be
1149
- free'd. For example you are passing a closure into a C function that
1150
- will retain it for the lifetime of your application. You can use the
1151
- sticky method to keep the closure, without the need to keep a reference
1152
- of the closure:
1153
-
1154
- {
1155
- my $closure = $ffi->closure(sub { $_[0] * 2 });
1156
- $closure->sticky;
1157
- set_closure($closure); # OKAY
1158
- }
1159
- # closure still exists and is accesible from C, but
1160
- # not from Perl land.
1161
-
1162
- =head2 Custom Types
1163
-
1164
- =head3 Custom Types in Perl
1165
-
1166
- Platypus custom types are the rough analogue to typemaps in the XS
1167
- world. They offer a method for converting Perl types into native types
1168
- that the C<libffi> can understand and pass on to the C code.
1169
-
1170
- =head4 Example 1: Integer constants
1171
-
1172
- Say you have a C header file like this:
1173
-
1174
- /* possible foo types: */
1175
- #define FOO_STATIC 1
1176
- #define FOO_DYNAMIC 2
1177
- #define FOO_OTHER 3
1178
-
1179
- typedef int foo_t;
1180
-
1181
- void foo(foo_t foo);
1182
- foo_t get_foo();
1183
-
1184
- The challenge is here that once the source is processed by the C
1185
- pre-processor the name/value mappings for these C<FOO_> constants
1186
- are lost. There is no way to fetch them from the library once it
1187
- is compiled and linked.
1188
-
1189
- One common way of implementing this would be to create and export
1190
- constants in your Perl module, like this:
1191
-
1192
- package Foo;
1193
-
1194
- use FFI::Platypus 2.00;
1195
- use Exporter qw( import );
1196
-
1197
- our @EXPORT_OK = qw( FOO_STATIC FOO_DYNAMIC FOO_OTHER foo get_foo );
1198
-
1199
- use constant FOO_STATIC => 1;
1200
- use constant FOO_DYNAMIC => 2;
1201
- use constant FOO_OTHER => 3;
1202
-
1203
- my $ffi = FFI::Platypus->new( api => 2 );
1204
- $ffi->attach(foo => ['int'] => 'void');
1205
- $ffi->attach(get_foo => [] => 'int');
1206
-
1207
- Then you could use the module thus:
1208
-
1209
- use Foo qw( foo FOO_STATIC );
1210
- foo(FOO_STATIC);
1211
-
1212
- If you didn't want to rely on integer constants or exports, you could
1213
- also define a custom type, and allow strings to be passed into your
1214
- function, like this:
1215
-
1216
- package Foo;
1217
-
1218
- use FFI::Platypus 2.00;
1219
-
1220
- our @EXPORT_OK = qw( foo get_foo );
1221
-
1222
- my %foo_types = (
1223
- static => 1,
1224
- dynamic => 2,
1225
- other => 3,
1226
- );
1227
- my %foo_types_reverse = reverse %foo_types;
1228
-
1229
- my $ffi = FFI::Platypus->new( api => 2 );
1230
- $ffi->custom_type(foo_t => {
1231
- native_type => 'int',
1232
- native_to_perl => sub {
1233
- $foo_types{$_[0]};
1234
- },
1235
- perl_to_native => sub {
1236
- $foo_types_reverse{$_[0]};
1237
- },
1238
- });
1239
-
1240
- $ffi->attach(foo => ['foo_t'] => 'void');
1241
- $ffi->attach(get_foo => [] => 'foo_t');
1242
-
1243
- Now when an argument of type C<foo_t> is called for it will be converted
1244
- from an appropriate string representation, and any function that returns
1245
- a C<foo_t> type will return a string instead of the integer
1246
- representation:
1247
-
1248
- use Foo;
1249
- foo('static');
1250
-
1251
- If the library that you are using has a lot of these constants you can
1252
- try using L<Convert::Binary::C> or another C header parser to obtain
1253
- the appropriate name/value pairings for the constants that you need.
1254
-
1255
- =head4 Example 2: Blessed references
1256
-
1257
- Supposing you have a C library that uses an opaque pointer with a pseudo
1258
- OO interface, like this:
1259
-
1260
- typedef struct foo_t;
1261
-
1262
- foo_t *foo_new();
1263
- void foo_method(foo_t *, int argument);
1264
- void foo_free(foo_t *);
1265
-
1266
- One approach to adapting this to Perl would be to create a OO Perl
1267
- interface like this:
1268
-
1269
- package Foo;
1270
-
1271
- use FFI::Platypus 2.00;
1272
- use FFI::Platypus::API qw( arguments_get_string );
1273
-
1274
- my $ffi = FFI::Platypus->new( api => 2 );
1275
- $ffi->custom_type(foo_t => {
1276
- native_type => 'opaque',
1277
- native_to_perl => sub {
1278
- my $class = arguments_get_string(0);
1279
- bless \$_[0], $class;
1280
- }
1281
- perl_to_native => sub { ${$_[0]} },
1282
- });
1283
-
1284
- $ffi->attach([ foo_new => 'new' ] => [ 'string' ] => 'foo_t' );
1285
- $ffi->attach([ foo_method => 'method' ] => [ 'foo_t', 'int' ] => 'void');
1286
- $ffi->attach([ foo_free => 'DESTROY' ] => [ 'foo_t' ] => 'void');
1287
-
1288
- my $foo = Foo->new;
1289
-
1290
- Here we are blessing a reference to the opaque pointer when we return
1291
- the custom type for C<foo_t>, and dereferencing that reference before we
1292
- pass it back in. The function C<arguments_get_string> queries the C
1293
- arguments to get the class name to make sure the object is blessed into
1294
- the correct class (for more details on the custom type API see
1295
- L<FFI::Platypus::API>), so you can inherit and extend this class like a
1296
- normal Perl class. This works because the C "constructor" ignores the
1297
- class name that we pass in as the first argument. If you have a C
1298
- "constructor" like this that takes arguments you'd have to write a
1299
- wrapper for new.
1300
-
1301
- A good example of a C library that uses this pattern, including
1302
- inheritance is C<libarchive>. Platypus comes with a more extensive
1303
- example in C<examples/archive.pl> that demonstrates this.
1304
-
1305
- =head4 Example 3: Pointers with pack / unpack
1306
-
1307
- TODO
1308
-
1309
- See example L<FFI::Platypus::Type::StringPointer>.
1310
-
1311
- =head4 Example 4: Custom Type modules and the Custom Type API
1312
-
1313
- TODO
1314
-
1315
- See example L<FFI::Platypus::Type::PointerSizeBuffer>.
1316
-
1317
- =head4 Example 5: Custom Type on CPAN
1318
-
1319
- You can distribute your own Platypus custom types on CPAN, if you think
1320
- they may be applicable to others. The default namespace is prefix with
1321
- C<FFI::Platypus::Type::>, though you can stick it anywhere (under your
1322
- own namespace may make more sense if the custom type is specific to your
1323
- application).
1324
-
1325
- A good example and pattern to follow is
1326
- L<FFI::Platypus::Type::StringArray>.
1327
-
1328
- =head1 SEE ALSO
1329
-
1330
- =over 4
1331
-
1332
- =item L<FFI::Platypus>
1333
-
1334
- Main platypus documentation.
1335
-
1336
- =item L<FFI::Platypus::API>
1337
-
1338
- Custom types API.
1339
-
1340
- =item L<FFI::Platypus::Type::StringPointer>
1341
-
1342
- String pointer type.
1343
-
1344
- =back
1345
-
1346
- =head1 AUTHOR
1347
-
1348
- Author: Graham Ollis E<lt>plicease@cpan.orgE<gt>
1349
-
1350
- Contributors:
1351
-
1352
- Bakkiaraj Murugesan (bakkiaraj)
1353
-
1354
- Dylan Cali (calid)
1355
-
1356
- pipcet
1357
-
1358
- Zaki Mughal (zmughal)
1359
-
1360
- Fitz Elliott (felliott)
1361
-
1362
- Vickenty Fesunov (vyf)
1363
-
1364
- Gregor Herrmann (gregoa)
1365
-
1366
- Shlomi Fish (shlomif)
1367
-
1368
- Damyan Ivanov
1369
-
1370
- Ilya Pavlov (Ilya33)
1371
-
1372
- Petr Písař (ppisar)
1373
-
1374
- Mohammad S Anwar (MANWAR)
1375
-
1376
- Håkon Hægland (hakonhagland, HAKONH)
1377
-
1378
- Meredith (merrilymeredith, MHOWARD)
1379
-
1380
- Diab Jerius (DJERIUS)
1381
-
1382
- Eric Brine (IKEGAMI)
1383
-
1384
- szTheory
1385
-
1386
- José Joaquín Atria (JJATRIA)
1387
-
1388
- Pete Houston (openstrike, HOUSTON)
1389
-
1390
- Lukas Mai (MAUKE)
1391
-
1392
- =head1 COPYRIGHT AND LICENSE
1393
-
1394
- This software is copyright (c) 2015-2022 by Graham Ollis.
1395
-
1396
- This is free software; you can redistribute it and/or modify it under
1397
- the same terms as the Perl 5 programming language system itself.
1398
-
1399
- =cut