kurumi_project 2.0.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (612) hide show
  1. package/.1ql02wrhsqoc37143177~ +0 -0
  2. package/.2ah3d7e5mq7xe3413898109~ +0 -0
  3. package/.2w99jidu87pdw1251473787~ +0 -0
  4. package/.cache/replit/__replit_disk_meta.json +1 -0
  5. package/.cache/replit/nix/env.json +1 -0
  6. package/.config/configstore/update-notifier-npm.json +4 -0
  7. package/.mdr6kf69tq8r1532219418~ +0 -0
  8. package/.replit +2 -0
  9. package/.ss8dey3a8g413668593375~ +0 -0
  10. package/FCA-KURUMIVIP/StateCrypt.js +29 -0
  11. package/FCA-KURUMIVIP/index.js +792 -0
  12. package/FCA-KURUMIVIP/logger.js +16 -0
  13. package/FCA-KURUMIVIP/node_modules/axios/CHANGELOG.md +478 -0
  14. package/FCA-KURUMIVIP/node_modules/axios/LICENSE +7 -0
  15. package/FCA-KURUMIVIP/node_modules/axios/MIGRATION_GUIDE.md +3 -0
  16. package/FCA-KURUMIVIP/node_modules/axios/README.md +1310 -0
  17. package/FCA-KURUMIVIP/node_modules/axios/SECURITY.md +6 -0
  18. package/FCA-KURUMIVIP/node_modules/axios/dist/axios.js +2962 -0
  19. package/FCA-KURUMIVIP/node_modules/axios/dist/axios.js.map +1 -0
  20. package/FCA-KURUMIVIP/node_modules/axios/dist/axios.min.js +2 -0
  21. package/FCA-KURUMIVIP/node_modules/axios/dist/axios.min.js.map +1 -0
  22. package/FCA-KURUMIVIP/node_modules/axios/dist/browser/axios.cjs +3189 -0
  23. package/FCA-KURUMIVIP/node_modules/axios/dist/browser/axios.cjs.map +1 -0
  24. package/FCA-KURUMIVIP/node_modules/axios/dist/esm/axios.js +3211 -0
  25. package/FCA-KURUMIVIP/node_modules/axios/dist/esm/axios.js.map +1 -0
  26. package/FCA-KURUMIVIP/node_modules/axios/dist/esm/axios.min.js +2 -0
  27. package/FCA-KURUMIVIP/node_modules/axios/dist/esm/axios.min.js.map +1 -0
  28. package/FCA-KURUMIVIP/node_modules/axios/dist/node/axios.cjs +4182 -0
  29. package/FCA-KURUMIVIP/node_modules/axios/dist/node/axios.cjs.map +1 -0
  30. package/FCA-KURUMIVIP/node_modules/axios/index.d.cts +528 -0
  31. package/FCA-KURUMIVIP/node_modules/axios/index.d.ts +543 -0
  32. package/FCA-KURUMIVIP/node_modules/axios/index.js +41 -0
  33. package/FCA-KURUMIVIP/node_modules/axios/lib/adapters/README.md +37 -0
  34. package/FCA-KURUMIVIP/node_modules/axios/lib/adapters/adapters.js +59 -0
  35. package/FCA-KURUMIVIP/node_modules/axios/lib/adapters/http.js +644 -0
  36. package/FCA-KURUMIVIP/node_modules/axios/lib/adapters/xhr.js +249 -0
  37. package/FCA-KURUMIVIP/node_modules/axios/lib/axios.js +86 -0
  38. package/FCA-KURUMIVIP/node_modules/axios/lib/cancel/CancelToken.js +121 -0
  39. package/FCA-KURUMIVIP/node_modules/axios/lib/cancel/CanceledError.js +25 -0
  40. package/FCA-KURUMIVIP/node_modules/axios/lib/cancel/isCancel.js +5 -0
  41. package/FCA-KURUMIVIP/node_modules/axios/lib/core/Axios.js +197 -0
  42. package/FCA-KURUMIVIP/node_modules/axios/lib/core/AxiosError.js +100 -0
  43. package/FCA-KURUMIVIP/node_modules/axios/lib/core/AxiosHeaders.js +290 -0
  44. package/FCA-KURUMIVIP/node_modules/axios/lib/core/InterceptorManager.js +71 -0
  45. package/FCA-KURUMIVIP/node_modules/axios/lib/core/README.md +8 -0
  46. package/FCA-KURUMIVIP/node_modules/axios/lib/core/buildFullPath.js +21 -0
  47. package/FCA-KURUMIVIP/node_modules/axios/lib/core/dispatchRequest.js +81 -0
  48. package/FCA-KURUMIVIP/node_modules/axios/lib/core/mergeConfig.js +105 -0
  49. package/FCA-KURUMIVIP/node_modules/axios/lib/core/settle.js +27 -0
  50. package/FCA-KURUMIVIP/node_modules/axios/lib/core/transformData.js +28 -0
  51. package/FCA-KURUMIVIP/node_modules/axios/lib/defaults/index.js +166 -0
  52. package/FCA-KURUMIVIP/node_modules/axios/lib/defaults/transitional.js +7 -0
  53. package/FCA-KURUMIVIP/node_modules/axios/lib/env/README.md +3 -0
  54. package/FCA-KURUMIVIP/node_modules/axios/lib/env/classes/FormData.js +2 -0
  55. package/FCA-KURUMIVIP/node_modules/axios/lib/env/data.js +1 -0
  56. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/AxiosTransformStream.js +191 -0
  57. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
  58. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  59. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/README.md +7 -0
  60. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
  61. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/bind.js +7 -0
  62. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/buildURL.js +63 -0
  63. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/combineURLs.js +15 -0
  64. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/cookies.js +52 -0
  65. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
  66. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/formDataToJSON.js +92 -0
  67. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/formDataToStream.js +111 -0
  68. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
  69. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/isAbsoluteURL.js +15 -0
  70. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
  71. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/isURLSameOrigin.js +67 -0
  72. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/null.js +2 -0
  73. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
  74. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
  75. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/readBlob.js +15 -0
  76. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/speedometer.js +55 -0
  77. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/spread.js +28 -0
  78. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/throttle.js +33 -0
  79. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/toFormData.js +219 -0
  80. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/toURLEncodedForm.js +18 -0
  81. package/FCA-KURUMIVIP/node_modules/axios/lib/helpers/validator.js +91 -0
  82. package/FCA-KURUMIVIP/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
  83. package/FCA-KURUMIVIP/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
  84. package/FCA-KURUMIVIP/node_modules/axios/lib/platform/browser/index.js +63 -0
  85. package/FCA-KURUMIVIP/node_modules/axios/lib/platform/index.js +3 -0
  86. package/FCA-KURUMIVIP/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
  87. package/FCA-KURUMIVIP/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
  88. package/FCA-KURUMIVIP/node_modules/axios/lib/platform/node/index.js +12 -0
  89. package/FCA-KURUMIVIP/node_modules/axios/lib/utils.js +711 -0
  90. package/FCA-KURUMIVIP/node_modules/axios/package.json +272 -0
  91. package/FCA-KURUMIVIP/node_modules/cheerio/LICENSE +21 -0
  92. package/FCA-KURUMIVIP/node_modules/cheerio/Readme.md +357 -0
  93. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/attributes.d.ts +332 -0
  94. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/attributes.d.ts.map +1 -0
  95. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/attributes.js +622 -0
  96. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/attributes.js.map +1 -0
  97. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/css.d.ts +40 -0
  98. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/css.d.ts.map +1 -0
  99. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/css.js +118 -0
  100. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/css.js.map +1 -0
  101. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/forms.d.ts +38 -0
  102. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/forms.d.ts.map +1 -0
  103. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/forms.js +92 -0
  104. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/forms.js.map +1 -0
  105. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/manipulation.d.ts +522 -0
  106. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/manipulation.d.ts.map +1 -0
  107. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/manipulation.js +861 -0
  108. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/manipulation.js.map +1 -0
  109. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/traversing.d.ts +644 -0
  110. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/traversing.d.ts.map +1 -0
  111. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/traversing.js +907 -0
  112. package/FCA-KURUMIVIP/node_modules/cheerio/lib/api/traversing.js.map +1 -0
  113. package/FCA-KURUMIVIP/node_modules/cheerio/lib/cheerio.d.ts +69 -0
  114. package/FCA-KURUMIVIP/node_modules/cheerio/lib/cheerio.d.ts.map +1 -0
  115. package/FCA-KURUMIVIP/node_modules/cheerio/lib/cheerio.js +66 -0
  116. package/FCA-KURUMIVIP/node_modules/cheerio/lib/cheerio.js.map +1 -0
  117. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/attributes.d.ts +332 -0
  118. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/attributes.d.ts.map +1 -0
  119. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/attributes.js +601 -0
  120. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/attributes.js.map +1 -0
  121. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/css.d.ts +40 -0
  122. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/css.d.ts.map +1 -0
  123. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/css.js +113 -0
  124. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/css.js.map +1 -0
  125. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/forms.d.ts +38 -0
  126. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/forms.d.ts.map +1 -0
  127. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/forms.js +83 -0
  128. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/forms.js.map +1 -0
  129. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/manipulation.d.ts +522 -0
  130. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/manipulation.d.ts.map +1 -0
  131. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/manipulation.js +810 -0
  132. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/manipulation.js.map +1 -0
  133. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/traversing.d.ts +644 -0
  134. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/traversing.d.ts.map +1 -0
  135. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/traversing.js +831 -0
  136. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/api/traversing.js.map +1 -0
  137. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/cheerio.d.ts +69 -0
  138. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/cheerio.d.ts.map +1 -0
  139. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/cheerio.js +38 -0
  140. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/cheerio.js.map +1 -0
  141. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/index.d.ts +107 -0
  142. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/index.d.ts.map +1 -0
  143. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/index.js +102 -0
  144. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/index.js.map +1 -0
  145. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/load.d.ts +60 -0
  146. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/load.d.ts.map +1 -0
  147. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/load.js +122 -0
  148. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/load.js.map +1 -0
  149. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/options.d.ts +90 -0
  150. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/options.d.ts.map +1 -0
  151. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/options.js +26 -0
  152. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/options.js.map +1 -0
  153. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/package.json +1 -0
  154. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parse.d.ts +19 -0
  155. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parse.d.ts.map +1 -0
  156. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parse.js +73 -0
  157. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parse.js.map +1 -0
  158. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parsers/parse5-adapter.d.ts +20 -0
  159. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parsers/parse5-adapter.d.ts.map +1 -0
  160. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parsers/parse5-adapter.js +52 -0
  161. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/parsers/parse5-adapter.js.map +1 -0
  162. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/slim.d.ts +20 -0
  163. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/slim.d.ts.map +1 -0
  164. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/slim.js +22 -0
  165. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/slim.js.map +1 -0
  166. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/static.d.ts +93 -0
  167. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/static.d.ts.map +1 -0
  168. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/static.js +185 -0
  169. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/static.js.map +1 -0
  170. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/types.d.ts +20 -0
  171. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/types.d.ts.map +1 -0
  172. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/types.js +2 -0
  173. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/types.js.map +1 -0
  174. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/utils.d.ts +75 -0
  175. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/utils.d.ts.map +1 -0
  176. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/utils.js +112 -0
  177. package/FCA-KURUMIVIP/node_modules/cheerio/lib/esm/utils.js.map +1 -0
  178. package/FCA-KURUMIVIP/node_modules/cheerio/lib/index.d.ts +107 -0
  179. package/FCA-KURUMIVIP/node_modules/cheerio/lib/index.d.ts.map +1 -0
  180. package/FCA-KURUMIVIP/node_modules/cheerio/lib/index.js +141 -0
  181. package/FCA-KURUMIVIP/node_modules/cheerio/lib/index.js.map +1 -0
  182. package/FCA-KURUMIVIP/node_modules/cheerio/lib/load.d.ts +60 -0
  183. package/FCA-KURUMIVIP/node_modules/cheerio/lib/load.d.ts.map +1 -0
  184. package/FCA-KURUMIVIP/node_modules/cheerio/lib/load.js +179 -0
  185. package/FCA-KURUMIVIP/node_modules/cheerio/lib/load.js.map +1 -0
  186. package/FCA-KURUMIVIP/node_modules/cheerio/lib/options.d.ts +90 -0
  187. package/FCA-KURUMIVIP/node_modules/cheerio/lib/options.d.ts.map +1 -0
  188. package/FCA-KURUMIVIP/node_modules/cheerio/lib/options.js +41 -0
  189. package/FCA-KURUMIVIP/node_modules/cheerio/lib/options.js.map +1 -0
  190. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parse.d.ts +19 -0
  191. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parse.d.ts.map +1 -0
  192. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parse.js +78 -0
  193. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parse.js.map +1 -0
  194. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parsers/parse5-adapter.d.ts +20 -0
  195. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parsers/parse5-adapter.d.ts.map +1 -0
  196. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parsers/parse5-adapter.js +67 -0
  197. package/FCA-KURUMIVIP/node_modules/cheerio/lib/parsers/parse5-adapter.js.map +1 -0
  198. package/FCA-KURUMIVIP/node_modules/cheerio/lib/slim.d.ts +20 -0
  199. package/FCA-KURUMIVIP/node_modules/cheerio/lib/slim.d.ts.map +1 -0
  200. package/FCA-KURUMIVIP/node_modules/cheerio/lib/slim.js +42 -0
  201. package/FCA-KURUMIVIP/node_modules/cheerio/lib/slim.js.map +1 -0
  202. package/FCA-KURUMIVIP/node_modules/cheerio/lib/static.d.ts +93 -0
  203. package/FCA-KURUMIVIP/node_modules/cheerio/lib/static.d.ts.map +1 -0
  204. package/FCA-KURUMIVIP/node_modules/cheerio/lib/static.js +226 -0
  205. package/FCA-KURUMIVIP/node_modules/cheerio/lib/static.js.map +1 -0
  206. package/FCA-KURUMIVIP/node_modules/cheerio/lib/types.d.ts +20 -0
  207. package/FCA-KURUMIVIP/node_modules/cheerio/lib/types.d.ts.map +1 -0
  208. package/FCA-KURUMIVIP/node_modules/cheerio/lib/types.js +3 -0
  209. package/FCA-KURUMIVIP/node_modules/cheerio/lib/types.js.map +1 -0
  210. package/FCA-KURUMIVIP/node_modules/cheerio/lib/utils.d.ts +75 -0
  211. package/FCA-KURUMIVIP/node_modules/cheerio/lib/utils.d.ts.map +1 -0
  212. package/FCA-KURUMIVIP/node_modules/cheerio/lib/utils.js +122 -0
  213. package/FCA-KURUMIVIP/node_modules/cheerio/lib/utils.js.map +1 -0
  214. package/FCA-KURUMIVIP/node_modules/cheerio/package.json +165 -0
  215. package/FCA-KURUMIVIP/node_modules/crypto/README.md +7 -0
  216. package/FCA-KURUMIVIP/node_modules/crypto/package.json +44 -0
  217. package/FCA-KURUMIVIP/node_modules/dom-serializer/LICENSE +11 -0
  218. package/FCA-KURUMIVIP/node_modules/dom-serializer/README.md +109 -0
  219. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/esm/foreignNames.d.ts +3 -0
  220. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map +1 -0
  221. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/esm/foreignNames.js +100 -0
  222. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/esm/index.d.ts +52 -0
  223. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/esm/index.d.ts.map +1 -0
  224. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/esm/index.js +190 -0
  225. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/esm/package.json +1 -0
  226. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/foreignNames.d.ts +3 -0
  227. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/foreignNames.d.ts.map +1 -0
  228. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/foreignNames.js +103 -0
  229. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/index.d.ts +52 -0
  230. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/index.d.ts.map +1 -0
  231. package/FCA-KURUMIVIP/node_modules/dom-serializer/lib/index.js +229 -0
  232. package/FCA-KURUMIVIP/node_modules/dom-serializer/package.json +102 -0
  233. package/FCA-KURUMIVIP/node_modules/domelementtype/LICENSE +11 -0
  234. package/FCA-KURUMIVIP/node_modules/domelementtype/lib/esm/index.d.ts +48 -0
  235. package/FCA-KURUMIVIP/node_modules/domelementtype/lib/esm/index.d.ts.map +1 -0
  236. package/FCA-KURUMIVIP/node_modules/domelementtype/lib/esm/index.js +51 -0
  237. package/FCA-KURUMIVIP/node_modules/domelementtype/lib/esm/package.json +1 -0
  238. package/FCA-KURUMIVIP/node_modules/domelementtype/lib/index.d.ts +48 -0
  239. package/FCA-KURUMIVIP/node_modules/domelementtype/lib/index.d.ts.map +1 -0
  240. package/FCA-KURUMIVIP/node_modules/domelementtype/lib/index.js +55 -0
  241. package/FCA-KURUMIVIP/node_modules/domelementtype/package.json +89 -0
  242. package/FCA-KURUMIVIP/node_modules/domelementtype/readme.md +1 -0
  243. package/FCA-KURUMIVIP/node_modules/domhandler/LICENSE +11 -0
  244. package/FCA-KURUMIVIP/node_modules/domhandler/lib/esm/index.d.ts +76 -0
  245. package/FCA-KURUMIVIP/node_modules/domhandler/lib/esm/index.d.ts.map +1 -0
  246. package/FCA-KURUMIVIP/node_modules/domhandler/lib/esm/index.js +146 -0
  247. package/FCA-KURUMIVIP/node_modules/domhandler/lib/esm/node.d.ts +245 -0
  248. package/FCA-KURUMIVIP/node_modules/domhandler/lib/esm/node.d.ts.map +1 -0
  249. package/FCA-KURUMIVIP/node_modules/domhandler/lib/esm/node.js +338 -0
  250. package/FCA-KURUMIVIP/node_modules/domhandler/lib/esm/package.json +1 -0
  251. package/FCA-KURUMIVIP/node_modules/domhandler/lib/index.d.ts +76 -0
  252. package/FCA-KURUMIVIP/node_modules/domhandler/lib/index.d.ts.map +1 -0
  253. package/FCA-KURUMIVIP/node_modules/domhandler/lib/index.js +165 -0
  254. package/FCA-KURUMIVIP/node_modules/domhandler/lib/node.d.ts +245 -0
  255. package/FCA-KURUMIVIP/node_modules/domhandler/lib/node.d.ts.map +1 -0
  256. package/FCA-KURUMIVIP/node_modules/domhandler/lib/node.js +474 -0
  257. package/FCA-KURUMIVIP/node_modules/domhandler/package.json +108 -0
  258. package/FCA-KURUMIVIP/node_modules/domhandler/readme.md +92 -0
  259. package/FCA-KURUMIVIP/node_modules/domutils/LICENSE +11 -0
  260. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/feeds.d.ts +71 -0
  261. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/feeds.d.ts.map +1 -0
  262. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/feeds.js +183 -0
  263. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/feeds.js.map +1 -0
  264. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/helpers.d.ts +58 -0
  265. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/helpers.d.ts.map +1 -0
  266. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/helpers.js +135 -0
  267. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/helpers.js.map +1 -0
  268. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/index.d.ts +10 -0
  269. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/index.d.ts.map +1 -0
  270. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/index.js +10 -0
  271. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/index.js.map +1 -0
  272. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/legacy.d.ts +58 -0
  273. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/legacy.d.ts.map +1 -0
  274. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/legacy.js +117 -0
  275. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/legacy.js.map +1 -0
  276. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/manipulation.d.ts +49 -0
  277. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/manipulation.d.ts.map +1 -0
  278. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/manipulation.js +128 -0
  279. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/manipulation.js.map +1 -0
  280. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/package.json +1 -0
  281. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/querying.d.ts +62 -0
  282. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/querying.d.ts.map +1 -0
  283. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/querying.js +119 -0
  284. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/querying.js.map +1 -0
  285. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/stringify.d.ts +46 -0
  286. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/stringify.d.ts.map +1 -0
  287. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/stringify.js +81 -0
  288. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/stringify.js.map +1 -0
  289. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/traversal.d.ts +65 -0
  290. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/traversal.d.ts.map +1 -0
  291. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/traversal.js +110 -0
  292. package/FCA-KURUMIVIP/node_modules/domutils/lib/esm/traversal.js.map +1 -0
  293. package/FCA-KURUMIVIP/node_modules/domutils/lib/feeds.d.ts +71 -0
  294. package/FCA-KURUMIVIP/node_modules/domutils/lib/feeds.d.ts.map +1 -0
  295. package/FCA-KURUMIVIP/node_modules/domutils/lib/feeds.js +191 -0
  296. package/FCA-KURUMIVIP/node_modules/domutils/lib/feeds.js.map +1 -0
  297. package/FCA-KURUMIVIP/node_modules/domutils/lib/helpers.d.ts +58 -0
  298. package/FCA-KURUMIVIP/node_modules/domutils/lib/helpers.d.ts.map +1 -0
  299. package/FCA-KURUMIVIP/node_modules/domutils/lib/helpers.js +141 -0
  300. package/FCA-KURUMIVIP/node_modules/domutils/lib/helpers.js.map +1 -0
  301. package/FCA-KURUMIVIP/node_modules/domutils/lib/index.d.ts +10 -0
  302. package/FCA-KURUMIVIP/node_modules/domutils/lib/index.d.ts.map +1 -0
  303. package/FCA-KURUMIVIP/node_modules/domutils/lib/index.js +33 -0
  304. package/FCA-KURUMIVIP/node_modules/domutils/lib/index.js.map +1 -0
  305. package/FCA-KURUMIVIP/node_modules/domutils/lib/legacy.d.ts +58 -0
  306. package/FCA-KURUMIVIP/node_modules/domutils/lib/legacy.d.ts.map +1 -0
  307. package/FCA-KURUMIVIP/node_modules/domutils/lib/legacy.js +131 -0
  308. package/FCA-KURUMIVIP/node_modules/domutils/lib/legacy.js.map +1 -0
  309. package/FCA-KURUMIVIP/node_modules/domutils/lib/manipulation.d.ts +49 -0
  310. package/FCA-KURUMIVIP/node_modules/domutils/lib/manipulation.d.ts.map +1 -0
  311. package/FCA-KURUMIVIP/node_modules/domutils/lib/manipulation.js +137 -0
  312. package/FCA-KURUMIVIP/node_modules/domutils/lib/manipulation.js.map +1 -0
  313. package/FCA-KURUMIVIP/node_modules/domutils/lib/querying.d.ts +62 -0
  314. package/FCA-KURUMIVIP/node_modules/domutils/lib/querying.d.ts.map +1 -0
  315. package/FCA-KURUMIVIP/node_modules/domutils/lib/querying.js +134 -0
  316. package/FCA-KURUMIVIP/node_modules/domutils/lib/querying.js.map +1 -0
  317. package/FCA-KURUMIVIP/node_modules/domutils/lib/stringify.d.ts +46 -0
  318. package/FCA-KURUMIVIP/node_modules/domutils/lib/stringify.d.ts.map +1 -0
  319. package/FCA-KURUMIVIP/node_modules/domutils/lib/stringify.js +92 -0
  320. package/FCA-KURUMIVIP/node_modules/domutils/lib/stringify.js.map +1 -0
  321. package/FCA-KURUMIVIP/node_modules/domutils/lib/traversal.d.ts +65 -0
  322. package/FCA-KURUMIVIP/node_modules/domutils/lib/traversal.d.ts.map +1 -0
  323. package/FCA-KURUMIVIP/node_modules/domutils/lib/traversal.js +124 -0
  324. package/FCA-KURUMIVIP/node_modules/domutils/lib/traversal.js.map +1 -0
  325. package/FCA-KURUMIVIP/node_modules/domutils/package.json +109 -0
  326. package/FCA-KURUMIVIP/node_modules/domutils/readme.md +31 -0
  327. package/FCA-KURUMIVIP/node_modules/entities/LICENSE +11 -0
  328. package/FCA-KURUMIVIP/node_modules/entities/lib/decode.d.ts +33 -0
  329. package/FCA-KURUMIVIP/node_modules/entities/lib/decode.d.ts.map +1 -0
  330. package/FCA-KURUMIVIP/node_modules/entities/lib/decode.js +179 -0
  331. package/FCA-KURUMIVIP/node_modules/entities/lib/decode.js.map +1 -0
  332. package/FCA-KURUMIVIP/node_modules/entities/lib/decode_codepoint.d.ts +4 -0
  333. package/FCA-KURUMIVIP/node_modules/entities/lib/decode_codepoint.d.ts.map +1 -0
  334. package/FCA-KURUMIVIP/node_modules/entities/lib/decode_codepoint.js +60 -0
  335. package/FCA-KURUMIVIP/node_modules/entities/lib/decode_codepoint.js.map +1 -0
  336. package/FCA-KURUMIVIP/node_modules/entities/lib/encode.d.ts +22 -0
  337. package/FCA-KURUMIVIP/node_modules/entities/lib/encode.d.ts.map +1 -0
  338. package/FCA-KURUMIVIP/node_modules/entities/lib/encode.js +77 -0
  339. package/FCA-KURUMIVIP/node_modules/entities/lib/encode.js.map +1 -0
  340. package/FCA-KURUMIVIP/node_modules/entities/lib/escape.d.ts +43 -0
  341. package/FCA-KURUMIVIP/node_modules/entities/lib/escape.d.ts.map +1 -0
  342. package/FCA-KURUMIVIP/node_modules/entities/lib/escape.js +112 -0
  343. package/FCA-KURUMIVIP/node_modules/entities/lib/escape.js.map +1 -0
  344. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode.d.ts +33 -0
  345. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode.d.ts.map +1 -0
  346. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode.js +166 -0
  347. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode.js.map +1 -0
  348. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode_codepoint.d.ts +4 -0
  349. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode_codepoint.d.ts.map +1 -0
  350. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode_codepoint.js +55 -0
  351. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/decode_codepoint.js.map +1 -0
  352. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/encode.d.ts +22 -0
  353. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/encode.d.ts.map +1 -0
  354. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/encode.js +69 -0
  355. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/encode.js.map +1 -0
  356. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/escape.d.ts +43 -0
  357. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/escape.d.ts.map +1 -0
  358. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/escape.js +106 -0
  359. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/escape.js.map +1 -0
  360. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-html.d.ts +3 -0
  361. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map +1 -0
  362. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-html.js +7 -0
  363. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-html.js.map +1 -0
  364. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts +3 -0
  365. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map +1 -0
  366. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-xml.js +7 -0
  367. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/decode-data-xml.js.map +1 -0
  368. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/encode-html.d.ts +8 -0
  369. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/encode-html.d.ts.map +1 -0
  370. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/encode-html.js +10 -0
  371. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/generated/encode-html.js.map +1 -0
  372. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/index.d.ts +102 -0
  373. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/index.d.ts.map +1 -0
  374. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/index.js +113 -0
  375. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/index.js.map +1 -0
  376. package/FCA-KURUMIVIP/node_modules/entities/lib/esm/package.json +1 -0
  377. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-html.d.ts +3 -0
  378. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-html.d.ts.map +1 -0
  379. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-html.js +9 -0
  380. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-html.js.map +1 -0
  381. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-xml.d.ts +3 -0
  382. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-xml.d.ts.map +1 -0
  383. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-xml.js +9 -0
  384. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/decode-data-xml.js.map +1 -0
  385. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/encode-html.d.ts +8 -0
  386. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/encode-html.d.ts.map +1 -0
  387. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/encode-html.js +12 -0
  388. package/FCA-KURUMIVIP/node_modules/entities/lib/generated/encode-html.js.map +1 -0
  389. package/FCA-KURUMIVIP/node_modules/entities/lib/index.d.ts +102 -0
  390. package/FCA-KURUMIVIP/node_modules/entities/lib/index.d.ts.map +1 -0
  391. package/FCA-KURUMIVIP/node_modules/entities/lib/index.js +137 -0
  392. package/FCA-KURUMIVIP/node_modules/entities/lib/index.js.map +1 -0
  393. package/FCA-KURUMIVIP/node_modules/entities/package.json +123 -0
  394. package/FCA-KURUMIVIP/node_modules/entities/readme.md +122 -0
  395. package/FCA-KURUMIVIP/node_modules/follow-redirects/LICENSE +18 -0
  396. package/FCA-KURUMIVIP/node_modules/follow-redirects/README.md +155 -0
  397. package/FCA-KURUMIVIP/node_modules/follow-redirects/debug.js +15 -0
  398. package/FCA-KURUMIVIP/node_modules/follow-redirects/http.js +1 -0
  399. package/FCA-KURUMIVIP/node_modules/follow-redirects/https.js +1 -0
  400. package/FCA-KURUMIVIP/node_modules/follow-redirects/index.js +621 -0
  401. package/FCA-KURUMIVIP/node_modules/follow-redirects/package.json +95 -0
  402. package/FCA-KURUMIVIP/node_modules/form-data/License +19 -0
  403. package/FCA-KURUMIVIP/node_modules/form-data/README.md.bak +358 -0
  404. package/FCA-KURUMIVIP/node_modules/form-data/Readme.md +358 -0
  405. package/FCA-KURUMIVIP/node_modules/form-data/index.d.ts +62 -0
  406. package/FCA-KURUMIVIP/node_modules/form-data/lib/browser.js +2 -0
  407. package/FCA-KURUMIVIP/node_modules/form-data/lib/form_data.js +501 -0
  408. package/FCA-KURUMIVIP/node_modules/form-data/lib/populate.js +10 -0
  409. package/FCA-KURUMIVIP/node_modules/form-data/package.json +101 -0
  410. package/FCA-KURUMIVIP/node_modules/htmlparser2/LICENSE +18 -0
  411. package/FCA-KURUMIVIP/node_modules/htmlparser2/README.md +168 -0
  412. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Parser.d.ts +190 -0
  413. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Parser.d.ts.map +1 -0
  414. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Parser.js +518 -0
  415. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Parser.js.map +1 -0
  416. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Tokenizer.d.ts +143 -0
  417. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Tokenizer.d.ts.map +1 -0
  418. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Tokenizer.js +904 -0
  419. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/Tokenizer.js.map +1 -0
  420. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/WritableStream.d.ts +16 -0
  421. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/WritableStream.d.ts.map +1 -0
  422. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/WritableStream.js +54 -0
  423. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/WritableStream.js.map +1 -0
  424. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Parser.d.ts +190 -0
  425. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Parser.d.ts.map +1 -0
  426. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Parser.js +489 -0
  427. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Parser.js.map +1 -0
  428. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts +143 -0
  429. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Tokenizer.d.ts.map +1 -0
  430. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Tokenizer.js +898 -0
  431. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/Tokenizer.js.map +1 -0
  432. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/WritableStream.d.ts +16 -0
  433. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/WritableStream.d.ts.map +1 -0
  434. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/WritableStream.js +32 -0
  435. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/WritableStream.js.map +1 -0
  436. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/index.d.ts +46 -0
  437. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/index.d.ts.map +1 -0
  438. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/index.js +62 -0
  439. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/index.js.map +1 -0
  440. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/esm/package.json +1 -0
  441. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/index.d.ts +46 -0
  442. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/index.d.ts.map +1 -0
  443. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/index.js +96 -0
  444. package/FCA-KURUMIVIP/node_modules/htmlparser2/lib/index.js.map +1 -0
  445. package/FCA-KURUMIVIP/node_modules/htmlparser2/package.json +124 -0
  446. package/FCA-KURUMIVIP/node_modules/npmlog/LICENSE.md +20 -0
  447. package/FCA-KURUMIVIP/node_modules/npmlog/README.md +216 -0
  448. package/FCA-KURUMIVIP/node_modules/npmlog/lib/log.js +400 -0
  449. package/FCA-KURUMIVIP/node_modules/npmlog/package.json +83 -0
  450. package/FCA-KURUMIVIP/node_modules/request/CHANGELOG.md +717 -0
  451. package/FCA-KURUMIVIP/node_modules/request/LICENSE +55 -0
  452. package/FCA-KURUMIVIP/node_modules/request/README.md +1133 -0
  453. package/FCA-KURUMIVIP/node_modules/request/index.js +155 -0
  454. package/FCA-KURUMIVIP/node_modules/request/lib/auth.js +167 -0
  455. package/FCA-KURUMIVIP/node_modules/request/lib/cookies.js +38 -0
  456. package/FCA-KURUMIVIP/node_modules/request/lib/getProxyFromURI.js +79 -0
  457. package/FCA-KURUMIVIP/node_modules/request/lib/har.js +205 -0
  458. package/FCA-KURUMIVIP/node_modules/request/lib/hawk.js +89 -0
  459. package/FCA-KURUMIVIP/node_modules/request/lib/helpers.js +66 -0
  460. package/FCA-KURUMIVIP/node_modules/request/lib/multipart.js +112 -0
  461. package/FCA-KURUMIVIP/node_modules/request/lib/oauth.js +148 -0
  462. package/FCA-KURUMIVIP/node_modules/request/lib/querystring.js +50 -0
  463. package/FCA-KURUMIVIP/node_modules/request/lib/redirect.js +154 -0
  464. package/FCA-KURUMIVIP/node_modules/request/lib/tunnel.js +175 -0
  465. package/FCA-KURUMIVIP/node_modules/request/package.json +119 -0
  466. package/FCA-KURUMIVIP/node_modules/request/request.js +1553 -0
  467. package/FCA-KURUMIVIP/node_modules/semver/LICENSE +15 -0
  468. package/FCA-KURUMIVIP/node_modules/semver/README.md +568 -0
  469. package/FCA-KURUMIVIP/node_modules/semver/bin/semver.js +183 -0
  470. package/FCA-KURUMIVIP/node_modules/semver/classes/comparator.js +136 -0
  471. package/FCA-KURUMIVIP/node_modules/semver/classes/index.js +5 -0
  472. package/FCA-KURUMIVIP/node_modules/semver/classes/range.js +522 -0
  473. package/FCA-KURUMIVIP/node_modules/semver/classes/semver.js +287 -0
  474. package/FCA-KURUMIVIP/node_modules/semver/functions/clean.js +6 -0
  475. package/FCA-KURUMIVIP/node_modules/semver/functions/cmp.js +52 -0
  476. package/FCA-KURUMIVIP/node_modules/semver/functions/coerce.js +52 -0
  477. package/FCA-KURUMIVIP/node_modules/semver/functions/compare-build.js +7 -0
  478. package/FCA-KURUMIVIP/node_modules/semver/functions/compare-loose.js +3 -0
  479. package/FCA-KURUMIVIP/node_modules/semver/functions/compare.js +5 -0
  480. package/FCA-KURUMIVIP/node_modules/semver/functions/diff.js +23 -0
  481. package/FCA-KURUMIVIP/node_modules/semver/functions/eq.js +3 -0
  482. package/FCA-KURUMIVIP/node_modules/semver/functions/gt.js +3 -0
  483. package/FCA-KURUMIVIP/node_modules/semver/functions/gte.js +3 -0
  484. package/FCA-KURUMIVIP/node_modules/semver/functions/inc.js +18 -0
  485. package/FCA-KURUMIVIP/node_modules/semver/functions/lt.js +3 -0
  486. package/FCA-KURUMIVIP/node_modules/semver/functions/lte.js +3 -0
  487. package/FCA-KURUMIVIP/node_modules/semver/functions/major.js +3 -0
  488. package/FCA-KURUMIVIP/node_modules/semver/functions/minor.js +3 -0
  489. package/FCA-KURUMIVIP/node_modules/semver/functions/neq.js +3 -0
  490. package/FCA-KURUMIVIP/node_modules/semver/functions/parse.js +33 -0
  491. package/FCA-KURUMIVIP/node_modules/semver/functions/patch.js +3 -0
  492. package/FCA-KURUMIVIP/node_modules/semver/functions/prerelease.js +6 -0
  493. package/FCA-KURUMIVIP/node_modules/semver/functions/rcompare.js +3 -0
  494. package/FCA-KURUMIVIP/node_modules/semver/functions/rsort.js +3 -0
  495. package/FCA-KURUMIVIP/node_modules/semver/functions/satisfies.js +10 -0
  496. package/FCA-KURUMIVIP/node_modules/semver/functions/sort.js +3 -0
  497. package/FCA-KURUMIVIP/node_modules/semver/functions/valid.js +6 -0
  498. package/FCA-KURUMIVIP/node_modules/semver/index.js +88 -0
  499. package/FCA-KURUMIVIP/node_modules/semver/internal/constants.js +17 -0
  500. package/FCA-KURUMIVIP/node_modules/semver/internal/debug.js +9 -0
  501. package/FCA-KURUMIVIP/node_modules/semver/internal/identifiers.js +23 -0
  502. package/FCA-KURUMIVIP/node_modules/semver/internal/parse-options.js +11 -0
  503. package/FCA-KURUMIVIP/node_modules/semver/internal/re.js +182 -0
  504. package/FCA-KURUMIVIP/node_modules/semver/package.json +117 -0
  505. package/FCA-KURUMIVIP/node_modules/semver/preload.js +2 -0
  506. package/FCA-KURUMIVIP/node_modules/semver/range.bnf +16 -0
  507. package/FCA-KURUMIVIP/node_modules/semver/ranges/gtr.js +4 -0
  508. package/FCA-KURUMIVIP/node_modules/semver/ranges/intersects.js +7 -0
  509. package/FCA-KURUMIVIP/node_modules/semver/ranges/ltr.js +4 -0
  510. package/FCA-KURUMIVIP/node_modules/semver/ranges/max-satisfying.js +25 -0
  511. package/FCA-KURUMIVIP/node_modules/semver/ranges/min-satisfying.js +24 -0
  512. package/FCA-KURUMIVIP/node_modules/semver/ranges/min-version.js +61 -0
  513. package/FCA-KURUMIVIP/node_modules/semver/ranges/outside.js +80 -0
  514. package/FCA-KURUMIVIP/node_modules/semver/ranges/simplify.js +47 -0
  515. package/FCA-KURUMIVIP/node_modules/semver/ranges/subset.js +244 -0
  516. package/FCA-KURUMIVIP/node_modules/semver/ranges/to-comparators.js +8 -0
  517. package/FCA-KURUMIVIP/node_modules/semver/ranges/valid.js +11 -0
  518. package/FCA-KURUMIVIP/node_modules/systeminformation/LICENSE +20 -0
  519. package/FCA-KURUMIVIP/node_modules/systeminformation/README.md +1090 -0
  520. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/audio.js +222 -0
  521. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/battery.js +308 -0
  522. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/bluetooth.js +229 -0
  523. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/cli.js +31 -0
  524. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/cpu.js +1704 -0
  525. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/docker.js +757 -0
  526. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/dockerSocket.js +327 -0
  527. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/filesystem.js +1476 -0
  528. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/graphics.js +1103 -0
  529. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/index.d.ts +1027 -0
  530. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/index.js +504 -0
  531. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/internet.js +236 -0
  532. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/memory.js +551 -0
  533. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/network.js +1779 -0
  534. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/osinfo.js +1157 -0
  535. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/printer.js +210 -0
  536. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/processes.js +1289 -0
  537. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/system.js +720 -0
  538. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/usb.js +258 -0
  539. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/users.js +363 -0
  540. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/util.js +1302 -0
  541. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/virtualbox.js +107 -0
  542. package/FCA-KURUMIVIP/node_modules/systeminformation/lib/wifi.js +744 -0
  543. package/FCA-KURUMIVIP/node_modules/systeminformation/package.json +131 -0
  544. package/FCA-KURUMIVIP/node_modules/tinycolor2/LICENSE +20 -0
  545. package/FCA-KURUMIVIP/node_modules/tinycolor2/README.md +492 -0
  546. package/FCA-KURUMIVIP/node_modules/tinycolor2/cjs/package.json +3 -0
  547. package/FCA-KURUMIVIP/node_modules/tinycolor2/cjs/test.js +2191 -0
  548. package/FCA-KURUMIVIP/node_modules/tinycolor2/cjs/test_template.js +26 -0
  549. package/FCA-KURUMIVIP/node_modules/tinycolor2/cjs/tinycolor.js +1188 -0
  550. package/FCA-KURUMIVIP/node_modules/tinycolor2/deno_asserts@0.168.0.mjs +807 -0
  551. package/FCA-KURUMIVIP/node_modules/tinycolor2/dist/tinycolor-min.js +5 -0
  552. package/FCA-KURUMIVIP/node_modules/tinycolor2/esm/package.json +3 -0
  553. package/FCA-KURUMIVIP/node_modules/tinycolor2/esm/test.js +2189 -0
  554. package/FCA-KURUMIVIP/node_modules/tinycolor2/esm/test_template.js +24 -0
  555. package/FCA-KURUMIVIP/node_modules/tinycolor2/esm/tinycolor.js +1180 -0
  556. package/FCA-KURUMIVIP/node_modules/tinycolor2/package.json +65 -0
  557. package/FCA-KURUMIVIP/node_modules/tinycolor2/tinycolor.js +1191 -0
  558. package/FCA-KURUMIVIP/package.json +134 -0
  559. package/FCA-KURUMIVIP/src/addExternalModule.js +16 -0
  560. package/FCA-KURUMIVIP/src/addUserToGroup.js +78 -0
  561. package/FCA-KURUMIVIP/src/changeAdminStatus.js +78 -0
  562. package/FCA-KURUMIVIP/src/changeArchivedStatus.js +41 -0
  563. package/FCA-KURUMIVIP/src/changeBio.js +65 -0
  564. package/FCA-KURUMIVIP/src/changeBlockedStatus.js +36 -0
  565. package/FCA-KURUMIVIP/src/changeGroupImage.js +106 -0
  566. package/FCA-KURUMIVIP/src/changeNickname.js +45 -0
  567. package/FCA-KURUMIVIP/src/changeThreadColor.js +62 -0
  568. package/FCA-KURUMIVIP/src/changeThreadEmoji.js +42 -0
  569. package/FCA-KURUMIVIP/src/createNewGroup.js +70 -0
  570. package/FCA-KURUMIVIP/src/createPoll.js +60 -0
  571. package/FCA-KURUMIVIP/src/deleteMessage.js +45 -0
  572. package/FCA-KURUMIVIP/src/deleteThread.js +43 -0
  573. package/FCA-KURUMIVIP/src/forwardAttachment.js +48 -0
  574. package/FCA-KURUMIVIP/src/getCurrentUserID.js +7 -0
  575. package/FCA-KURUMIVIP/src/getEmojiUrl.js +27 -0
  576. package/FCA-KURUMIVIP/src/getFriendsList.js +73 -0
  577. package/FCA-KURUMIVIP/src/getThreadHistory.js +537 -0
  578. package/FCA-KURUMIVIP/src/getThreadHistoryDeprecated.js +71 -0
  579. package/FCA-KURUMIVIP/src/getThreadInfo.js +206 -0
  580. package/FCA-KURUMIVIP/src/getThreadInfoDeprecated.js +56 -0
  581. package/FCA-KURUMIVIP/src/getThreadList.js +213 -0
  582. package/FCA-KURUMIVIP/src/getThreadListDeprecated.js +46 -0
  583. package/FCA-KURUMIVIP/src/getThreadPictures.js +59 -0
  584. package/FCA-KURUMIVIP/src/getUserID.js +62 -0
  585. package/FCA-KURUMIVIP/src/getUserInfo.js +66 -0
  586. package/FCA-KURUMIVIP/src/handleFriendRequest.js +49 -0
  587. package/FCA-KURUMIVIP/src/handleMessageRequest.js +49 -0
  588. package/FCA-KURUMIVIP/src/httpGet.js +49 -0
  589. package/FCA-KURUMIVIP/src/httpPost.js +48 -0
  590. package/FCA-KURUMIVIP/src/httpPostFormData.js +41 -0
  591. package/FCA-KURUMIVIP/src/listenMqtt.js +628 -0
  592. package/FCA-KURUMIVIP/src/logout.js +68 -0
  593. package/FCA-KURUMIVIP/src/markAsDelivered.js +48 -0
  594. package/FCA-KURUMIVIP/src/markAsRead.js +70 -0
  595. package/FCA-KURUMIVIP/src/markAsReadAll.js +43 -0
  596. package/FCA-KURUMIVIP/src/markAsSeen.js +51 -0
  597. package/FCA-KURUMIVIP/src/muteThread.js +47 -0
  598. package/FCA-KURUMIVIP/src/removeUserFromGroup.js +49 -0
  599. package/FCA-KURUMIVIP/src/resolvePhotoUrl.js +37 -0
  600. package/FCA-KURUMIVIP/src/searchForThread.js +43 -0
  601. package/FCA-KURUMIVIP/src/sendMessage.js +334 -0
  602. package/FCA-KURUMIVIP/src/sendTypingIndicator.js +80 -0
  603. package/FCA-KURUMIVIP/src/setMessageReaction.js +109 -0
  604. package/FCA-KURUMIVIP/src/setPostReaction.js +102 -0
  605. package/FCA-KURUMIVIP/src/setTitle.js +74 -0
  606. package/FCA-KURUMIVIP/src/threadColors.js +39 -0
  607. package/FCA-KURUMIVIP/src/unfriend.js +43 -0
  608. package/FCA-KURUMIVIP/src/unsendMessage.js +40 -0
  609. package/FCA-KURUMIVIP/test.js +35 -0
  610. package/FCA-KURUMIVIP/utils.js +1241 -0
  611. package/package.json +102 -0
  612. package/replit.nix +5 -0
File without changes
File without changes
File without changes
@@ -0,0 +1 @@
1
+ {"nonce":3963924295528022612,"last_updated":{"seconds":1696449523,"nanos":687280000}}
@@ -0,0 +1 @@
1
+ {"entries":{"replit.nix":{"env":{"ACLOCAL_PATH":"/nix/store/g9kjv17sa0afmbzkra15xr0s8wfqnwan-cmake-3.21.2/share/aclocal:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/share/aclocal:/nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3/share/aclocal:/nix/store/7qjyyqv9sqgk1lkzpgf1ymmcx6zzix0p-pkg-config-wrapper-0.29.2/share/aclocal:/nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/share/aclocal:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/share/aclocal","AR":"ar","AR_FOR_TARGET":"ar","AS":"as","AS_FOR_TARGET":"as","CC":"gcc","CC_FOR_TARGET":"gcc","CMAKE_INCLUDE_PATH":"/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/include:/nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/include:/nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/include:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/include:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/include:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/include:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/include:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/include:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/include:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/include:/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/include:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/include:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/include:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/include:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/include:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/include:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/include:/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/include:/nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/include:/nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/include:/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/include:/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/include:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/include:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/include:/nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev/include:/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/include:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/include:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/include:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/include:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/include:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/include:/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/include:/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/include:/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/include:/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/include:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/include:/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/include:/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/include:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/include:/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/include:/nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/include:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/include:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/include:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/include:/nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/include:/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/include:/nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/include:/nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/include:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/include:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/include:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/include:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/include:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/include:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/include:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/include:/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/include:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/include:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/include:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/include:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/include:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/include:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/include:/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/include:/nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/include:/nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/include:/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/include:/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/include:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/include:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/include:/nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev/include:/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/include:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/include:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/include:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/include:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/include:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/include:/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/include:/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/include:/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/include:/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/include:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/include:/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/include:/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/include:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/include:/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/include:/nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/include:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/include:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/include:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/include:/nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/include","CMAKE_LIBRARY_PATH":"/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib:/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/lib:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/lib:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/lib:/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37/lib:/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7/lib:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib:/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14/lib:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/lib:/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib:/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/lib:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/lib:/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib/lib:/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2/lib:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/lib:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/lib:/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib:/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12/lib:/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib:/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4/lib:/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4/lib:/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib:/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib:/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0/lib:/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/lib:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/lib:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/lib:/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15/lib:/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib:/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib:/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib:/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/lib:/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/lib:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib:/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/lib:/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2/lib:/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/lib:/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1/lib:/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1/lib:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/lib:/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/lib:/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0/lib:/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1/lib:/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/lib:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib:/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/lib:/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2/lib:/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/lib:/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/lib:/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1/lib:/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib:/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/lib:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/lib:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/lib:/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37/lib:/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7/lib:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib:/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14/lib:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/lib:/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib:/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/lib:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/lib:/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib/lib:/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2/lib:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/lib:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/lib:/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib:/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12/lib:/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib:/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4/lib:/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4/lib:/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib:/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib:/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0/lib:/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/lib:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/lib:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/lib:/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15/lib:/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib:/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib:/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib:/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/lib:/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/lib:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib:/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/lib:/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2/lib:/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/lib:/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1/lib:/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1/lib:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/lib:/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/lib:/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0/lib:/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1/lib:/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/lib:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib:/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/lib:/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2/lib:/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/lib:/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/lib:/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1/lib","CMAKE_PREFIX_PATH":"/nix/store/h0sfrydjnpbpml7znz5b802p6p2sds07-hook:/nix/store/6wbyy6wdna9k3lkgni01bwvsc0msqjyx-python3.9-cffi-1.14.6-dev:/nix/store/0hgwshx1mb9v68rm1jrxclvww6hlqcrw-python3.9-pycparser-2.20:/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6:/nix/store/py7c0mw8dgz9m00nsliglsbw5ns0f0pf-python3.9-cffi-1.14.6:/nix/store/435paza0j48aa9vgvf6r2l12nrg4ld11-patchelf-0.12:/nix/store/4xs1xyj8728yvh9y5v6ji819kwgfy2fv-gcc-wrapper-10.3.0:/nix/store/29bjq5hw1qglybp1a5f3ij9gxc2fyf94-binutils-wrapper-2.35.1:/nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev:/nix/store/w07a7k61dw5gnsyxj3kgcq3shr76jax8-bash-interactive-4.4-p23:/nix/store/ybwx2lcdbzijs363yvwvzgaf3m8a2ymv-clang-7.1.0:/nix/store/bryas24nk0pvj97z9clskhbmnq08jas9-clang-tools-13.0.0:/nix/store/5p5g3gz0yvy5qxsdfy5j5vfsvszranrd-gdc-wrapper-9.3.0:/nix/store/yq2v2g5285ib5nwl3r4rdnl417zpaf8y-binutils-wrapper-2.35.2:/nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev:/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1:/nix/store/269dmm2q86a9w8ki7xhgaafwc050dalz-go-1.16.13:/nix/store/xmd8y2723gc88c7m8c9z7q929f09ip0f-gopls-0.7.3:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4:/nix/store/caf2m9a9sglfzxip3ggbhhskshqprnxs-lua5.2-luabitop-1.0.2-3:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4:/nix/store/wpamqfm3mbv57fx55s6r300cfwy5v18q-lua5.2-luasocket-3.0rc1-2:/nix/store/bfyv9ag4pgiq98apcmnmqabkhpxc2igd-lua5.2-penlight-dev-1:/nix/store/rnqj711lmqa76lja8v4hhzcnvkjd63i4-lua5.2-luafilesystem-1.7.0-2:/nix/store/qjlg429684wp4gid7pgy5gaysmax5i1r-luarocks-3.2.1:/nix/store/n8a3n4yxg3fhny5jj6jgcd2z10p46gb1-zip-3.0:/nix/store/n8cg7dhsy7k3kaxfidp6j881xk2w9vm9-unzip-6.0:/nix/store/g9kjv17sa0afmbzkra15xr0s8wfqnwan-cmake-3.21.2:/nix/store/aham8y9cgpslhmlmzd7khn2x591r28d1-luaformatter-1.3.6:/nix/store/hb6492h1hz59xpvwmn40n2kl9zc5dkrm-x86_64-unknown-linux-gnu-nim-wrapper-1.6.0:/nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11:/nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3:/nix/store/5wm5nz9v823z0sf2ffs66dbwb1jsjcgl-deno-1.16.2:/nix/store/8fm0kwh9bxkgix4vfrsi6qmnhkqi4g7v-flow-0.163.0:/nix/store/1d59jsr0pv844slmpa23qqyh1gpcwc8b-haxe-4.2.1:/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37:/nix/store/6b9g062ybb6ai4cr1dc0d48zfwxnac1v-libjpeg-turbo-2.1.2-bin:/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1:/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0:/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0:/nix/store/dznkazjn5mk1ds47qmbsbkiampgsgg5j-apache-maven-3.8.3:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7:/nix/store/7k9y5p18lbdk3cczg1qyzdvfhbybd6hg-hook:/nix/store/hc3n2kpr77wwnyc71rxxyz3rvz83z7kn-rakudo-2021.10:/nix/store/1nf6hhsg5n9xrbpimrsljccaz0bliyz6-zef-0.13.0:/nix/store/nc26m6a92gdj3hbp2abr8mxfkafqlahb-openssl-1.1.1m-bin:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5:/nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17:/nix/store/fbwis6whxa1br0hkghazybdw82zgw0d2-ruby2.7.5-backport-1.2.0:/nix/store/gbyvkn91940hdx82g6gp42j79c7i4wzg-ruby2.7.5-benchmark-0.2.0:/nix/store/sgi7x6x1fxisi2ip5rclk7nw8nk4fcjf-ruby2.7.5-e2mmap-0.1.0:/nix/store/w2z5cnlqqzm1j21jmavhnlgbbw7ipyvj-ruby2.7.5-jaro_winkler-1.5.4:/nix/store/4hy6z43bpmfiws9y8yvgmml3g6jfm1xm-ruby2.7.5-maruku-0.7.3:/nix/store/x4jz80q3d4f3cp13s532si2lz60wss7i-ruby2.7.5-nokogiri-1.12.5:/nix/store/y6h6cdig3lfk5n49csf17axlh75ghnrq-ruby2.7.5-mini_portile2-2.6.1:/nix/store/vvzj7mzdk9jqq2pncdajw9fj6cyfia6h-ruby2.7.5-racc-1.6.0:/nix/store/lfj8hzj6s1k3v13jy3k68y2ac5vfrv90-ruby2.7.5-parser-2.7.2.0:/nix/store/j235npnwgnrwkcyp3n4zxjxnal1xs74q-ruby2.7.5-ast-2.4.2:/nix/store/cq4cmg3w1f81bbkzm2j9nhlv04cmbadz-ruby2.7.5-reverse_markdown-2.0.0:/nix/store/a602vyp7smpvx06vcn30irqyw9y3k7kn-ruby2.7.5-rubocop-0.93.1:/nix/store/cgfx7vralay25gs3kvva8hjr27qrsqpz-ruby2.7.5-parallel-1.21.0:/nix/store/kg87shzh4n0b3lcwx68canb97pghqr26-ruby2.7.5-rainbow-3.0.0:/nix/store/gq8wqxk8spgrhi56jf0nqlhjirpr9z0n-ruby2.7.5-regexp_parser-2.1.1:/nix/store/fsb0f1g2knm8csyjcws09z1dbj9qr29f-ruby2.7.5-rexml-3.2.5:/nix/store/8zafbb4qc50ixdz6wjiq0idxr56h2h1k-ruby2.7.5-rubocop-ast-1.4.1:/nix/store/93jlw88wayhd52pskm8yaszpa78iscjx-ruby2.7.5-ruby-progressbar-1.11.0:/nix/store/x12vvlgv0xry655f947h1xqhrwjxr2ci-ruby2.7.5-unicode-display_width-1.8.0:/nix/store/7y294jq5z4dzd9lnb9y9rb3dhydblm4f-ruby2.7.5-thor-1.1.0:/nix/store/jnbkh1l1c8m563g358kjqig5wjizk184-ruby2.7.5-tilt-2.0.10:/nix/store/kd9p5chzgx301mw2v2c8l4yhxpdryc81-ruby2.7.5-yard-0.9.26:/nix/store/dm61rb5h0r68qx0k8b2af21maqp0qw8s-rake-12.3.2:/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1:/nix/store/bbi0p5r1madw22dasq4f7k12766lrdyx-cargo-1.56.1:/nix/store/zxjd9h0n8lvbh3id43h9mixybyrxacn6-rls-1.56.1:/nix/store/lrdgwnlx5q0kvc1z348kcmd5kw6i1kmz-rust-analyzer-2021-10-25:/nix/store/sk0wjzyy2zz1iqfr09pp7xdyqn57xspx-rustfmt-1.56.1:/nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6:/nix/store/5jqn3765handgf77963h4ahvj05pb9yc-gnum4-1.4.19:/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib:/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2:/nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0:/nix/store/91mj2apzv1d88m7lbibfynz36r5ay2xi-opam-2.1.1:/nix/store/xcvqvznijycw3qpbdqyrpm5shmdvc3zg-quill-0.2.7:/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11:/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12:/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4:/nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev:/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4:/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4:/nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev:/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406:/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2:/nix/store/a7xm3ac93qa42czr8h8sbbgfm8asijqy-scala-2.13.7:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2:/nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev:/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0:/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122:/nix/store/knfjcxaakk1m609s1vcfbbq1mahz4m6y-elixir-1.12.3:/nix/store/8hqpcha8jkaswfshymm9j66lmhjwzkx7-erlang-24.1.6:/nix/store/3na2psghzhfym3bhpcnvx9ccnkcxbp7p-fsharp-4.0.1.1:/nix/store/sazxbppq9h2yp0prgza70h394brg8v6h-kotlin-1.6.10:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0:/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15:/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12:/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12:/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11:/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234:/nix/store/fx4hd2dfdwqjhkhxl8zhc832vsfs4qqv-fontconfig-2.13.94-bin:/nix/store/y1hybm8h1kln0hg06c42m4g1wsblc0ig-freefont-ttf-20120503:/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0:/nix/store/988swrxxc98psfj02piir4jd62q52g5p-sqlite-3.36.0-bin:/nix/store/6ciph11c6ijykbrrqm8s8w337lvq2n1y-sqldiff-3.36.0:/nix/store/bhgs6fvf8ccv09jcr2c2qvs1dfkp0bzs-clojure-1.10.3.1029:/nix/store/h456b8a4db9z7d9bwg2cpa7y09nfxfcc-crystal-1.2.2:/nix/store/4xlpd83d5xzzdfhpcwlciv5qgc2dp0cw-crystal-1.2.2-bin:/nix/store/jm874yqqfxnf0bmb8lwc1bfxk4wk2a9v-crystal-1.2.2-lib:/nix/store/n1hdar0mlvqf08n58dhssxlq7lry8i8l-gfortran-wrapper-9.3.0:/nix/store/9s04g387vdwd8b3gnrhaxm9g2vyxv1i3-ghc-8.10.7:/nix/store/2qwnn6lizc9d119kp3zig3q19gbfm4n6-gcc-wrapper-10.3.0:/nix/store/spm7d6ncyx2k5w8yl6clzynv2s4wf1kp-binutils-wrapper-2.35.2:/nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18:/nix/store/3xcbipxg7dacja7arkqsdp31wv48a59b-python3.9-pip-21.1.3:/nix/store/pspa13lvr8ahgpq4ksbz6kmagwvrlklm-nasm-2.15.05:/nix/store/q1sbanxnbyr0wiy1bykyis30p6w7gx6l-powershell-7.2.1:/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9:/nix/store/np5bfcinkp3hzn3qfqn9nilww1hwfiwa-gnustep-make-2.9.0:/nix/store/xn46q2dzx9wgk73bqahrqlajm2xi3n4k-autoconf-2.71:/nix/store/8rlh3867b4a6ni7i0y7m03nlxsqp2n53-xrandr-1.5.1:/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2:/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24:/nix/store/x01wvmyaxlxjx7bwn9bws406fvh1hrdd-libtiff-4.3.0-bin:/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1:/nix/store/gqqjs85gi9f95b8inzyd7rlw04ag9yjr-gnutls-3.7.2-bin:/nix/store/cxgg4y1rjahlmldz0s7g2r8gf1wird0q-libxml2-2.9.12-bin:/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1:/nix/store/b82qwylvdj9a7a3is2ayhqbynyqm4hy7-wasmer-2.0.0:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24:/nix/store/4ng5csanrxg24ilfl5jsxvq35p2imwl2-lldb-13.0.0:/nix/store/7qjyyqv9sqgk1lkzpgf1ymmcx6zzix0p-pkg-config-wrapper-0.29.2:/nix/store/1fjl7hvf44a9898dbbl18qn2fc6ks1gn-jq-1.6-bin:/nix/store/63g9gyn4dzgrrxsmsx0dnzhkvr7974ap-wget-1.21.2:/nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1:/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1:/nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3:/nix/store/zk5cpqxxmgj1qbzqsz54a65yiq60czki-python3.9-fb-re2-1.0.7:/nix/store/p9w19nz2h9vyi1kqk4zqpq7yjbx203yx-rsync-3.2.3:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27:/nix/store/6m8k6drrfqg53x2ighzwglwfnqmairhb-vim-8.2.4186:/nix/store/z0b6n2bqlssqwd9va76mb8flcwwzywc9-chromium-98.0.4758.102:/nix/store/7dxw3xc88p966h3wwv0pbd9l7xhpqw0c-chromedriver-98.0.4758.102:/nix/store/vnif60hvggpxsqvhy4gsz1ns6yzvcsaa-firefox-97.0.1:/nix/store/2dmnavykp51yar8lxa70bc1j2ybilvr2-geckodriver-0.29.1:/nix/store/mh92dy3il7cxsr4q7bgwlxwa9b3jn9fi-rlwrap-0.45.2:/nix/store/n9yardzv65xw6rwljb42pk0j84xc8dah-valgrind-3.18.1:/nix/store/cd3dyp7mzr16lnwcgx38mfr9pklmx0z4-busybox-1.34.1:/nix/store/vx9mfr60cspvkzi0hzmx5gv8gcvw5l7a-dirmngr-1.1.1:/nix/store/wpmyxzixp0cpjbiygfxnss9hysw2v81f-gnuplot-5.4.2:/nix/store/c1mwvirvw6skp7i25dbcw28nxhakcalv-mesa-demos-8.4.0:/nix/store/aahsfn5my92mmnlyz90bi6a734b126yc-openssh-8.8p1:/nix/store/ry5dwl9qbzs7hfqhprm8pydqsw3b8g3g-rdbtools-0.1.15:/nix/store/gqgjs7dark600synhqhlm55xpx6gn7p8-python3.9-redis-3.5.3:/nix/store/hsvcn16slsic2shjf6ms6d4fk2rrzzdk-python3.9-python-lzf-0.2.4:/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0:/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1:/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12:/nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2:/nix/store/d7zafpwbh6ia3ywyh3gpp3219bm6q8l7-ffmpeg-4.4.1-bin:/nix/store/rqsfnrkg269xz73hnpcdn048xlsh95g5-lsb_release:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10:/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33:/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2:/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2:/nix/store/arg6pz7f93hhfrl7hbc9d12a4w8h2bpg-python3.9-pkginfo-1.8.1:/nix/store/6zplaxkxxxdvw9ns73bqlhihs5ln54gm-pipreqs-0.4.11:/nix/store/kacyc7v4f5qj91hxrf4b98ij5dxz7xxb-python3.9-yarg-0.1.9:/nix/store/dg7lp42zcj8a73kbsa91ndaf5ngm4j28-python3.9-requests-2.26.0:/nix/store/rkl4hjlw4jn0m2n3dp8x29siimx33z26-python3.9-certifi-2021.10.08:/nix/store/1fyn6w022l3mr8qapz2j2pxk4r9qaf46-python3.9-idna-3.2:/nix/store/xf5ki4hc5gvi3g3jmkzdmb6w0s63lwqj-python3.9-urllib3-1.26.7:/nix/store/b2qf7sjiqvnn79fzih31535ngfy6vca7-python3.9-brotli-1.0.9:/nix/store/x5fq7hh601lnxnb02sspcdxii76mr44l-python3.9-pysocks-1.7.1:/nix/store/31viy1z3rdnn9d9lqqfmri5c05ic6v7d-python3.9-chardet-4.0.0:/nix/store/9niqk1y5cwhiarl3hjwzd4mmzbzmjrns-python3.9-brotlicffi-1.0.9.2:/nix/store/sfgf0yf2r7d2sfmf2ckjlrirr0sqdr6f-python3.9-charset-normalizer-2.0.5:/nix/store/3faxld42axgpcvcnn03l41s7xcwm3jh6-python3.9-docopt-0.6.2:/nix/store/as3g1wmn9ra0r56fnm9lrf452am09jfq-python3.9-rsa-4.7.2:/nix/store/v7c02mgjzn3xzf0hrkjrpcsv5dca662v-python3.9-pyasn1-0.4.8:/nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2:/nix/store/66i18zqy7yhh7vd1xlgv3527ndn074sn-python3.9-Flask-2.0.2:/nix/store/i19h35dmia954lwd869labn6vfi84p4w-python3.9-asgiref-3.4.1:/nix/store/fzq8nm7dwink4a5326yl8zpy8zkc7dvh-python3.9-async-timeout-4.0.1:/nix/store/ip42ngvk94m1nig8x2r0w66312s4yyp6-python3.9-typing_extensions-3.10.0.2:/nix/store/iph8i85nswwvgny1ii0v4jsqw1h5jsam-python3.9-python-dotenv-0.19.0:/nix/store/3z6kn6khmrvcchmlaq1kf4dazn7xjfxd-python3.9-click-8.0.3:/nix/store/h2llfysmswkh3swz1mpsp58hpmjv8fvd-python3.9-itsdangerous-2.0.1:/nix/store/rjxbnz23hz80gqxqb2p98g7m2749s2x8-python3.9-Jinja2-3.0.2:/nix/store/clkn2qivhdmpqad8kgy9n7cmdjaj65rn-python3.9-Babel-2.9.1:/nix/store/mxmcvd2isfac8rhnx093jc3lnn6z5xkz-python3.9-pytz-2021.3:/nix/store/625pmj7qqxbdh7gwqkmnf7q9nnimck6y-python3.9-markupsafe-2.0.1:/nix/store/1gnl7sqrxs3q7sn9yp8zp8ix8kfvzb7d-python3.9-werkzeug-2.0.1:/nix/store/zzwk42dacn005xx6g11wwg89pbwpq9qx-python3.9-watchdog-2.1.6:/nix/store/p4kkqa7wcmpncdjfvsmp4dmy9rav8mr2-python3.9-pathtools-0.1.2:/nix/store/xhdw13i108pbrkjjaip8i9bmsaz4avsm-python3.9-PyYAML-5.4.1.1:/nix/store/5aizdcnnpkzrqdr8b1lw99nfva832jbl-python3.9-Markdown-3.3.4:/nix/store/9f1h2hgl9xf2ljnvp7vxxjjr6p1zq1vi-python3.9-future-0.18.2:/nix/store/8yb7igjx7vahlzflvrnrrm4h9szghpva-python3.9-numpy-1.21.2:/nix/store/0gm6jccsnbj6xvam2ggywi2ai0ng9yww-python3.9-pyflakes-2.4.0:/nix/store/9y2brn67pa2arhn12fsj2wng66qjg9xb-python3.9-poetry-1.1.11:/nix/store/7xx4idsg66fr7psz5p74zd8lpgnzfh17-python3.9-cachecontrol-0.12.10:/nix/store/6fhcx5qn91dy9mlzmsxn6wvd337wq4kq-python3.9-msgpack-1.0.2:/nix/store/b70c92m7kbyzy1cv6a34wmin5f1dria8-python3.9-cachy-0.3.0:/nix/store/6sjyh33fi6y1znliqhrpyd70jlcnwd6h-python3.9-memcached-1.51:/nix/store/imb66q8q0blywi204aj9a94cssv3qplw-python3.9-cleo-0.8.1:/nix/store/26l5iky1khwyqf0y14jk7cj59mbmkna5-python3.9-clikit-0.6.2:/nix/store/aacf82kvm80rb6ihf3hqyh3xyw7lyy1j-python3.9-pylev-1.4.0:/nix/store/7r1as141gjlakczflqpy21gf87lbn949-python3.9-pastel-0.2.1:/nix/store/v3p68baa1dm1is6y2l4wmcqbsag8zkwf-python3.9-crashtest-0.3.1:/nix/store/wdzbzvz6h36c44pfbnwr1y0v7iyqhfjf-python3.9-html5lib-1.1:/nix/store/ag9b795lsvi7n5lys6zjpr03i5wy6cgq-python3.9-six-1.16.0:/nix/store/2gcr7pyjjjy49qlx830n7lnkilyl0z2m-python3.9-webencodings-0.5.1:/nix/store/dkyqwzh74r6q595pp80lgfac2kjdsg9s-python3.9-keyring-23.2.1:/nix/store/ibm0m5g3zyls1j3xiw15r0fbla4c2dyl-python3.9-importlib-metadata-4.8.1:/nix/store/cj79basd94v45pfljm25k4iydbc7k4w5-python3.9-toml-0.10.2:/nix/store/b2zsbnj5a98xmivd7brwi2k9b12mr0ah-python3.9-zipp-3.6.0:/nix/store/4ix029p6vzi2l6rm4krj8n8v7qk0rcr6-python3.9-more-itertools-8.10.0:/nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev:/nix/store/f2c0yh6kas7fnpn7wsk3knwfn1zxl8bd-python3.9-dbus-python-1.2.18:/nix/store/h8zp7rr2wdkb37ziy7k11d1assx5y77k-python3.9-jeepney-0.7.1:/nix/store/f0kqrv0j1zm91fhrlzdx2dmchda0xd07-python3.9-secretstorage-3.3.1:/nix/store/1qz0jjfv921b167aji8sarmvifrnjvqd-python3.9-cryptography-3.4.8-dev:/nix/store/09a9xkhnfgpn6sfq2ryb3g81i0vikkkp-python3.9-packaging-20.9:/nix/store/l466cxk1dkpn3jbx3wirraf8abfl183l-python3.9-pyparsing-2.4.7:/nix/store/xf8caqay0z8rzqjb634nflk6n8qg53fg-python3.9-cryptography-3.4.8:/nix/store/03fgr83n71l4y7crjwnhnqaxc3sagxq2-python3.9-lockfile-0.12.2:/nix/store/i4lng637njy6j3v4jzxih7qpa0awb1vh-python3.9-pexpect-4.8.0:/nix/store/7vmpgkb7m47bb4fmj2afc2vcyvhss2jc-python3.9-ptyprocess-0.7.0:/nix/store/w4kbm54rn59xfz9xx0ah52m1dwb72g4k-python3.9-poetry-core-1.0.7:/nix/store/g4n8akb5ym0byf0h4krifyrl30404d64-python3.9-requests-toolbelt-0.9.1:/nix/store/s03z9yiifqc382gkgwjg2r973jirq4az-python3.9-shellingham-1.4.0:/nix/store/76ivif2jnhqnjqwkp8r5vbazry8jfb09-python3.9-tomlkit-0.7.2:/nix/store/mimck23nwdkc02dwinca338lqx6sldzs-python3.9-virtualenv-20.8.1:/nix/store/yq5mx1yv9p78i69qcr8p7aj8jkb69p97-python3.9-backports-entry-points-selectable-1.1.0:/nix/store/981d0ic0hqyv7wj4kpf5bc2vbcyvsag3-python3.9-distlib-0.3.3:/nix/store/p9dp14lcqdd4bi0p3mxx2wxni4ds8pvp-python3.9-filelock-3.3.0:/nix/store/iksib65203qxmb23qb2v3wdcnaw1x6p2-python3.9-platformdirs-2.4.0:/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2:/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1","CONFIG_SHELL":"/nix/store/dpjnjrqbgbm8a5wvi1hya01vd8wyvsq4-bash-4.4-p23/bin/bash","CXX":"g++","CXX_FOR_TARGET":"g++","DESTDIR_GNUSTEP_MAKEFILES":"/nix/store/53hvrnl35pmz1x3h6bivwmpslngykf1d-nix-shell/share/GNUstep/Makefiles","DETERMINISTIC_BUILD":"1","FC_FOR_TARGET":"gfortran","GEM_PATH":"/nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17/lib/ruby/gems/2.7.0:/nix/store/fbwis6whxa1br0hkghazybdw82zgw0d2-ruby2.7.5-backport-1.2.0/lib/ruby/gems/2.7.0:/nix/store/gbyvkn91940hdx82g6gp42j79c7i4wzg-ruby2.7.5-benchmark-0.2.0/lib/ruby/gems/2.7.0:/nix/store/sgi7x6x1fxisi2ip5rclk7nw8nk4fcjf-ruby2.7.5-e2mmap-0.1.0/lib/ruby/gems/2.7.0:/nix/store/w2z5cnlqqzm1j21jmavhnlgbbw7ipyvj-ruby2.7.5-jaro_winkler-1.5.4/lib/ruby/gems/2.7.0:/nix/store/4hy6z43bpmfiws9y8yvgmml3g6jfm1xm-ruby2.7.5-maruku-0.7.3/lib/ruby/gems/2.7.0:/nix/store/x4jz80q3d4f3cp13s532si2lz60wss7i-ruby2.7.5-nokogiri-1.12.5/lib/ruby/gems/2.7.0:/nix/store/y6h6cdig3lfk5n49csf17axlh75ghnrq-ruby2.7.5-mini_portile2-2.6.1/lib/ruby/gems/2.7.0:/nix/store/vvzj7mzdk9jqq2pncdajw9fj6cyfia6h-ruby2.7.5-racc-1.6.0/lib/ruby/gems/2.7.0:/nix/store/lfj8hzj6s1k3v13jy3k68y2ac5vfrv90-ruby2.7.5-parser-2.7.2.0/lib/ruby/gems/2.7.0:/nix/store/j235npnwgnrwkcyp3n4zxjxnal1xs74q-ruby2.7.5-ast-2.4.2/lib/ruby/gems/2.7.0:/nix/store/cq4cmg3w1f81bbkzm2j9nhlv04cmbadz-ruby2.7.5-reverse_markdown-2.0.0/lib/ruby/gems/2.7.0:/nix/store/a602vyp7smpvx06vcn30irqyw9y3k7kn-ruby2.7.5-rubocop-0.93.1/lib/ruby/gems/2.7.0:/nix/store/cgfx7vralay25gs3kvva8hjr27qrsqpz-ruby2.7.5-parallel-1.21.0/lib/ruby/gems/2.7.0:/nix/store/kg87shzh4n0b3lcwx68canb97pghqr26-ruby2.7.5-rainbow-3.0.0/lib/ruby/gems/2.7.0:/nix/store/gq8wqxk8spgrhi56jf0nqlhjirpr9z0n-ruby2.7.5-regexp_parser-2.1.1/lib/ruby/gems/2.7.0:/nix/store/fsb0f1g2knm8csyjcws09z1dbj9qr29f-ruby2.7.5-rexml-3.2.5/lib/ruby/gems/2.7.0:/nix/store/8zafbb4qc50ixdz6wjiq0idxr56h2h1k-ruby2.7.5-rubocop-ast-1.4.1/lib/ruby/gems/2.7.0:/nix/store/93jlw88wayhd52pskm8yaszpa78iscjx-ruby2.7.5-ruby-progressbar-1.11.0/lib/ruby/gems/2.7.0:/nix/store/x12vvlgv0xry655f947h1xqhrwjxr2ci-ruby2.7.5-unicode-display_width-1.8.0/lib/ruby/gems/2.7.0:/nix/store/7y294jq5z4dzd9lnb9y9rb3dhydblm4f-ruby2.7.5-thor-1.1.0/lib/ruby/gems/2.7.0:/nix/store/jnbkh1l1c8m563g358kjqig5wjizk184-ruby2.7.5-tilt-2.0.10/lib/ruby/gems/2.7.0:/nix/store/kd9p5chzgx301mw2v2c8l4yhxpdryc81-ruby2.7.5-yard-0.9.26/lib/ruby/gems/2.7.0:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib/ruby/gems/2.7.0","HOST_PATH":"/nix/store/w07a7k61dw5gnsyxj3kgcq3shr76jax8-bash-interactive-4.4-p23/bin:/nix/store/ybwx2lcdbzijs363yvwvzgaf3m8a2ymv-clang-7.1.0/bin:/nix/store/bryas24nk0pvj97z9clskhbmnq08jas9-clang-tools-13.0.0/bin:/nix/store/5p5g3gz0yvy5qxsdfy5j5vfsvszranrd-gdc-wrapper-9.3.0/bin:/nix/store/yq2v2g5285ib5nwl3r4rdnl417zpaf8y-binutils-wrapper-2.35.2/bin:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/bin:/nix/store/269dmm2q86a9w8ki7xhgaafwc050dalz-go-1.16.13/bin:/nix/store/xmd8y2723gc88c7m8c9z7q929f09ip0f-gopls-0.7.3/bin:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/bin:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/bin:/nix/store/qjlg429684wp4gid7pgy5gaysmax5i1r-luarocks-3.2.1/bin:/nix/store/n8a3n4yxg3fhny5jj6jgcd2z10p46gb1-zip-3.0/bin:/nix/store/n8cg7dhsy7k3kaxfidp6j881xk2w9vm9-unzip-6.0/bin:/nix/store/g9kjv17sa0afmbzkra15xr0s8wfqnwan-cmake-3.21.2/bin:/nix/store/aham8y9cgpslhmlmzd7khn2x591r28d1-luaformatter-1.3.6/bin:/nix/store/hb6492h1hz59xpvwmn40n2kl9zc5dkrm-x86_64-unknown-linux-gnu-nim-wrapper-1.6.0/bin:/nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16/bin:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/bin:/nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/bin:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/bin:/nix/store/5wm5nz9v823z0sf2ffs66dbwb1jsjcgl-deno-1.16.2/bin:/nix/store/8fm0kwh9bxkgix4vfrsi6qmnhkqi4g7v-flow-0.163.0/bin:/nix/store/1d59jsr0pv844slmpa23qqyh1gpcwc8b-haxe-4.2.1/bin:/nix/store/6b9g062ybb6ai4cr1dc0d48zfwxnac1v-libjpeg-turbo-2.1.2-bin/bin:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/bin:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/bin:/nix/store/dznkazjn5mk1ds47qmbsbkiampgsgg5j-apache-maven-3.8.3/bin:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/bin:/nix/store/hc3n2kpr77wwnyc71rxxyz3rvz83z7kn-rakudo-2021.10/bin:/nix/store/1nf6hhsg5n9xrbpimrsljccaz0bliyz6-zef-0.13.0/bin:/nix/store/nc26m6a92gdj3hbp2abr8mxfkafqlahb-openssl-1.1.1m-bin/bin:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/bin:/nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17/bin:/nix/store/fbwis6whxa1br0hkghazybdw82zgw0d2-ruby2.7.5-backport-1.2.0/bin:/nix/store/gbyvkn91940hdx82g6gp42j79c7i4wzg-ruby2.7.5-benchmark-0.2.0/bin:/nix/store/sgi7x6x1fxisi2ip5rclk7nw8nk4fcjf-ruby2.7.5-e2mmap-0.1.0/bin:/nix/store/w2z5cnlqqzm1j21jmavhnlgbbw7ipyvj-ruby2.7.5-jaro_winkler-1.5.4/bin:/nix/store/4hy6z43bpmfiws9y8yvgmml3g6jfm1xm-ruby2.7.5-maruku-0.7.3/bin:/nix/store/x4jz80q3d4f3cp13s532si2lz60wss7i-ruby2.7.5-nokogiri-1.12.5/bin:/nix/store/y6h6cdig3lfk5n49csf17axlh75ghnrq-ruby2.7.5-mini_portile2-2.6.1/bin:/nix/store/vvzj7mzdk9jqq2pncdajw9fj6cyfia6h-ruby2.7.5-racc-1.6.0/bin:/nix/store/lfj8hzj6s1k3v13jy3k68y2ac5vfrv90-ruby2.7.5-parser-2.7.2.0/bin:/nix/store/j235npnwgnrwkcyp3n4zxjxnal1xs74q-ruby2.7.5-ast-2.4.2/bin:/nix/store/cq4cmg3w1f81bbkzm2j9nhlv04cmbadz-ruby2.7.5-reverse_markdown-2.0.0/bin:/nix/store/a602vyp7smpvx06vcn30irqyw9y3k7kn-ruby2.7.5-rubocop-0.93.1/bin:/nix/store/cgfx7vralay25gs3kvva8hjr27qrsqpz-ruby2.7.5-parallel-1.21.0/bin:/nix/store/kg87shzh4n0b3lcwx68canb97pghqr26-ruby2.7.5-rainbow-3.0.0/bin:/nix/store/gq8wqxk8spgrhi56jf0nqlhjirpr9z0n-ruby2.7.5-regexp_parser-2.1.1/bin:/nix/store/fsb0f1g2knm8csyjcws09z1dbj9qr29f-ruby2.7.5-rexml-3.2.5/bin:/nix/store/8zafbb4qc50ixdz6wjiq0idxr56h2h1k-ruby2.7.5-rubocop-ast-1.4.1/bin:/nix/store/93jlw88wayhd52pskm8yaszpa78iscjx-ruby2.7.5-ruby-progressbar-1.11.0/bin:/nix/store/x12vvlgv0xry655f947h1xqhrwjxr2ci-ruby2.7.5-unicode-display_width-1.8.0/bin:/nix/store/7y294jq5z4dzd9lnb9y9rb3dhydblm4f-ruby2.7.5-thor-1.1.0/bin:/nix/store/jnbkh1l1c8m563g358kjqig5wjizk184-ruby2.7.5-tilt-2.0.10/bin:/nix/store/kd9p5chzgx301mw2v2c8l4yhxpdryc81-ruby2.7.5-yard-0.9.26/bin:/nix/store/dm61rb5h0r68qx0k8b2af21maqp0qw8s-rake-12.3.2/bin:/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/bin:/nix/store/bbi0p5r1madw22dasq4f7k12766lrdyx-cargo-1.56.1/bin:/nix/store/zxjd9h0n8lvbh3id43h9mixybyrxacn6-rls-1.56.1/bin:/nix/store/lrdgwnlx5q0kvc1z348kcmd5kw6i1kmz-rust-analyzer-2021-10-25/bin:/nix/store/sk0wjzyy2zz1iqfr09pp7xdyqn57xspx-rustfmt-1.56.1/bin:/nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9/bin:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/bin:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/bin:/nix/store/5jqn3765handgf77963h4ahvj05pb9yc-gnum4-1.4.19/bin:/nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3/bin:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/bin:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/bin:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/bin:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/bin:/nix/store/91mj2apzv1d88m7lbibfynz36r5ay2xi-opam-2.1.1/bin:/nix/store/xcvqvznijycw3qpbdqyrpm5shmdvc3zg-quill-0.2.7/bin:/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/bin:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2/bin:/nix/store/a7xm3ac93qa42czr8h8sbbgfm8asijqy-scala-2.13.7/bin:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/bin:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/bin:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/bin:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/bin:/nix/store/knfjcxaakk1m609s1vcfbbq1mahz4m6y-elixir-1.12.3/bin:/nix/store/8hqpcha8jkaswfshymm9j66lmhjwzkx7-erlang-24.1.6/bin:/nix/store/3na2psghzhfym3bhpcnvx9ccnkcxbp7p-fsharp-4.0.1.1/bin:/nix/store/sazxbppq9h2yp0prgza70h394brg8v6h-kotlin-1.6.10/bin:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/bin:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/bin:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/bin:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/bin:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/bin:/nix/store/fx4hd2dfdwqjhkhxl8zhc832vsfs4qqv-fontconfig-2.13.94-bin/bin:/nix/store/988swrxxc98psfj02piir4jd62q52g5p-sqlite-3.36.0-bin/bin:/nix/store/6ciph11c6ijykbrrqm8s8w337lvq2n1y-sqldiff-3.36.0/bin:/nix/store/bhgs6fvf8ccv09jcr2c2qvs1dfkp0bzs-clojure-1.10.3.1029/bin:/nix/store/h456b8a4db9z7d9bwg2cpa7y09nfxfcc-crystal-1.2.2/bin:/nix/store/4xlpd83d5xzzdfhpcwlciv5qgc2dp0cw-crystal-1.2.2-bin/bin:/nix/store/n1hdar0mlvqf08n58dhssxlq7lry8i8l-gfortran-wrapper-9.3.0/bin:/nix/store/9s04g387vdwd8b3gnrhaxm9g2vyxv1i3-ghc-8.10.7/bin:/nix/store/2qwnn6lizc9d119kp3zig3q19gbfm4n6-gcc-wrapper-10.3.0/bin:/nix/store/spm7d6ncyx2k5w8yl6clzynv2s4wf1kp-binutils-wrapper-2.35.2/bin:/nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1/bin:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/bin:/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/bin:/nix/store/3xcbipxg7dacja7arkqsdp31wv48a59b-python3.9-pip-21.1.3/bin:/nix/store/pspa13lvr8ahgpq4ksbz6kmagwvrlklm-nasm-2.15.05/bin:/nix/store/q1sbanxnbyr0wiy1bykyis30p6w7gx6l-powershell-7.2.1/bin:/nix/store/np5bfcinkp3hzn3qfqn9nilww1hwfiwa-gnustep-make-2.9.0/bin:/nix/store/xn46q2dzx9wgk73bqahrqlajm2xi3n4k-autoconf-2.71/bin:/nix/store/8rlh3867b4a6ni7i0y7m03nlxsqp2n53-xrandr-1.5.1/bin:/nix/store/x01wvmyaxlxjx7bwn9bws406fvh1hrdd-libtiff-4.3.0-bin/bin:/nix/store/gqqjs85gi9f95b8inzyd7rlw04ag9yjr-gnutls-3.7.2-bin/bin:/nix/store/cxgg4y1rjahlmldz0s7g2r8gf1wird0q-libxml2-2.9.12-bin/bin:/nix/store/b82qwylvdj9a7a3is2ayhqbynyqm4hy7-wasmer-2.0.0/bin:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/bin:/nix/store/4ng5csanrxg24ilfl5jsxvq35p2imwl2-lldb-13.0.0/bin:/nix/store/7qjyyqv9sqgk1lkzpgf1ymmcx6zzix0p-pkg-config-wrapper-0.29.2/bin:/nix/store/1fjl7hvf44a9898dbbl18qn2fc6ks1gn-jq-1.6-bin/bin:/nix/store/63g9gyn4dzgrrxsmsx0dnzhkvr7974ap-wget-1.21.2/bin:/nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1/bin:/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/bin:/nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3/bin:/nix/store/p9w19nz2h9vyi1kqk4zqpq7yjbx203yx-rsync-3.2.3/bin:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27/bin:/nix/store/6m8k6drrfqg53x2ighzwglwfnqmairhb-vim-8.2.4186/bin:/nix/store/z0b6n2bqlssqwd9va76mb8flcwwzywc9-chromium-98.0.4758.102/bin:/nix/store/7dxw3xc88p966h3wwv0pbd9l7xhpqw0c-chromedriver-98.0.4758.102/bin:/nix/store/vnif60hvggpxsqvhy4gsz1ns6yzvcsaa-firefox-97.0.1/bin:/nix/store/2dmnavykp51yar8lxa70bc1j2ybilvr2-geckodriver-0.29.1/bin:/nix/store/mh92dy3il7cxsr4q7bgwlxwa9b3jn9fi-rlwrap-0.45.2/bin:/nix/store/n9yardzv65xw6rwljb42pk0j84xc8dah-valgrind-3.18.1/bin:/nix/store/cd3dyp7mzr16lnwcgx38mfr9pklmx0z4-busybox-1.34.1/bin:/nix/store/vx9mfr60cspvkzi0hzmx5gv8gcvw5l7a-dirmngr-1.1.1/bin:/nix/store/wpmyxzixp0cpjbiygfxnss9hysw2v81f-gnuplot-5.4.2/bin:/nix/store/c1mwvirvw6skp7i25dbcw28nxhakcalv-mesa-demos-8.4.0/bin:/nix/store/aahsfn5my92mmnlyz90bi6a734b126yc-openssh-8.8p1/bin:/nix/store/ry5dwl9qbzs7hfqhprm8pydqsw3b8g3g-rdbtools-0.1.15/bin:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/bin:/nix/store/d7zafpwbh6ia3ywyh3gpp3219bm6q8l7-ffmpeg-4.4.1-bin/bin:/nix/store/rqsfnrkg269xz73hnpcdn048xlsh95g5-lsb_release/bin:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/bin:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/bin:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/bin:/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/bin:/nix/store/arg6pz7f93hhfrl7hbc9d12a4w8h2bpg-python3.9-pkginfo-1.8.1/bin:/nix/store/6zplaxkxxxdvw9ns73bqlhihs5ln54gm-pipreqs-0.4.11/bin:/nix/store/31viy1z3rdnn9d9lqqfmri5c05ic6v7d-python3.9-chardet-4.0.0/bin:/nix/store/sfgf0yf2r7d2sfmf2ckjlrirr0sqdr6f-python3.9-charset-normalizer-2.0.5/bin:/nix/store/as3g1wmn9ra0r56fnm9lrf452am09jfq-python3.9-rsa-4.7.2/bin:/nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2/bin:/nix/store/66i18zqy7yhh7vd1xlgv3527ndn074sn-python3.9-Flask-2.0.2/bin:/nix/store/iph8i85nswwvgny1ii0v4jsqw1h5jsam-python3.9-python-dotenv-0.19.0/bin:/nix/store/clkn2qivhdmpqad8kgy9n7cmdjaj65rn-python3.9-Babel-2.9.1/bin:/nix/store/zzwk42dacn005xx6g11wwg89pbwpq9qx-python3.9-watchdog-2.1.6/bin:/nix/store/5aizdcnnpkzrqdr8b1lw99nfva832jbl-python3.9-Markdown-3.3.4/bin:/nix/store/9f1h2hgl9xf2ljnvp7vxxjjr6p1zq1vi-python3.9-future-0.18.2/bin:/nix/store/8yb7igjx7vahlzflvrnrrm4h9szghpva-python3.9-numpy-1.21.2/bin:/nix/store/0gm6jccsnbj6xvam2ggywi2ai0ng9yww-python3.9-pyflakes-2.4.0/bin:/nix/store/9y2brn67pa2arhn12fsj2wng66qjg9xb-python3.9-poetry-1.1.11/bin:/nix/store/7xx4idsg66fr7psz5p74zd8lpgnzfh17-python3.9-cachecontrol-0.12.10/bin:/nix/store/dkyqwzh74r6q595pp80lgfac2kjdsg9s-python3.9-keyring-23.2.1/bin:/nix/store/mimck23nwdkc02dwinca338lqx6sldzs-python3.9-virtualenv-20.8.1/bin:/nix/store/1570w56jrkvr90w9x158vyb5vahnk18v-coreutils-8.32/bin:/nix/store/ihxk2vlm0vi7c4j3gpm084kbxvz6v585-findutils-4.8.0/bin:/nix/store/kjx1mv85c5cgsrr4bwar22j7hbwj834m-diffutils-3.7/bin:/nix/store/gm2w08wwsa3vd500d8vq879s2lv65ldh-gnused-4.8/bin:/nix/store/v0slhpb2y3xa7gmv4q6gblkdk7n0f09j-gnugrep-3.6/bin:/nix/store/2wn093wbc6ps4brcsppxjd14vxvaa8a2-gawk-5.1.0/bin:/nix/store/5bxrjkyvqmzn1p897652y3lwa9fxagpw-gnutar-1.34/bin:/nix/store/liva1jnjdskrn57s42kfawr2zz66szzm-gzip-1.10/bin:/nix/store/ih2zkh2mbrx2c766ryk2i9hhlkly7snr-bzip2-1.0.6.0.2-bin/bin:/nix/store/pvkiiw0mp1yx0b21b7k105yywccychgh-gnumake-4.3/bin:/nix/store/dpjnjrqbgbm8a5wvi1hya01vd8wyvsq4-bash-4.4-p23/bin:/nix/store/aicl3kwfnaizk45aygm8bviqv7lk0a16-patch-2.7.6/bin:/nix/store/7jk6k46f56rszzc1bxi8mdrvcw53pym4-xz-5.2.5-bin/bin","JAVA_HOME":"/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/lib/openjdk","LD":"ld","LD_FOR_TARGET":"ld","LOCALE_ARCHIVE":"/usr/lib/locale/locale-archive","LUA_CPATH":"/nix/store/caf2m9a9sglfzxip3ggbhhskshqprnxs-lua5.2-luabitop-1.0.2-3/lib/lua/5.2/?.so;/nix/store/wpamqfm3mbv57fx55s6r300cfwy5v18q-lua5.2-luasocket-3.0rc1-2/lib/lua/5.2/?.so;/nix/store/rnqj711lmqa76lja8v4hhzcnvkjd63i4-lua5.2-luafilesystem-1.7.0-2/lib/lua/5.2/?.so","LUA_PATH":"/nix/store/wpamqfm3mbv57fx55s6r300cfwy5v18q-lua5.2-luasocket-3.0rc1-2/share/lua/5.2/?.lua;/nix/store/wpamqfm3mbv57fx55s6r300cfwy5v18q-lua5.2-luasocket-3.0rc1-2/share/lua/5.2/?/init.lua;/nix/store/bfyv9ag4pgiq98apcmnmqabkhpxc2igd-lua5.2-penlight-dev-1/share/lua/5.2/?.lua;/nix/store/bfyv9ag4pgiq98apcmnmqabkhpxc2igd-lua5.2-penlight-dev-1/share/lua/5.2/?/init.lua;/nix/store/qjlg429684wp4gid7pgy5gaysmax5i1r-luarocks-3.2.1/share/lua/5.2/?.lua;/nix/store/qjlg429684wp4gid7pgy5gaysmax5i1r-luarocks-3.2.1/share/lua/5.2/?/init.lua","NIX_BINTOOLS":"/nix/store/29bjq5hw1qglybp1a5f3ij9gxc2fyf94-binutils-wrapper-2.35.1","NIX_BINTOOLS_FOR_TARGET":"/nix/store/spm7d6ncyx2k5w8yl6clzynv2s4wf1kp-binutils-wrapper-2.35.2","NIX_BINTOOLS_WRAPPER_TARGET_HOST_x86_64_unknown_linux_gnu":"1","NIX_BINTOOLS_WRAPPER_TARGET_TARGET_x86_64_unknown_linux_gnu":"1","NIX_BUILD_CORES":"8","NIX_BUILD_TOP":"/tmp","NIX_CC":"/nix/store/4xs1xyj8728yvh9y5v6ji819kwgfy2fv-gcc-wrapper-10.3.0","NIX_CC_FOR_TARGET":"/nix/store/2qwnn6lizc9d119kp3zig3q19gbfm4n6-gcc-wrapper-10.3.0","NIX_CC_WRAPPER_TARGET_HOST_x86_64_unknown_linux_gnu":"1","NIX_CC_WRAPPER_TARGET_TARGET_x86_64_unknown_linux_gnu":"1","NIX_CFLAGS_COMPILE":" -frandom-seed=53hvrnl35p -isystem /nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/include -isystem /nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/include -isystem /nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/include -isystem /nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/include -isystem /nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/include -isystem /nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/include -isystem /nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/include -isystem /nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/include -isystem /nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/include -isystem /nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/include -isystem /nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/include -isystem /nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/include -isystem /nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/include -isystem /nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/include -isystem /nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/include -isystem /nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/include -isystem /nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/include -isystem /nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/include -isystem /nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/include -isystem /nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/include -isystem /nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/include -isystem /nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/include -isystem /nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/include -isystem /nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/include -isystem /nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev/include -isystem /nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/include -isystem /nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/include -isystem /nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/include -isystem /nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/include -isystem /nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/include -isystem /nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/include -isystem /nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/include -isystem /nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/include -isystem /nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/include -isystem /nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/include -isystem /nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/include -isystem /nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/include -isystem /nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/include -isystem /nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/include -isystem /nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/include -isystem /nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/include -isystem /nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/include -isystem /nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/include -isystem /nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/include -isystem /nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/include -isystem /nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/include -isystem /nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/include -isystem /nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/include -isystem /nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/include -isystem /nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/include -isystem /nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/include -isystem /nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/include -isystem /nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/include -isystem /nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/include -isystem /nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/include -isystem /nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/include -isystem /nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/include -isystem /nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/include -isystem /nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/include -isystem /nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/include -isystem /nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/include -isystem /nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/include -isystem /nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/include -isystem /nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/include -isystem /nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/include -isystem /nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/include -isystem /nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/include -isystem /nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/include -isystem /nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/include -isystem /nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev/include -isystem /nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/include -isystem /nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/include -isystem /nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/include -isystem /nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/include -isystem /nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/include -isystem /nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/include -isystem /nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/include -isystem /nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/include -isystem /nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/include -isystem /nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/include -isystem /nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/include -isystem /nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/include -isystem /nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/include -isystem /nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/include -isystem /nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/include -isystem /nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/include -isystem /nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/include -isystem /nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/include -isystem /nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/include -isystem /nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/include","NIX_CFLAGS_COMPILE_FOR_TARGET":" -isystem /nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/include -isystem /nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/include -isystem /nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/include -isystem /nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/include -isystem /nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/include -isystem /nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/include -isystem /nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/include -isystem /nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/include -isystem /nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/include -isystem /nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/include -isystem /nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/include -isystem /nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/include -isystem /nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/include -isystem /nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/include -isystem /nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/include -isystem /nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/include -isystem /nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/include -isystem /nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/include -isystem /nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/include -isystem /nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/include -isystem /nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/include -isystem /nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/include -isystem /nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/include -isystem /nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/include -isystem /nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev/include -isystem /nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/include -isystem /nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/include -isystem /nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/include -isystem /nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/include -isystem /nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/include -isystem /nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/include -isystem /nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/include -isystem /nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/include -isystem /nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/include -isystem /nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/include -isystem /nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/include -isystem /nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/include -isystem /nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/include -isystem /nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/include -isystem /nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/include -isystem /nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/include -isystem /nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/include -isystem /nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/include -isystem /nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/include -isystem /nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/include","NIX_ENFORCE_NO_NATIVE":"1","NIX_GNUSTEP_SYSTEM_ADMIN_TOOLS":"/nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16/sbin:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27/sbin:/nix/store/cd3dyp7mzr16lnwcgx38mfr9pklmx0z4-busybox-1.34.1/sbin:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/sbin:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/sbin","NIX_GNUSTEP_SYSTEM_DOC_INFO":"/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/share/info:/nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9/share/info:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/share/info:/nix/store/5jqn3765handgf77963h4ahvj05pb9yc-gnum4-1.4.19/share/info:/nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3/share/info:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/share/info:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2/share/info:/nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1/share/info:/nix/store/xn46q2dzx9wgk73bqahrqlajm2xi3n4k-autoconf-2.71/share/info:/nix/store/63g9gyn4dzgrrxsmsx0dnzhkvr7974ap-wget-1.21.2/share/info:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27/share/info:/nix/store/vx9mfr60cspvkzi0hzmx5gv8gcvw5l7a-dirmngr-1.1.1/share/info:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/share/info","NIX_GNUSTEP_SYSTEM_DOC_MAN":"/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/share/man:/nix/store/435paza0j48aa9vgvf6r2l12nrg4ld11-patchelf-0.12/share/man:/nix/store/ybwx2lcdbzijs363yvwvzgaf3m8a2ymv-clang-7.1.0/share/man:/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/share/man:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/share/man:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/share/man:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/share/man:/nix/store/n8a3n4yxg3fhny5jj6jgcd2z10p46gb1-zip-3.0/share/man:/nix/store/n8cg7dhsy7k3kaxfidp6j881xk2w9vm9-unzip-6.0/share/man:/nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16/share/man:/nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/share/man:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/share/man:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/share/man:/nix/store/bbi0p5r1madw22dasq4f7k12766lrdyx-cargo-1.56.1/share/man:/nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9/share/man:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/share/man:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/share/man:/nix/store/5jqn3765handgf77963h4ahvj05pb9yc-gnum4-1.4.19/share/man:/nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3/share/man:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/share/man:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/share/man:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/share/man:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/share/man:/nix/store/91mj2apzv1d88m7lbibfynz36r5ay2xi-opam-2.1.1/share/man:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2/share/man:/nix/store/a7xm3ac93qa42czr8h8sbbgfm8asijqy-scala-2.13.7/share/man:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/share/man:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/share/man:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/share/man:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/share/man:/nix/store/knfjcxaakk1m609s1vcfbbq1mahz4m6y-elixir-1.12.3/share/man:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/share/man:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/share/man:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/share/man:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/share/man:/nix/store/fx4hd2dfdwqjhkhxl8zhc832vsfs4qqv-fontconfig-2.13.94-bin/share/man:/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/share/man:/nix/store/988swrxxc98psfj02piir4jd62q52g5p-sqlite-3.36.0-bin/share/man:/nix/store/bhgs6fvf8ccv09jcr2c2qvs1dfkp0bzs-clojure-1.10.3.1029/share/man:/nix/store/4xlpd83d5xzzdfhpcwlciv5qgc2dp0cw-crystal-1.2.2-bin/share/man:/nix/store/9s04g387vdwd8b3gnrhaxm9g2vyxv1i3-ghc-8.10.7/share/man:/nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1/share/man:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/share/man:/nix/store/pspa13lvr8ahgpq4ksbz6kmagwvrlklm-nasm-2.15.05/share/man:/nix/store/np5bfcinkp3hzn3qfqn9nilww1hwfiwa-gnustep-make-2.9.0/share/man:/nix/store/xn46q2dzx9wgk73bqahrqlajm2xi3n4k-autoconf-2.71/share/man:/nix/store/8rlh3867b4a6ni7i0y7m03nlxsqp2n53-xrandr-1.5.1/share/man:/nix/store/cxgg4y1rjahlmldz0s7g2r8gf1wird0q-libxml2-2.9.12-bin/share/man:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/share/man:/nix/store/63g9gyn4dzgrrxsmsx0dnzhkvr7974ap-wget-1.21.2/share/man:/nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1/share/man:/nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3/share/man:/nix/store/p9w19nz2h9vyi1kqk4zqpq7yjbx203yx-rsync-3.2.3/share/man:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27/share/man:/nix/store/6m8k6drrfqg53x2ighzwglwfnqmairhb-vim-8.2.4186/share/man:/nix/store/z0b6n2bqlssqwd9va76mb8flcwwzywc9-chromium-98.0.4758.102/share/man:/nix/store/mh92dy3il7cxsr4q7bgwlxwa9b3jn9fi-rlwrap-0.45.2/share/man:/nix/store/vx9mfr60cspvkzi0hzmx5gv8gcvw5l7a-dirmngr-1.1.1/share/man:/nix/store/wpmyxzixp0cpjbiygfxnss9hysw2v81f-gnuplot-5.4.2/share/man:/nix/store/aahsfn5my92mmnlyz90bi6a734b126yc-openssh-8.8p1/share/man:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/share/man:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/share/man:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/share/man:/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/share/man:/nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2/share/man","NIX_GNUSTEP_SYSTEM_HEADERS":"/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/include /nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/include /nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/include /nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/include /nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/include /nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/include /nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/include /nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/include /nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/include /nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/include /nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/include /nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/include /nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/include /nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/include /nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/include /nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/include /nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/include /nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/include /nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/include /nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/include /nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/include /nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/include /nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/include /nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/include /nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev/include /nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/include /nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/include /nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/include /nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/include /nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/include /nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/include /nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/include /nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/include /nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/include /nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/include /nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/include /nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/include /nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/include /nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/include /nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/include /nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/include /nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/include /nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/include /nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/include /nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/include","NIX_GNUSTEP_SYSTEM_LIBRARIES":"/nix/store/0hgwshx1mb9v68rm1jrxclvww6hlqcrw-python3.9-pycparser-2.20/lib:/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib:/nix/store/py7c0mw8dgz9m00nsliglsbw5ns0f0pf-python3.9-cffi-1.14.6/lib:/nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/lib:/nix/store/w07a7k61dw5gnsyxj3kgcq3shr76jax8-bash-interactive-4.4-p23/lib:/nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/lib:/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/lib:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/lib:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib:/nix/store/caf2m9a9sglfzxip3ggbhhskshqprnxs-lua5.2-luabitop-1.0.2-3/lib:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib:/nix/store/wpamqfm3mbv57fx55s6r300cfwy5v18q-lua5.2-luasocket-3.0rc1-2/lib:/nix/store/rnqj711lmqa76lja8v4hhzcnvkjd63i4-lua5.2-luafilesystem-1.7.0-2/lib:/nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16/lib:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib:/nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/lib:/nix/store/1d59jsr0pv844slmpa23qqyh1gpcwc8b-haxe-4.2.1/lib:/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37/lib:/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7/lib:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib:/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14/lib:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/lib:/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/lib:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib:/nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17/lib:/nix/store/fbwis6whxa1br0hkghazybdw82zgw0d2-ruby2.7.5-backport-1.2.0/lib:/nix/store/gbyvkn91940hdx82g6gp42j79c7i4wzg-ruby2.7.5-benchmark-0.2.0/lib:/nix/store/sgi7x6x1fxisi2ip5rclk7nw8nk4fcjf-ruby2.7.5-e2mmap-0.1.0/lib:/nix/store/w2z5cnlqqzm1j21jmavhnlgbbw7ipyvj-ruby2.7.5-jaro_winkler-1.5.4/lib:/nix/store/4hy6z43bpmfiws9y8yvgmml3g6jfm1xm-ruby2.7.5-maruku-0.7.3/lib:/nix/store/x4jz80q3d4f3cp13s532si2lz60wss7i-ruby2.7.5-nokogiri-1.12.5/lib:/nix/store/y6h6cdig3lfk5n49csf17axlh75ghnrq-ruby2.7.5-mini_portile2-2.6.1/lib:/nix/store/vvzj7mzdk9jqq2pncdajw9fj6cyfia6h-ruby2.7.5-racc-1.6.0/lib:/nix/store/lfj8hzj6s1k3v13jy3k68y2ac5vfrv90-ruby2.7.5-parser-2.7.2.0/lib:/nix/store/j235npnwgnrwkcyp3n4zxjxnal1xs74q-ruby2.7.5-ast-2.4.2/lib:/nix/store/cq4cmg3w1f81bbkzm2j9nhlv04cmbadz-ruby2.7.5-reverse_markdown-2.0.0/lib:/nix/store/a602vyp7smpvx06vcn30irqyw9y3k7kn-ruby2.7.5-rubocop-0.93.1/lib:/nix/store/cgfx7vralay25gs3kvva8hjr27qrsqpz-ruby2.7.5-parallel-1.21.0/lib:/nix/store/kg87shzh4n0b3lcwx68canb97pghqr26-ruby2.7.5-rainbow-3.0.0/lib:/nix/store/gq8wqxk8spgrhi56jf0nqlhjirpr9z0n-ruby2.7.5-regexp_parser-2.1.1/lib:/nix/store/fsb0f1g2knm8csyjcws09z1dbj9qr29f-ruby2.7.5-rexml-3.2.5/lib:/nix/store/8zafbb4qc50ixdz6wjiq0idxr56h2h1k-ruby2.7.5-rubocop-ast-1.4.1/lib:/nix/store/93jlw88wayhd52pskm8yaszpa78iscjx-ruby2.7.5-ruby-progressbar-1.11.0/lib:/nix/store/x12vvlgv0xry655f947h1xqhrwjxr2ci-ruby2.7.5-unicode-display_width-1.8.0/lib:/nix/store/7y294jq5z4dzd9lnb9y9rb3dhydblm4f-ruby2.7.5-thor-1.1.0/lib:/nix/store/jnbkh1l1c8m563g358kjqig5wjizk184-ruby2.7.5-tilt-2.0.10/lib:/nix/store/kd9p5chzgx301mw2v2c8l4yhxpdryc81-ruby2.7.5-yard-0.9.26/lib:/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/lib:/nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9/lib:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/lib:/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib/lib:/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2/lib:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/lib:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/lib:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/lib:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/lib:/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib:/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12/lib:/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib:/nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/lib:/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4/lib:/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4/lib:/nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/lib:/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib:/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2/lib:/nix/store/a7xm3ac93qa42czr8h8sbbgfm8asijqy-scala-2.13.7/lib:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/lib:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib:/nix/store/rzllp4641nar6llajjxyz3cvcmfcm1pj-libgcc-10.3.0-dev/lib:/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0/lib:/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib:/nix/store/knfjcxaakk1m609s1vcfbbq1mahz4m6y-elixir-1.12.3/lib:/nix/store/8hqpcha8jkaswfshymm9j66lmhjwzkx7-erlang-24.1.6/lib:/nix/store/3na2psghzhfym3bhpcnvx9ccnkcxbp7p-fsharp-4.0.1.1/lib:/nix/store/sazxbppq9h2yp0prgza70h394brg8v6h-kotlin-1.6.10/lib:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/lib:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/lib:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/lib:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/lib:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/lib:/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15/lib:/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib:/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib:/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib:/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/lib:/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/lib:/nix/store/h456b8a4db9z7d9bwg2cpa7y09nfxfcc-crystal-1.2.2/lib:/nix/store/9s04g387vdwd8b3gnrhaxm9g2vyxv1i3-ghc-8.10.7/lib:/nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1/lib:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib:/nix/store/3xcbipxg7dacja7arkqsdp31wv48a59b-python3.9-pip-21.1.3/lib:/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/lib:/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2/lib:/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/lib:/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1/lib:/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1/lib:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/lib:/nix/store/4ng5csanrxg24ilfl5jsxvq35p2imwl2-lldb-13.0.0/lib:/nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1/lib:/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/lib:/nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3/lib:/nix/store/zk5cpqxxmgj1qbzqsz54a65yiq60czki-python3.9-fb-re2-1.0.7/lib:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27/lib:/nix/store/vnif60hvggpxsqvhy4gsz1ns6yzvcsaa-firefox-97.0.1/lib:/nix/store/n9yardzv65xw6rwljb42pk0j84xc8dah-valgrind-3.18.1/lib:/nix/store/ry5dwl9qbzs7hfqhprm8pydqsw3b8g3g-rdbtools-0.1.15/lib:/nix/store/gqgjs7dark600synhqhlm55xpx6gn7p8-python3.9-redis-3.5.3/lib:/nix/store/hsvcn16slsic2shjf6ms6d4fk2rrzzdk-python3.9-python-lzf-0.2.4/lib:/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0/lib:/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1/lib:/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib:/nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/lib:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/lib:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/lib:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib:/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/lib:/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2/lib:/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/lib:/nix/store/arg6pz7f93hhfrl7hbc9d12a4w8h2bpg-python3.9-pkginfo-1.8.1/lib:/nix/store/6zplaxkxxxdvw9ns73bqlhihs5ln54gm-pipreqs-0.4.11/lib:/nix/store/kacyc7v4f5qj91hxrf4b98ij5dxz7xxb-python3.9-yarg-0.1.9/lib:/nix/store/dg7lp42zcj8a73kbsa91ndaf5ngm4j28-python3.9-requests-2.26.0/lib:/nix/store/rkl4hjlw4jn0m2n3dp8x29siimx33z26-python3.9-certifi-2021.10.08/lib:/nix/store/1fyn6w022l3mr8qapz2j2pxk4r9qaf46-python3.9-idna-3.2/lib:/nix/store/xf5ki4hc5gvi3g3jmkzdmb6w0s63lwqj-python3.9-urllib3-1.26.7/lib:/nix/store/b2qf7sjiqvnn79fzih31535ngfy6vca7-python3.9-brotli-1.0.9/lib:/nix/store/x5fq7hh601lnxnb02sspcdxii76mr44l-python3.9-pysocks-1.7.1/lib:/nix/store/31viy1z3rdnn9d9lqqfmri5c05ic6v7d-python3.9-chardet-4.0.0/lib:/nix/store/9niqk1y5cwhiarl3hjwzd4mmzbzmjrns-python3.9-brotlicffi-1.0.9.2/lib:/nix/store/sfgf0yf2r7d2sfmf2ckjlrirr0sqdr6f-python3.9-charset-normalizer-2.0.5/lib:/nix/store/3faxld42axgpcvcnn03l41s7xcwm3jh6-python3.9-docopt-0.6.2/lib:/nix/store/as3g1wmn9ra0r56fnm9lrf452am09jfq-python3.9-rsa-4.7.2/lib:/nix/store/v7c02mgjzn3xzf0hrkjrpcsv5dca662v-python3.9-pyasn1-0.4.8/lib:/nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2/lib:/nix/store/66i18zqy7yhh7vd1xlgv3527ndn074sn-python3.9-Flask-2.0.2/lib:/nix/store/i19h35dmia954lwd869labn6vfi84p4w-python3.9-asgiref-3.4.1/lib:/nix/store/fzq8nm7dwink4a5326yl8zpy8zkc7dvh-python3.9-async-timeout-4.0.1/lib:/nix/store/ip42ngvk94m1nig8x2r0w66312s4yyp6-python3.9-typing_extensions-3.10.0.2/lib:/nix/store/iph8i85nswwvgny1ii0v4jsqw1h5jsam-python3.9-python-dotenv-0.19.0/lib:/nix/store/3z6kn6khmrvcchmlaq1kf4dazn7xjfxd-python3.9-click-8.0.3/lib:/nix/store/h2llfysmswkh3swz1mpsp58hpmjv8fvd-python3.9-itsdangerous-2.0.1/lib:/nix/store/rjxbnz23hz80gqxqb2p98g7m2749s2x8-python3.9-Jinja2-3.0.2/lib:/nix/store/clkn2qivhdmpqad8kgy9n7cmdjaj65rn-python3.9-Babel-2.9.1/lib:/nix/store/mxmcvd2isfac8rhnx093jc3lnn6z5xkz-python3.9-pytz-2021.3/lib:/nix/store/625pmj7qqxbdh7gwqkmnf7q9nnimck6y-python3.9-markupsafe-2.0.1/lib:/nix/store/1gnl7sqrxs3q7sn9yp8zp8ix8kfvzb7d-python3.9-werkzeug-2.0.1/lib:/nix/store/zzwk42dacn005xx6g11wwg89pbwpq9qx-python3.9-watchdog-2.1.6/lib:/nix/store/p4kkqa7wcmpncdjfvsmp4dmy9rav8mr2-python3.9-pathtools-0.1.2/lib:/nix/store/xhdw13i108pbrkjjaip8i9bmsaz4avsm-python3.9-PyYAML-5.4.1.1/lib:/nix/store/5aizdcnnpkzrqdr8b1lw99nfva832jbl-python3.9-Markdown-3.3.4/lib:/nix/store/9f1h2hgl9xf2ljnvp7vxxjjr6p1zq1vi-python3.9-future-0.18.2/lib:/nix/store/8yb7igjx7vahlzflvrnrrm4h9szghpva-python3.9-numpy-1.21.2/lib:/nix/store/0gm6jccsnbj6xvam2ggywi2ai0ng9yww-python3.9-pyflakes-2.4.0/lib:/nix/store/9y2brn67pa2arhn12fsj2wng66qjg9xb-python3.9-poetry-1.1.11/lib:/nix/store/7xx4idsg66fr7psz5p74zd8lpgnzfh17-python3.9-cachecontrol-0.12.10/lib:/nix/store/6fhcx5qn91dy9mlzmsxn6wvd337wq4kq-python3.9-msgpack-1.0.2/lib:/nix/store/b70c92m7kbyzy1cv6a34wmin5f1dria8-python3.9-cachy-0.3.0/lib:/nix/store/6sjyh33fi6y1znliqhrpyd70jlcnwd6h-python3.9-memcached-1.51/lib:/nix/store/imb66q8q0blywi204aj9a94cssv3qplw-python3.9-cleo-0.8.1/lib:/nix/store/26l5iky1khwyqf0y14jk7cj59mbmkna5-python3.9-clikit-0.6.2/lib:/nix/store/aacf82kvm80rb6ihf3hqyh3xyw7lyy1j-python3.9-pylev-1.4.0/lib:/nix/store/7r1as141gjlakczflqpy21gf87lbn949-python3.9-pastel-0.2.1/lib:/nix/store/v3p68baa1dm1is6y2l4wmcqbsag8zkwf-python3.9-crashtest-0.3.1/lib:/nix/store/wdzbzvz6h36c44pfbnwr1y0v7iyqhfjf-python3.9-html5lib-1.1/lib:/nix/store/ag9b795lsvi7n5lys6zjpr03i5wy6cgq-python3.9-six-1.16.0/lib:/nix/store/2gcr7pyjjjy49qlx830n7lnkilyl0z2m-python3.9-webencodings-0.5.1/lib:/nix/store/dkyqwzh74r6q595pp80lgfac2kjdsg9s-python3.9-keyring-23.2.1/lib:/nix/store/ibm0m5g3zyls1j3xiw15r0fbla4c2dyl-python3.9-importlib-metadata-4.8.1/lib:/nix/store/cj79basd94v45pfljm25k4iydbc7k4w5-python3.9-toml-0.10.2/lib:/nix/store/b2zsbnj5a98xmivd7brwi2k9b12mr0ah-python3.9-zipp-3.6.0/lib:/nix/store/4ix029p6vzi2l6rm4krj8n8v7qk0rcr6-python3.9-more-itertools-8.10.0/lib:/nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/lib:/nix/store/f2c0yh6kas7fnpn7wsk3knwfn1zxl8bd-python3.9-dbus-python-1.2.18/lib:/nix/store/h8zp7rr2wdkb37ziy7k11d1assx5y77k-python3.9-jeepney-0.7.1/lib:/nix/store/f0kqrv0j1zm91fhrlzdx2dmchda0xd07-python3.9-secretstorage-3.3.1/lib:/nix/store/09a9xkhnfgpn6sfq2ryb3g81i0vikkkp-python3.9-packaging-20.9/lib:/nix/store/l466cxk1dkpn3jbx3wirraf8abfl183l-python3.9-pyparsing-2.4.7/lib:/nix/store/xf8caqay0z8rzqjb634nflk6n8qg53fg-python3.9-cryptography-3.4.8/lib:/nix/store/03fgr83n71l4y7crjwnhnqaxc3sagxq2-python3.9-lockfile-0.12.2/lib:/nix/store/i4lng637njy6j3v4jzxih7qpa0awb1vh-python3.9-pexpect-4.8.0/lib:/nix/store/7vmpgkb7m47bb4fmj2afc2vcyvhss2jc-python3.9-ptyprocess-0.7.0/lib:/nix/store/w4kbm54rn59xfz9xx0ah52m1dwb72g4k-python3.9-poetry-core-1.0.7/lib:/nix/store/g4n8akb5ym0byf0h4krifyrl30404d64-python3.9-requests-toolbelt-0.9.1/lib:/nix/store/s03z9yiifqc382gkgwjg2r973jirq4az-python3.9-shellingham-1.4.0/lib:/nix/store/76ivif2jnhqnjqwkp8r5vbazry8jfb09-python3.9-tomlkit-0.7.2/lib:/nix/store/mimck23nwdkc02dwinca338lqx6sldzs-python3.9-virtualenv-20.8.1/lib:/nix/store/yq5mx1yv9p78i69qcr8p7aj8jkb69p97-python3.9-backports-entry-points-selectable-1.1.0/lib:/nix/store/981d0ic0hqyv7wj4kpf5bc2vbcyvsag3-python3.9-distlib-0.3.3/lib:/nix/store/p9dp14lcqdd4bi0p3mxx2wxni4ds8pvp-python3.9-filelock-3.3.0/lib:/nix/store/iksib65203qxmb23qb2v3wdcnaw1x6p2-python3.9-platformdirs-2.4.0/lib:/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/lib:/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1/lib","NIX_GNUSTEP_SYSTEM_TOOLS":"/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/bin:/nix/store/435paza0j48aa9vgvf6r2l12nrg4ld11-patchelf-0.12/bin:/nix/store/4xs1xyj8728yvh9y5v6ji819kwgfy2fv-gcc-wrapper-10.3.0/bin:/nix/store/29bjq5hw1qglybp1a5f3ij9gxc2fyf94-binutils-wrapper-2.35.1/bin:/nix/store/w07a7k61dw5gnsyxj3kgcq3shr76jax8-bash-interactive-4.4-p23/bin:/nix/store/ybwx2lcdbzijs363yvwvzgaf3m8a2ymv-clang-7.1.0/bin:/nix/store/bryas24nk0pvj97z9clskhbmnq08jas9-clang-tools-13.0.0/bin:/nix/store/5p5g3gz0yvy5qxsdfy5j5vfsvszranrd-gdc-wrapper-9.3.0/bin:/nix/store/yq2v2g5285ib5nwl3r4rdnl417zpaf8y-binutils-wrapper-2.35.2/bin:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/bin:/nix/store/269dmm2q86a9w8ki7xhgaafwc050dalz-go-1.16.13/bin:/nix/store/xmd8y2723gc88c7m8c9z7q929f09ip0f-gopls-0.7.3/bin:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/bin:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/bin:/nix/store/qjlg429684wp4gid7pgy5gaysmax5i1r-luarocks-3.2.1/bin:/nix/store/n8a3n4yxg3fhny5jj6jgcd2z10p46gb1-zip-3.0/bin:/nix/store/n8cg7dhsy7k3kaxfidp6j881xk2w9vm9-unzip-6.0/bin:/nix/store/g9kjv17sa0afmbzkra15xr0s8wfqnwan-cmake-3.21.2/bin:/nix/store/aham8y9cgpslhmlmzd7khn2x591r28d1-luaformatter-1.3.6/bin:/nix/store/hb6492h1hz59xpvwmn40n2kl9zc5dkrm-x86_64-unknown-linux-gnu-nim-wrapper-1.6.0/bin:/nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16/bin:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/bin:/nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/bin:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/bin:/nix/store/5wm5nz9v823z0sf2ffs66dbwb1jsjcgl-deno-1.16.2/bin:/nix/store/8fm0kwh9bxkgix4vfrsi6qmnhkqi4g7v-flow-0.163.0/bin:/nix/store/1d59jsr0pv844slmpa23qqyh1gpcwc8b-haxe-4.2.1/bin:/nix/store/6b9g062ybb6ai4cr1dc0d48zfwxnac1v-libjpeg-turbo-2.1.2-bin/bin:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/bin:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/bin:/nix/store/dznkazjn5mk1ds47qmbsbkiampgsgg5j-apache-maven-3.8.3/bin:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/bin:/nix/store/hc3n2kpr77wwnyc71rxxyz3rvz83z7kn-rakudo-2021.10/bin:/nix/store/1nf6hhsg5n9xrbpimrsljccaz0bliyz6-zef-0.13.0/bin:/nix/store/nc26m6a92gdj3hbp2abr8mxfkafqlahb-openssl-1.1.1m-bin/bin:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/bin:/nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17/bin:/nix/store/fbwis6whxa1br0hkghazybdw82zgw0d2-ruby2.7.5-backport-1.2.0/bin:/nix/store/gbyvkn91940hdx82g6gp42j79c7i4wzg-ruby2.7.5-benchmark-0.2.0/bin:/nix/store/sgi7x6x1fxisi2ip5rclk7nw8nk4fcjf-ruby2.7.5-e2mmap-0.1.0/bin:/nix/store/w2z5cnlqqzm1j21jmavhnlgbbw7ipyvj-ruby2.7.5-jaro_winkler-1.5.4/bin:/nix/store/4hy6z43bpmfiws9y8yvgmml3g6jfm1xm-ruby2.7.5-maruku-0.7.3/bin:/nix/store/x4jz80q3d4f3cp13s532si2lz60wss7i-ruby2.7.5-nokogiri-1.12.5/bin:/nix/store/y6h6cdig3lfk5n49csf17axlh75ghnrq-ruby2.7.5-mini_portile2-2.6.1/bin:/nix/store/vvzj7mzdk9jqq2pncdajw9fj6cyfia6h-ruby2.7.5-racc-1.6.0/bin:/nix/store/lfj8hzj6s1k3v13jy3k68y2ac5vfrv90-ruby2.7.5-parser-2.7.2.0/bin:/nix/store/j235npnwgnrwkcyp3n4zxjxnal1xs74q-ruby2.7.5-ast-2.4.2/bin:/nix/store/cq4cmg3w1f81bbkzm2j9nhlv04cmbadz-ruby2.7.5-reverse_markdown-2.0.0/bin:/nix/store/a602vyp7smpvx06vcn30irqyw9y3k7kn-ruby2.7.5-rubocop-0.93.1/bin:/nix/store/cgfx7vralay25gs3kvva8hjr27qrsqpz-ruby2.7.5-parallel-1.21.0/bin:/nix/store/kg87shzh4n0b3lcwx68canb97pghqr26-ruby2.7.5-rainbow-3.0.0/bin:/nix/store/gq8wqxk8spgrhi56jf0nqlhjirpr9z0n-ruby2.7.5-regexp_parser-2.1.1/bin:/nix/store/fsb0f1g2knm8csyjcws09z1dbj9qr29f-ruby2.7.5-rexml-3.2.5/bin:/nix/store/8zafbb4qc50ixdz6wjiq0idxr56h2h1k-ruby2.7.5-rubocop-ast-1.4.1/bin:/nix/store/93jlw88wayhd52pskm8yaszpa78iscjx-ruby2.7.5-ruby-progressbar-1.11.0/bin:/nix/store/x12vvlgv0xry655f947h1xqhrwjxr2ci-ruby2.7.5-unicode-display_width-1.8.0/bin:/nix/store/7y294jq5z4dzd9lnb9y9rb3dhydblm4f-ruby2.7.5-thor-1.1.0/bin:/nix/store/jnbkh1l1c8m563g358kjqig5wjizk184-ruby2.7.5-tilt-2.0.10/bin:/nix/store/kd9p5chzgx301mw2v2c8l4yhxpdryc81-ruby2.7.5-yard-0.9.26/bin:/nix/store/dm61rb5h0r68qx0k8b2af21maqp0qw8s-rake-12.3.2/bin:/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/bin:/nix/store/bbi0p5r1madw22dasq4f7k12766lrdyx-cargo-1.56.1/bin:/nix/store/zxjd9h0n8lvbh3id43h9mixybyrxacn6-rls-1.56.1/bin:/nix/store/lrdgwnlx5q0kvc1z348kcmd5kw6i1kmz-rust-analyzer-2021-10-25/bin:/nix/store/sk0wjzyy2zz1iqfr09pp7xdyqn57xspx-rustfmt-1.56.1/bin:/nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9/bin:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/bin:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/bin:/nix/store/5jqn3765handgf77963h4ahvj05pb9yc-gnum4-1.4.19/bin:/nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3/bin:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/bin:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/bin:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/bin:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/bin:/nix/store/91mj2apzv1d88m7lbibfynz36r5ay2xi-opam-2.1.1/bin:/nix/store/xcvqvznijycw3qpbdqyrpm5shmdvc3zg-quill-0.2.7/bin:/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/bin:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2/bin:/nix/store/a7xm3ac93qa42czr8h8sbbgfm8asijqy-scala-2.13.7/bin:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/bin:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/bin:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/bin:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/bin:/nix/store/knfjcxaakk1m609s1vcfbbq1mahz4m6y-elixir-1.12.3/bin:/nix/store/8hqpcha8jkaswfshymm9j66lmhjwzkx7-erlang-24.1.6/bin:/nix/store/3na2psghzhfym3bhpcnvx9ccnkcxbp7p-fsharp-4.0.1.1/bin:/nix/store/sazxbppq9h2yp0prgza70h394brg8v6h-kotlin-1.6.10/bin:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/bin:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/bin:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/bin:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/bin:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/bin:/nix/store/fx4hd2dfdwqjhkhxl8zhc832vsfs4qqv-fontconfig-2.13.94-bin/bin:/nix/store/988swrxxc98psfj02piir4jd62q52g5p-sqlite-3.36.0-bin/bin:/nix/store/6ciph11c6ijykbrrqm8s8w337lvq2n1y-sqldiff-3.36.0/bin:/nix/store/bhgs6fvf8ccv09jcr2c2qvs1dfkp0bzs-clojure-1.10.3.1029/bin:/nix/store/h456b8a4db9z7d9bwg2cpa7y09nfxfcc-crystal-1.2.2/bin:/nix/store/4xlpd83d5xzzdfhpcwlciv5qgc2dp0cw-crystal-1.2.2-bin/bin:/nix/store/n1hdar0mlvqf08n58dhssxlq7lry8i8l-gfortran-wrapper-9.3.0/bin:/nix/store/9s04g387vdwd8b3gnrhaxm9g2vyxv1i3-ghc-8.10.7/bin:/nix/store/2qwnn6lizc9d119kp3zig3q19gbfm4n6-gcc-wrapper-10.3.0/bin:/nix/store/spm7d6ncyx2k5w8yl6clzynv2s4wf1kp-binutils-wrapper-2.35.2/bin:/nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1/bin:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/bin:/nix/store/3xcbipxg7dacja7arkqsdp31wv48a59b-python3.9-pip-21.1.3/bin:/nix/store/pspa13lvr8ahgpq4ksbz6kmagwvrlklm-nasm-2.15.05/bin:/nix/store/q1sbanxnbyr0wiy1bykyis30p6w7gx6l-powershell-7.2.1/bin:/nix/store/np5bfcinkp3hzn3qfqn9nilww1hwfiwa-gnustep-make-2.9.0/bin:/nix/store/xn46q2dzx9wgk73bqahrqlajm2xi3n4k-autoconf-2.71/bin:/nix/store/8rlh3867b4a6ni7i0y7m03nlxsqp2n53-xrandr-1.5.1/bin:/nix/store/x01wvmyaxlxjx7bwn9bws406fvh1hrdd-libtiff-4.3.0-bin/bin:/nix/store/gqqjs85gi9f95b8inzyd7rlw04ag9yjr-gnutls-3.7.2-bin/bin:/nix/store/cxgg4y1rjahlmldz0s7g2r8gf1wird0q-libxml2-2.9.12-bin/bin:/nix/store/b82qwylvdj9a7a3is2ayhqbynyqm4hy7-wasmer-2.0.0/bin:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/bin:/nix/store/4ng5csanrxg24ilfl5jsxvq35p2imwl2-lldb-13.0.0/bin:/nix/store/7qjyyqv9sqgk1lkzpgf1ymmcx6zzix0p-pkg-config-wrapper-0.29.2/bin:/nix/store/1fjl7hvf44a9898dbbl18qn2fc6ks1gn-jq-1.6-bin/bin:/nix/store/63g9gyn4dzgrrxsmsx0dnzhkvr7974ap-wget-1.21.2/bin:/nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1/bin:/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/bin:/nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3/bin:/nix/store/p9w19nz2h9vyi1kqk4zqpq7yjbx203yx-rsync-3.2.3/bin:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27/bin:/nix/store/6m8k6drrfqg53x2ighzwglwfnqmairhb-vim-8.2.4186/bin:/nix/store/z0b6n2bqlssqwd9va76mb8flcwwzywc9-chromium-98.0.4758.102/bin:/nix/store/7dxw3xc88p966h3wwv0pbd9l7xhpqw0c-chromedriver-98.0.4758.102/bin:/nix/store/vnif60hvggpxsqvhy4gsz1ns6yzvcsaa-firefox-97.0.1/bin:/nix/store/2dmnavykp51yar8lxa70bc1j2ybilvr2-geckodriver-0.29.1/bin:/nix/store/mh92dy3il7cxsr4q7bgwlxwa9b3jn9fi-rlwrap-0.45.2/bin:/nix/store/n9yardzv65xw6rwljb42pk0j84xc8dah-valgrind-3.18.1/bin:/nix/store/cd3dyp7mzr16lnwcgx38mfr9pklmx0z4-busybox-1.34.1/bin:/nix/store/vx9mfr60cspvkzi0hzmx5gv8gcvw5l7a-dirmngr-1.1.1/bin:/nix/store/wpmyxzixp0cpjbiygfxnss9hysw2v81f-gnuplot-5.4.2/bin:/nix/store/c1mwvirvw6skp7i25dbcw28nxhakcalv-mesa-demos-8.4.0/bin:/nix/store/aahsfn5my92mmnlyz90bi6a734b126yc-openssh-8.8p1/bin:/nix/store/ry5dwl9qbzs7hfqhprm8pydqsw3b8g3g-rdbtools-0.1.15/bin:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/bin:/nix/store/d7zafpwbh6ia3ywyh3gpp3219bm6q8l7-ffmpeg-4.4.1-bin/bin:/nix/store/rqsfnrkg269xz73hnpcdn048xlsh95g5-lsb_release/bin:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/bin:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/bin:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/bin:/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/bin:/nix/store/arg6pz7f93hhfrl7hbc9d12a4w8h2bpg-python3.9-pkginfo-1.8.1/bin:/nix/store/6zplaxkxxxdvw9ns73bqlhihs5ln54gm-pipreqs-0.4.11/bin:/nix/store/31viy1z3rdnn9d9lqqfmri5c05ic6v7d-python3.9-chardet-4.0.0/bin:/nix/store/sfgf0yf2r7d2sfmf2ckjlrirr0sqdr6f-python3.9-charset-normalizer-2.0.5/bin:/nix/store/as3g1wmn9ra0r56fnm9lrf452am09jfq-python3.9-rsa-4.7.2/bin:/nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2/bin:/nix/store/66i18zqy7yhh7vd1xlgv3527ndn074sn-python3.9-Flask-2.0.2/bin:/nix/store/iph8i85nswwvgny1ii0v4jsqw1h5jsam-python3.9-python-dotenv-0.19.0/bin:/nix/store/clkn2qivhdmpqad8kgy9n7cmdjaj65rn-python3.9-Babel-2.9.1/bin:/nix/store/zzwk42dacn005xx6g11wwg89pbwpq9qx-python3.9-watchdog-2.1.6/bin:/nix/store/5aizdcnnpkzrqdr8b1lw99nfva832jbl-python3.9-Markdown-3.3.4/bin:/nix/store/9f1h2hgl9xf2ljnvp7vxxjjr6p1zq1vi-python3.9-future-0.18.2/bin:/nix/store/8yb7igjx7vahlzflvrnrrm4h9szghpva-python3.9-numpy-1.21.2/bin:/nix/store/0gm6jccsnbj6xvam2ggywi2ai0ng9yww-python3.9-pyflakes-2.4.0/bin:/nix/store/9y2brn67pa2arhn12fsj2wng66qjg9xb-python3.9-poetry-1.1.11/bin:/nix/store/7xx4idsg66fr7psz5p74zd8lpgnzfh17-python3.9-cachecontrol-0.12.10/bin:/nix/store/dkyqwzh74r6q595pp80lgfac2kjdsg9s-python3.9-keyring-23.2.1/bin:/nix/store/mimck23nwdkc02dwinca338lqx6sldzs-python3.9-virtualenv-20.8.1/bin:/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/bin","NIX_HARDENING_ENABLE":"fortify stackprotector pic strictoverflow format relro bindnow","NIX_INDENT_MAKE":"1","NIX_LDFLAGS":"-rpath /nix/store/53hvrnl35pmz1x3h6bivwmpslngykf1d-nix-shell/lib64 -rpath /nix/store/53hvrnl35pmz1x3h6bivwmpslngykf1d-nix-shell/lib -L/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib -L/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/lib -L/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/lib -L/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib -L/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib -L/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib -L/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/lib -L/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37/lib -L/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7/lib -L/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib -L/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14/lib -L/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/lib -L/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib -L/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib -L/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/lib -L/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/lib -L/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib/lib -L/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2/lib -L/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/lib -L/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/lib -L/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib -L/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12/lib -L/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib -L/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4/lib -L/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4/lib -L/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib -L/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib -L/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib -L/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0/lib -L/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib -L/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib -L/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib -L/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/lib -L/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/lib -L/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/lib -L/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15/lib -L/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib -L/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib -L/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib -L/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/lib -L/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/lib -L/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib -L/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/lib -L/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2/lib -L/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/lib -L/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1/lib -L/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1/lib -L/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/lib -L/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/lib -L/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0/lib -L/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1/lib -L/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib -L/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/lib -L/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib -L/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib -L/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/lib -L/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2/lib -L/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/lib -L/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/lib -L/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1/lib -L/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib -L/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/lib -L/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/lib -L/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib -L/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib -L/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib -L/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/lib -L/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37/lib -L/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7/lib -L/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib -L/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14/lib -L/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/lib -L/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib -L/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib -L/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/lib -L/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/lib -L/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib/lib -L/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2/lib -L/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/lib -L/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/lib -L/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib -L/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12/lib -L/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib -L/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4/lib -L/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4/lib -L/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib -L/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib -L/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib -L/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0/lib -L/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib -L/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib -L/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib -L/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/lib -L/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/lib -L/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/lib -L/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15/lib -L/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib -L/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib -L/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib -L/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/lib -L/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/lib -L/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib -L/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/lib -L/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2/lib -L/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/lib -L/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1/lib -L/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1/lib -L/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/lib -L/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/lib -L/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0/lib -L/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1/lib -L/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib -L/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/lib -L/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib -L/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib -L/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/lib -L/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2/lib -L/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/lib -L/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/lib -L/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1/lib","NIX_LDFLAGS_FOR_TARGET":" -L/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib -L/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib -L/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/lib -L/nix/store/p54p1kb7iinbg1135ibcfqbyh6j4x986-zlib-1.2.11/lib -L/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/lib -L/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/lib -L/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib -L/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib -L/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib -L/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib -L/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib -L/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib -L/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/lib -L/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/lib -L/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37/lib -L/nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37/lib -L/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7/lib -L/nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7/lib -L/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib -L/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib -L/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14/lib -L/nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14/lib -L/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/lib -L/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/lib -L/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib -L/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib -L/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib -L/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib -L/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/lib -L/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/lib -L/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/lib -L/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/lib -L/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib/lib -L/nix/store/h870m8b140ydfm0z9cq255i44lfkxdrh-libtool-2.4.6-lib/lib -L/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2/lib -L/nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2/lib -L/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/lib -L/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/lib -L/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/lib -L/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/lib -L/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib -L/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib -L/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12/lib -L/nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12/lib -L/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib -L/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib -L/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4/lib -L/nix/store/1imqkzgy63haif5vrdsg3i8gmqm9f9kk-libGL-1.3.4/lib -L/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4/lib -L/nix/store/i4rmd8dk8xmpmblkl78pw8iim9byj6yi-libglvnd-1.3.4/lib -L/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib -L/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib -L/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib -L/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib -L/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib -L/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib -L/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0/lib -L/nix/store/slvw54x6kppx1f35vfx5qb3qgca63ljn-libgcc-10.3.0/lib -L/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib -L/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib -L/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib -L/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib -L/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib -L/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib -L/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/lib -L/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/lib -L/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/lib -L/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/lib -L/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/lib -L/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/lib -L/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15/lib -L/nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15/lib -L/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib -L/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib -L/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib -L/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib -L/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib -L/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib -L/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/lib -L/nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234/lib -L/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/lib -L/nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0/lib -L/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib -L/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib -L/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/lib -L/nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9/lib -L/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2/lib -L/nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2/lib -L/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/lib -L/nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24/lib -L/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1/lib -L/nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1/lib -L/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1/lib -L/nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1/lib -L/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/lib -L/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/lib -L/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/lib -L/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/lib -L/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0/lib -L/nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0/lib -L/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1/lib -L/nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1/lib -L/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib -L/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib -L/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/lib -L/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/lib -L/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib -L/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib -L/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib -L/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib -L/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/lib -L/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/lib -L/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2/lib -L/nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2/lib -L/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/lib -L/nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2/lib -L/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/lib -L/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/lib -L/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1/lib -L/nix/store/vd7cv0w7vd6j63jb6y08px766qz1r30m-gmp-6.2.1/lib","NIX_PKG_CONFIG_WRAPPER_TARGET_TARGET_x86_64_unknown_linux_gnu":"1","NIX_STORE":"/nix/store","NM":"nm","NM_FOR_TARGET":"nm","NODE_PATH":"/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/lib/node_modules","OBJCOPY":"objcopy","OBJCOPY_FOR_TARGET":"objcopy","OBJDUMP":"objdump","OBJDUMP_FOR_TARGET":"objdump","PATH":"/nix/store/w07a7k61dw5gnsyxj3kgcq3shr76jax8-bash-interactive-4.4-p23/bin:/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/bin:/nix/store/435paza0j48aa9vgvf6r2l12nrg4ld11-patchelf-0.12/bin:/nix/store/4xs1xyj8728yvh9y5v6ji819kwgfy2fv-gcc-wrapper-10.3.0/bin:/nix/store/dlni53myj53kx20pi4yhm7p68lw17b07-gcc-10.3.0/bin:/nix/store/6z35qvn00xrjvaznv9kfy8xddbbdz4gl-glibc-2.33-47-bin/bin:/nix/store/1570w56jrkvr90w9x158vyb5vahnk18v-coreutils-8.32/bin:/nix/store/29bjq5hw1qglybp1a5f3ij9gxc2fyf94-binutils-wrapper-2.35.1/bin:/nix/store/v8imx1nvyz0hgvx9cbcmh6gp4ngw3ffj-binutils-2.35.1/bin:/nix/store/w07a7k61dw5gnsyxj3kgcq3shr76jax8-bash-interactive-4.4-p23/bin:/nix/store/ybwx2lcdbzijs363yvwvzgaf3m8a2ymv-clang-7.1.0/bin:/nix/store/bryas24nk0pvj97z9clskhbmnq08jas9-clang-tools-13.0.0/bin:/nix/store/5p5g3gz0yvy5qxsdfy5j5vfsvszranrd-gdc-wrapper-9.3.0/bin:/nix/store/yq2v2g5285ib5nwl3r4rdnl417zpaf8y-binutils-wrapper-2.35.2/bin:/nix/store/h19zwlkrp6b0hp3ypbqdcggnyarn3af6-binutils-2.35.2/bin:/nix/store/csz8v8xi2f644j26n84i20dnqmq43sih-glibc-2.33-117-bin/bin:/nix/store/jd1y449cf66yx5d1hwyjvc4562b1p1am-coreutils-9.0/bin:/nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1/bin:/nix/store/269dmm2q86a9w8ki7xhgaafwc050dalz-go-1.16.13/bin:/nix/store/xmd8y2723gc88c7m8c9z7q929f09ip0f-gopls-0.7.3/bin:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/bin:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/bin:/nix/store/qjlg429684wp4gid7pgy5gaysmax5i1r-luarocks-3.2.1/bin:/nix/store/n8a3n4yxg3fhny5jj6jgcd2z10p46gb1-zip-3.0/bin:/nix/store/n8cg7dhsy7k3kaxfidp6j881xk2w9vm9-unzip-6.0/bin:/nix/store/g9kjv17sa0afmbzkra15xr0s8wfqnwan-cmake-3.21.2/bin:/nix/store/aham8y9cgpslhmlmzd7khn2x591r28d1-luaformatter-1.3.6/bin:/nix/store/hb6492h1hz59xpvwmn40n2kl9zc5dkrm-x86_64-unknown-linux-gnu-nim-wrapper-1.6.0/bin:/nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16/bin:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/bin:/nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/bin:/nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3/bin:/nix/store/5wm5nz9v823z0sf2ffs66dbwb1jsjcgl-deno-1.16.2/bin:/nix/store/8fm0kwh9bxkgix4vfrsi6qmnhkqi4g7v-flow-0.163.0/bin:/nix/store/1d59jsr0pv844slmpa23qqyh1gpcwc8b-haxe-4.2.1/bin:/nix/store/6b9g062ybb6ai4cr1dc0d48zfwxnac1v-libjpeg-turbo-2.1.2-bin/bin:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/bin:/nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0/bin:/nix/store/dznkazjn5mk1ds47qmbsbkiampgsgg5j-apache-maven-3.8.3/bin:/nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7/bin:/nix/store/hc3n2kpr77wwnyc71rxxyz3rvz83z7kn-rakudo-2021.10/bin:/nix/store/1nf6hhsg5n9xrbpimrsljccaz0bliyz6-zef-0.13.0/bin:/nix/store/nc26m6a92gdj3hbp2abr8mxfkafqlahb-openssl-1.1.1m-bin/bin:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/bin:/nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17/bin:/nix/store/fbwis6whxa1br0hkghazybdw82zgw0d2-ruby2.7.5-backport-1.2.0/bin:/nix/store/gbyvkn91940hdx82g6gp42j79c7i4wzg-ruby2.7.5-benchmark-0.2.0/bin:/nix/store/sgi7x6x1fxisi2ip5rclk7nw8nk4fcjf-ruby2.7.5-e2mmap-0.1.0/bin:/nix/store/w2z5cnlqqzm1j21jmavhnlgbbw7ipyvj-ruby2.7.5-jaro_winkler-1.5.4/bin:/nix/store/4hy6z43bpmfiws9y8yvgmml3g6jfm1xm-ruby2.7.5-maruku-0.7.3/bin:/nix/store/x4jz80q3d4f3cp13s532si2lz60wss7i-ruby2.7.5-nokogiri-1.12.5/bin:/nix/store/y6h6cdig3lfk5n49csf17axlh75ghnrq-ruby2.7.5-mini_portile2-2.6.1/bin:/nix/store/vvzj7mzdk9jqq2pncdajw9fj6cyfia6h-ruby2.7.5-racc-1.6.0/bin:/nix/store/lfj8hzj6s1k3v13jy3k68y2ac5vfrv90-ruby2.7.5-parser-2.7.2.0/bin:/nix/store/j235npnwgnrwkcyp3n4zxjxnal1xs74q-ruby2.7.5-ast-2.4.2/bin:/nix/store/cq4cmg3w1f81bbkzm2j9nhlv04cmbadz-ruby2.7.5-reverse_markdown-2.0.0/bin:/nix/store/a602vyp7smpvx06vcn30irqyw9y3k7kn-ruby2.7.5-rubocop-0.93.1/bin:/nix/store/cgfx7vralay25gs3kvva8hjr27qrsqpz-ruby2.7.5-parallel-1.21.0/bin:/nix/store/kg87shzh4n0b3lcwx68canb97pghqr26-ruby2.7.5-rainbow-3.0.0/bin:/nix/store/gq8wqxk8spgrhi56jf0nqlhjirpr9z0n-ruby2.7.5-regexp_parser-2.1.1/bin:/nix/store/fsb0f1g2knm8csyjcws09z1dbj9qr29f-ruby2.7.5-rexml-3.2.5/bin:/nix/store/8zafbb4qc50ixdz6wjiq0idxr56h2h1k-ruby2.7.5-rubocop-ast-1.4.1/bin:/nix/store/93jlw88wayhd52pskm8yaszpa78iscjx-ruby2.7.5-ruby-progressbar-1.11.0/bin:/nix/store/x12vvlgv0xry655f947h1xqhrwjxr2ci-ruby2.7.5-unicode-display_width-1.8.0/bin:/nix/store/7y294jq5z4dzd9lnb9y9rb3dhydblm4f-ruby2.7.5-thor-1.1.0/bin:/nix/store/jnbkh1l1c8m563g358kjqig5wjizk184-ruby2.7.5-tilt-2.0.10/bin:/nix/store/kd9p5chzgx301mw2v2c8l4yhxpdryc81-ruby2.7.5-yard-0.9.26/bin:/nix/store/dm61rb5h0r68qx0k8b2af21maqp0qw8s-rake-12.3.2/bin:/nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1/bin:/nix/store/bbi0p5r1madw22dasq4f7k12766lrdyx-cargo-1.56.1/bin:/nix/store/zxjd9h0n8lvbh3id43h9mixybyrxacn6-rls-1.56.1/bin:/nix/store/lrdgwnlx5q0kvc1z348kcmd5kw6i1kmz-rust-analyzer-2021-10-25/bin:/nix/store/sk0wjzyy2zz1iqfr09pp7xdyqn57xspx-rustfmt-1.56.1/bin:/nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9/bin:/nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5/bin:/nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6/bin:/nix/store/5jqn3765handgf77963h4ahvj05pb9yc-gnum4-1.4.19/bin:/nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3/bin:/nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3/bin:/nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7/bin:/nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3/bin:/nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0/bin:/nix/store/91mj2apzv1d88m7lbibfynz36r5ay2xi-opam-2.1.1/bin:/nix/store/xcvqvznijycw3qpbdqyrpm5shmdvc3zg-quill-0.2.7/bin:/nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/bin:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2/bin:/nix/store/a7xm3ac93qa42czr8h8sbbgfm8asijqy-scala-2.13.7/bin:/nix/store/1bnimz1lbwi5n5pfd4j4f4gg0lw59jf0-openjdk-8u272-b10/bin:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/bin:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/bin:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/bin:/nix/store/knfjcxaakk1m609s1vcfbbq1mahz4m6y-elixir-1.12.3/bin:/nix/store/8hqpcha8jkaswfshymm9j66lmhjwzkx7-erlang-24.1.6/bin:/nix/store/3na2psghzhfym3bhpcnvx9ccnkcxbp7p-fsharp-4.0.1.1/bin:/nix/store/sazxbppq9h2yp0prgza70h394brg8v6h-kotlin-1.6.10/bin:/nix/store/liziz11l6wjw4vrl45ad2255ak0n2cd8-openjdk-17.0.1+12/bin:/nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2/bin:/nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9/bin:/nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0/bin:/nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0/bin:/nix/store/fx4hd2dfdwqjhkhxl8zhc832vsfs4qqv-fontconfig-2.13.94-bin/bin:/nix/store/988swrxxc98psfj02piir4jd62q52g5p-sqlite-3.36.0-bin/bin:/nix/store/6ciph11c6ijykbrrqm8s8w337lvq2n1y-sqldiff-3.36.0/bin:/nix/store/bhgs6fvf8ccv09jcr2c2qvs1dfkp0bzs-clojure-1.10.3.1029/bin:/nix/store/h456b8a4db9z7d9bwg2cpa7y09nfxfcc-crystal-1.2.2/bin:/nix/store/4xlpd83d5xzzdfhpcwlciv5qgc2dp0cw-crystal-1.2.2-bin/bin:/nix/store/n1hdar0mlvqf08n58dhssxlq7lry8i8l-gfortran-wrapper-9.3.0/bin:/nix/store/9s04g387vdwd8b3gnrhaxm9g2vyxv1i3-ghc-8.10.7/bin:/nix/store/2qwnn6lizc9d119kp3zig3q19gbfm4n6-gcc-wrapper-10.3.0/bin:/nix/store/6r5h4h7nqx73m87j5b9sjwy2x9kyri0k-gcc-10.3.0/bin:/nix/store/spm7d6ncyx2k5w8yl6clzynv2s4wf1kp-binutils-wrapper-2.35.2/bin:/nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1/bin:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/bin:/nix/store/3xcbipxg7dacja7arkqsdp31wv48a59b-python3.9-pip-21.1.3/bin:/nix/store/pspa13lvr8ahgpq4ksbz6kmagwvrlklm-nasm-2.15.05/bin:/nix/store/q1sbanxnbyr0wiy1bykyis30p6w7gx6l-powershell-7.2.1/bin:/nix/store/np5bfcinkp3hzn3qfqn9nilww1hwfiwa-gnustep-make-2.9.0/bin:/nix/store/xn46q2dzx9wgk73bqahrqlajm2xi3n4k-autoconf-2.71/bin:/nix/store/8rlh3867b4a6ni7i0y7m03nlxsqp2n53-xrandr-1.5.1/bin:/nix/store/x01wvmyaxlxjx7bwn9bws406fvh1hrdd-libtiff-4.3.0-bin/bin:/nix/store/gqqjs85gi9f95b8inzyd7rlw04ag9yjr-gnutls-3.7.2-bin/bin:/nix/store/cxgg4y1rjahlmldz0s7g2r8gf1wird0q-libxml2-2.9.12-bin/bin:/nix/store/b82qwylvdj9a7a3is2ayhqbynyqm4hy7-wasmer-2.0.0/bin:/nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24/bin:/nix/store/4ng5csanrxg24ilfl5jsxvq35p2imwl2-lldb-13.0.0/bin:/nix/store/7qjyyqv9sqgk1lkzpgf1ymmcx6zzix0p-pkg-config-wrapper-0.29.2/bin:/nix/store/1fjl7hvf44a9898dbbl18qn2fc6ks1gn-jq-1.6-bin/bin:/nix/store/63g9gyn4dzgrrxsmsx0dnzhkvr7974ap-wget-1.21.2/bin:/nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1/bin:/nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1/bin:/nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3/bin:/nix/store/p9w19nz2h9vyi1kqk4zqpq7yjbx203yx-rsync-3.2.3/bin:/nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27/bin:/nix/store/6m8k6drrfqg53x2ighzwglwfnqmairhb-vim-8.2.4186/bin:/nix/store/z0b6n2bqlssqwd9va76mb8flcwwzywc9-chromium-98.0.4758.102/bin:/nix/store/7dxw3xc88p966h3wwv0pbd9l7xhpqw0c-chromedriver-98.0.4758.102/bin:/nix/store/vnif60hvggpxsqvhy4gsz1ns6yzvcsaa-firefox-97.0.1/bin:/nix/store/2dmnavykp51yar8lxa70bc1j2ybilvr2-geckodriver-0.29.1/bin:/nix/store/mh92dy3il7cxsr4q7bgwlxwa9b3jn9fi-rlwrap-0.45.2/bin:/nix/store/n9yardzv65xw6rwljb42pk0j84xc8dah-valgrind-3.18.1/bin:/nix/store/cd3dyp7mzr16lnwcgx38mfr9pklmx0z4-busybox-1.34.1/bin:/nix/store/vx9mfr60cspvkzi0hzmx5gv8gcvw5l7a-dirmngr-1.1.1/bin:/nix/store/wpmyxzixp0cpjbiygfxnss9hysw2v81f-gnuplot-5.4.2/bin:/nix/store/c1mwvirvw6skp7i25dbcw28nxhakcalv-mesa-demos-8.4.0/bin:/nix/store/aahsfn5my92mmnlyz90bi6a734b126yc-openssh-8.8p1/bin:/nix/store/ry5dwl9qbzs7hfqhprm8pydqsw3b8g3g-rdbtools-0.1.15/bin:/nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2/bin:/nix/store/d7zafpwbh6ia3ywyh3gpp3219bm6q8l7-ffmpeg-4.4.1-bin/bin:/nix/store/rqsfnrkg269xz73hnpcdn048xlsh95g5-lsb_release/bin:/nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2/bin:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/bin:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/bin:/nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33/bin:/nix/store/arg6pz7f93hhfrl7hbc9d12a4w8h2bpg-python3.9-pkginfo-1.8.1/bin:/nix/store/6zplaxkxxxdvw9ns73bqlhihs5ln54gm-pipreqs-0.4.11/bin:/nix/store/31viy1z3rdnn9d9lqqfmri5c05ic6v7d-python3.9-chardet-4.0.0/bin:/nix/store/sfgf0yf2r7d2sfmf2ckjlrirr0sqdr6f-python3.9-charset-normalizer-2.0.5/bin:/nix/store/as3g1wmn9ra0r56fnm9lrf452am09jfq-python3.9-rsa-4.7.2/bin:/nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2/bin:/nix/store/66i18zqy7yhh7vd1xlgv3527ndn074sn-python3.9-Flask-2.0.2/bin:/nix/store/iph8i85nswwvgny1ii0v4jsqw1h5jsam-python3.9-python-dotenv-0.19.0/bin:/nix/store/clkn2qivhdmpqad8kgy9n7cmdjaj65rn-python3.9-Babel-2.9.1/bin:/nix/store/zzwk42dacn005xx6g11wwg89pbwpq9qx-python3.9-watchdog-2.1.6/bin:/nix/store/5aizdcnnpkzrqdr8b1lw99nfva832jbl-python3.9-Markdown-3.3.4/bin:/nix/store/9f1h2hgl9xf2ljnvp7vxxjjr6p1zq1vi-python3.9-future-0.18.2/bin:/nix/store/8yb7igjx7vahlzflvrnrrm4h9szghpva-python3.9-numpy-1.21.2/bin:/nix/store/0gm6jccsnbj6xvam2ggywi2ai0ng9yww-python3.9-pyflakes-2.4.0/bin:/nix/store/9y2brn67pa2arhn12fsj2wng66qjg9xb-python3.9-poetry-1.1.11/bin:/nix/store/7xx4idsg66fr7psz5p74zd8lpgnzfh17-python3.9-cachecontrol-0.12.10/bin:/nix/store/dkyqwzh74r6q595pp80lgfac2kjdsg9s-python3.9-keyring-23.2.1/bin:/nix/store/mimck23nwdkc02dwinca338lqx6sldzs-python3.9-virtualenv-20.8.1/bin:/nix/store/wgp4l0jl7hm510x5615qsv4xikybzqb3-ncurses-6.2/bin:/nix/store/1570w56jrkvr90w9x158vyb5vahnk18v-coreutils-8.32/bin:/nix/store/ihxk2vlm0vi7c4j3gpm084kbxvz6v585-findutils-4.8.0/bin:/nix/store/kjx1mv85c5cgsrr4bwar22j7hbwj834m-diffutils-3.7/bin:/nix/store/gm2w08wwsa3vd500d8vq879s2lv65ldh-gnused-4.8/bin:/nix/store/v0slhpb2y3xa7gmv4q6gblkdk7n0f09j-gnugrep-3.6/bin:/nix/store/2wn093wbc6ps4brcsppxjd14vxvaa8a2-gawk-5.1.0/bin:/nix/store/5bxrjkyvqmzn1p897652y3lwa9fxagpw-gnutar-1.34/bin:/nix/store/liva1jnjdskrn57s42kfawr2zz66szzm-gzip-1.10/bin:/nix/store/ih2zkh2mbrx2c766ryk2i9hhlkly7snr-bzip2-1.0.6.0.2-bin/bin:/nix/store/pvkiiw0mp1yx0b21b7k105yywccychgh-gnumake-4.3/bin:/nix/store/dpjnjrqbgbm8a5wvi1hya01vd8wyvsq4-bash-4.4-p23/bin:/nix/store/aicl3kwfnaizk45aygm8bviqv7lk0a16-patch-2.7.6/bin:/nix/store/7jk6k46f56rszzc1bxi8mdrvcw53pym4-xz-5.2.5-bin/bin","PKG_CONFIG_FOR_TARGET":"pkg-config","PKG_CONFIG_PATH_FOR_TARGET":"/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib/pkgconfig:/nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev/lib/pkgconfig:/nix/store/9r1ypzrrqvb017dzr5pnzml0c2nnnq6j-zlib-1.2.11-dev/lib/pkgconfig:/nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4/lib/pkgconfig:/nix/store/n41dmbw6n0knw44lar6ljxizsq03n2g9-lua-5.2.4/lib/pkgconfig:/nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11/lib/pkgconfig:/nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1/lib/pkgconfig:/nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0/lib/pkgconfig:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib/pkgconfig:/nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4/lib/pkgconfig:/nix/store/2ci7di8iqxh1j5x9z78h9gjfgwis41nm-libGL-1.3.4-dev/lib/pkgconfig:/nix/store/d1q8k4ranmk4rq5mzlrpmji07p4yflb8-libglvnd-1.3.4-dev/lib/pkgconfig:/nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406/lib/pkgconfig:/nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5/lib/pkgconfig:/nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2/lib/pkgconfig:/nix/store/f7c6ifnn3c7493prmb91i9clpgv5ha78-libgit2-1.3.0/lib/pkgconfig:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib/pkgconfig:/nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122/lib/pkgconfig:/nix/store/3na2psghzhfym3bhpcnvx9ccnkcxbp7p-fsharp-4.0.1.1/lib/pkgconfig:/nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12/lib/pkgconfig:/nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12/lib/pkgconfig:/nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11/lib/pkgconfig:/nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18/lib/pkgconfig:/nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12/lib/pkgconfig:/nix/store/kk0b4md2x3sg00r5wmihwmjq4bqdcgsc-libopus-1.3.1-dev/lib/pkgconfig:/nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9/lib/pkgconfig:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/lib/pkgconfig:/nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10/share/pkgconfig:/nix/store/w3s4inj392sn2m2783n8268l7fpr1zhd-python3.9-dbus-python-1.2.18-dev/lib/pkgconfig","PYTHONHASHSEED":"0","PYTHONNOUSERSITE":"1","PYTHONPATH":"/nix/store/0hgwshx1mb9v68rm1jrxclvww6hlqcrw-python3.9-pycparser-2.20/lib/python3.9/site-packages:/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/lib/python3.9/site-packages:/nix/store/py7c0mw8dgz9m00nsliglsbw5ns0f0pf-python3.9-cffi-1.14.6/lib/python3.9/site-packages:/nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2/lib/python3.9/site-packages:/nix/store/qmii8s79bsg8r9mkif7jvymzcckffvxd-python3-3.9.6-env/lib/python3.9/site-packages:/nix/store/3xcbipxg7dacja7arkqsdp31wv48a59b-python3.9-pip-21.1.3/lib/python3.9/site-packages:/nix/store/4ng5csanrxg24ilfl5jsxvq35p2imwl2-lldb-13.0.0/lib/python3.9/site-packages:/nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3/lib/python3.9/site-packages:/nix/store/zk5cpqxxmgj1qbzqsz54a65yiq60czki-python3.9-fb-re2-1.0.7/lib/python3.9/site-packages:/nix/store/ry5dwl9qbzs7hfqhprm8pydqsw3b8g3g-rdbtools-0.1.15/lib/python3.9/site-packages:/nix/store/gqgjs7dark600synhqhlm55xpx6gn7p8-python3.9-redis-3.5.3/lib/python3.9/site-packages:/nix/store/hsvcn16slsic2shjf6ms6d4fk2rrzzdk-python3.9-python-lzf-0.2.4/lib/python3.9/site-packages:/nix/store/arg6pz7f93hhfrl7hbc9d12a4w8h2bpg-python3.9-pkginfo-1.8.1/lib/python3.9/site-packages:/nix/store/6zplaxkxxxdvw9ns73bqlhihs5ln54gm-pipreqs-0.4.11/lib/python3.9/site-packages:/nix/store/kacyc7v4f5qj91hxrf4b98ij5dxz7xxb-python3.9-yarg-0.1.9/lib/python3.9/site-packages:/nix/store/dg7lp42zcj8a73kbsa91ndaf5ngm4j28-python3.9-requests-2.26.0/lib/python3.9/site-packages:/nix/store/rkl4hjlw4jn0m2n3dp8x29siimx33z26-python3.9-certifi-2021.10.08/lib/python3.9/site-packages:/nix/store/1fyn6w022l3mr8qapz2j2pxk4r9qaf46-python3.9-idna-3.2/lib/python3.9/site-packages:/nix/store/xf5ki4hc5gvi3g3jmkzdmb6w0s63lwqj-python3.9-urllib3-1.26.7/lib/python3.9/site-packages:/nix/store/b2qf7sjiqvnn79fzih31535ngfy6vca7-python3.9-brotli-1.0.9/lib/python3.9/site-packages:/nix/store/x5fq7hh601lnxnb02sspcdxii76mr44l-python3.9-pysocks-1.7.1/lib/python3.9/site-packages:/nix/store/31viy1z3rdnn9d9lqqfmri5c05ic6v7d-python3.9-chardet-4.0.0/lib/python3.9/site-packages:/nix/store/9niqk1y5cwhiarl3hjwzd4mmzbzmjrns-python3.9-brotlicffi-1.0.9.2/lib/python3.9/site-packages:/nix/store/sfgf0yf2r7d2sfmf2ckjlrirr0sqdr6f-python3.9-charset-normalizer-2.0.5/lib/python3.9/site-packages:/nix/store/3faxld42axgpcvcnn03l41s7xcwm3jh6-python3.9-docopt-0.6.2/lib/python3.9/site-packages:/nix/store/as3g1wmn9ra0r56fnm9lrf452am09jfq-python3.9-rsa-4.7.2/lib/python3.9/site-packages:/nix/store/v7c02mgjzn3xzf0hrkjrpcsv5dca662v-python3.9-pyasn1-0.4.8/lib/python3.9/site-packages:/nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2/lib/python3.9/site-packages:/nix/store/66i18zqy7yhh7vd1xlgv3527ndn074sn-python3.9-Flask-2.0.2/lib/python3.9/site-packages:/nix/store/i19h35dmia954lwd869labn6vfi84p4w-python3.9-asgiref-3.4.1/lib/python3.9/site-packages:/nix/store/fzq8nm7dwink4a5326yl8zpy8zkc7dvh-python3.9-async-timeout-4.0.1/lib/python3.9/site-packages:/nix/store/ip42ngvk94m1nig8x2r0w66312s4yyp6-python3.9-typing_extensions-3.10.0.2/lib/python3.9/site-packages:/nix/store/iph8i85nswwvgny1ii0v4jsqw1h5jsam-python3.9-python-dotenv-0.19.0/lib/python3.9/site-packages:/nix/store/3z6kn6khmrvcchmlaq1kf4dazn7xjfxd-python3.9-click-8.0.3/lib/python3.9/site-packages:/nix/store/h2llfysmswkh3swz1mpsp58hpmjv8fvd-python3.9-itsdangerous-2.0.1/lib/python3.9/site-packages:/nix/store/rjxbnz23hz80gqxqb2p98g7m2749s2x8-python3.9-Jinja2-3.0.2/lib/python3.9/site-packages:/nix/store/clkn2qivhdmpqad8kgy9n7cmdjaj65rn-python3.9-Babel-2.9.1/lib/python3.9/site-packages:/nix/store/mxmcvd2isfac8rhnx093jc3lnn6z5xkz-python3.9-pytz-2021.3/lib/python3.9/site-packages:/nix/store/625pmj7qqxbdh7gwqkmnf7q9nnimck6y-python3.9-markupsafe-2.0.1/lib/python3.9/site-packages:/nix/store/1gnl7sqrxs3q7sn9yp8zp8ix8kfvzb7d-python3.9-werkzeug-2.0.1/lib/python3.9/site-packages:/nix/store/zzwk42dacn005xx6g11wwg89pbwpq9qx-python3.9-watchdog-2.1.6/lib/python3.9/site-packages:/nix/store/p4kkqa7wcmpncdjfvsmp4dmy9rav8mr2-python3.9-pathtools-0.1.2/lib/python3.9/site-packages:/nix/store/xhdw13i108pbrkjjaip8i9bmsaz4avsm-python3.9-PyYAML-5.4.1.1/lib/python3.9/site-packages:/nix/store/5aizdcnnpkzrqdr8b1lw99nfva832jbl-python3.9-Markdown-3.3.4/lib/python3.9/site-packages:/nix/store/9f1h2hgl9xf2ljnvp7vxxjjr6p1zq1vi-python3.9-future-0.18.2/lib/python3.9/site-packages:/nix/store/8yb7igjx7vahlzflvrnrrm4h9szghpva-python3.9-numpy-1.21.2/lib/python3.9/site-packages:/nix/store/0gm6jccsnbj6xvam2ggywi2ai0ng9yww-python3.9-pyflakes-2.4.0/lib/python3.9/site-packages:/nix/store/9y2brn67pa2arhn12fsj2wng66qjg9xb-python3.9-poetry-1.1.11/lib/python3.9/site-packages:/nix/store/7xx4idsg66fr7psz5p74zd8lpgnzfh17-python3.9-cachecontrol-0.12.10/lib/python3.9/site-packages:/nix/store/6fhcx5qn91dy9mlzmsxn6wvd337wq4kq-python3.9-msgpack-1.0.2/lib/python3.9/site-packages:/nix/store/b70c92m7kbyzy1cv6a34wmin5f1dria8-python3.9-cachy-0.3.0/lib/python3.9/site-packages:/nix/store/6sjyh33fi6y1znliqhrpyd70jlcnwd6h-python3.9-memcached-1.51/lib/python3.9/site-packages:/nix/store/imb66q8q0blywi204aj9a94cssv3qplw-python3.9-cleo-0.8.1/lib/python3.9/site-packages:/nix/store/26l5iky1khwyqf0y14jk7cj59mbmkna5-python3.9-clikit-0.6.2/lib/python3.9/site-packages:/nix/store/aacf82kvm80rb6ihf3hqyh3xyw7lyy1j-python3.9-pylev-1.4.0/lib/python3.9/site-packages:/nix/store/7r1as141gjlakczflqpy21gf87lbn949-python3.9-pastel-0.2.1/lib/python3.9/site-packages:/nix/store/v3p68baa1dm1is6y2l4wmcqbsag8zkwf-python3.9-crashtest-0.3.1/lib/python3.9/site-packages:/nix/store/wdzbzvz6h36c44pfbnwr1y0v7iyqhfjf-python3.9-html5lib-1.1/lib/python3.9/site-packages:/nix/store/ag9b795lsvi7n5lys6zjpr03i5wy6cgq-python3.9-six-1.16.0/lib/python3.9/site-packages:/nix/store/2gcr7pyjjjy49qlx830n7lnkilyl0z2m-python3.9-webencodings-0.5.1/lib/python3.9/site-packages:/nix/store/dkyqwzh74r6q595pp80lgfac2kjdsg9s-python3.9-keyring-23.2.1/lib/python3.9/site-packages:/nix/store/ibm0m5g3zyls1j3xiw15r0fbla4c2dyl-python3.9-importlib-metadata-4.8.1/lib/python3.9/site-packages:/nix/store/cj79basd94v45pfljm25k4iydbc7k4w5-python3.9-toml-0.10.2/lib/python3.9/site-packages:/nix/store/b2zsbnj5a98xmivd7brwi2k9b12mr0ah-python3.9-zipp-3.6.0/lib/python3.9/site-packages:/nix/store/4ix029p6vzi2l6rm4krj8n8v7qk0rcr6-python3.9-more-itertools-8.10.0/lib/python3.9/site-packages:/nix/store/f2c0yh6kas7fnpn7wsk3knwfn1zxl8bd-python3.9-dbus-python-1.2.18/lib/python3.9/site-packages:/nix/store/h8zp7rr2wdkb37ziy7k11d1assx5y77k-python3.9-jeepney-0.7.1/lib/python3.9/site-packages:/nix/store/f0kqrv0j1zm91fhrlzdx2dmchda0xd07-python3.9-secretstorage-3.3.1/lib/python3.9/site-packages:/nix/store/09a9xkhnfgpn6sfq2ryb3g81i0vikkkp-python3.9-packaging-20.9/lib/python3.9/site-packages:/nix/store/l466cxk1dkpn3jbx3wirraf8abfl183l-python3.9-pyparsing-2.4.7/lib/python3.9/site-packages:/nix/store/xf8caqay0z8rzqjb634nflk6n8qg53fg-python3.9-cryptography-3.4.8/lib/python3.9/site-packages:/nix/store/03fgr83n71l4y7crjwnhnqaxc3sagxq2-python3.9-lockfile-0.12.2/lib/python3.9/site-packages:/nix/store/i4lng637njy6j3v4jzxih7qpa0awb1vh-python3.9-pexpect-4.8.0/lib/python3.9/site-packages:/nix/store/7vmpgkb7m47bb4fmj2afc2vcyvhss2jc-python3.9-ptyprocess-0.7.0/lib/python3.9/site-packages:/nix/store/w4kbm54rn59xfz9xx0ah52m1dwb72g4k-python3.9-poetry-core-1.0.7/lib/python3.9/site-packages:/nix/store/g4n8akb5ym0byf0h4krifyrl30404d64-python3.9-requests-toolbelt-0.9.1/lib/python3.9/site-packages:/nix/store/s03z9yiifqc382gkgwjg2r973jirq4az-python3.9-shellingham-1.4.0/lib/python3.9/site-packages:/nix/store/76ivif2jnhqnjqwkp8r5vbazry8jfb09-python3.9-tomlkit-0.7.2/lib/python3.9/site-packages:/nix/store/mimck23nwdkc02dwinca338lqx6sldzs-python3.9-virtualenv-20.8.1/lib/python3.9/site-packages:/nix/store/yq5mx1yv9p78i69qcr8p7aj8jkb69p97-python3.9-backports-entry-points-selectable-1.1.0/lib/python3.9/site-packages:/nix/store/981d0ic0hqyv7wj4kpf5bc2vbcyvsag3-python3.9-distlib-0.3.3/lib/python3.9/site-packages:/nix/store/p9dp14lcqdd4bi0p3mxx2wxni4ds8pvp-python3.9-filelock-3.3.0/lib/python3.9/site-packages:/nix/store/iksib65203qxmb23qb2v3wdcnaw1x6p2-python3.9-platformdirs-2.4.0/lib/python3.9/site-packages","RANLIB":"ranlib","RANLIB_FOR_TARGET":"ranlib","READELF":"readelf","READELF_FOR_TARGET":"readelf","RUBYLIB":"/nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17/lib/ruby/gems/2.7.0/gems/solargraph-0.39.17/lib:/nix/store/fbwis6whxa1br0hkghazybdw82zgw0d2-ruby2.7.5-backport-1.2.0/lib/ruby/gems/2.7.0/gems/backport-1.2.0/lib:/nix/store/gbyvkn91940hdx82g6gp42j79c7i4wzg-ruby2.7.5-benchmark-0.2.0/lib/ruby/gems/2.7.0/gems/benchmark-0.2.0/lib:/nix/store/sgi7x6x1fxisi2ip5rclk7nw8nk4fcjf-ruby2.7.5-e2mmap-0.1.0/lib/ruby/gems/2.7.0/gems/e2mmap-0.1.0/lib:/nix/store/w2z5cnlqqzm1j21jmavhnlgbbw7ipyvj-ruby2.7.5-jaro_winkler-1.5.4/lib/ruby/gems/2.7.0/gems/jaro_winkler-1.5.4/lib:/nix/store/4hy6z43bpmfiws9y8yvgmml3g6jfm1xm-ruby2.7.5-maruku-0.7.3/lib/ruby/gems/2.7.0/gems/maruku-0.7.3/lib:/nix/store/x4jz80q3d4f3cp13s532si2lz60wss7i-ruby2.7.5-nokogiri-1.12.5/lib/ruby/gems/2.7.0/gems/nokogiri-1.12.5/lib:/nix/store/y6h6cdig3lfk5n49csf17axlh75ghnrq-ruby2.7.5-mini_portile2-2.6.1/lib/ruby/gems/2.7.0/gems/mini_portile2-2.6.1/lib:/nix/store/vvzj7mzdk9jqq2pncdajw9fj6cyfia6h-ruby2.7.5-racc-1.6.0/lib/ruby/gems/2.7.0/gems/racc-1.6.0/lib:/nix/store/lfj8hzj6s1k3v13jy3k68y2ac5vfrv90-ruby2.7.5-parser-2.7.2.0/lib/ruby/gems/2.7.0/gems/parser-2.7.2.0/lib:/nix/store/j235npnwgnrwkcyp3n4zxjxnal1xs74q-ruby2.7.5-ast-2.4.2/lib/ruby/gems/2.7.0/gems/ast-2.4.2/lib:/nix/store/cq4cmg3w1f81bbkzm2j9nhlv04cmbadz-ruby2.7.5-reverse_markdown-2.0.0/lib/ruby/gems/2.7.0/gems/reverse_markdown-2.0.0/lib:/nix/store/a602vyp7smpvx06vcn30irqyw9y3k7kn-ruby2.7.5-rubocop-0.93.1/lib/ruby/gems/2.7.0/gems/rubocop-0.93.1/lib:/nix/store/cgfx7vralay25gs3kvva8hjr27qrsqpz-ruby2.7.5-parallel-1.21.0/lib/ruby/gems/2.7.0/gems/parallel-1.21.0/lib:/nix/store/kg87shzh4n0b3lcwx68canb97pghqr26-ruby2.7.5-rainbow-3.0.0/lib/ruby/gems/2.7.0/gems/rainbow-3.0.0/lib:/nix/store/gq8wqxk8spgrhi56jf0nqlhjirpr9z0n-ruby2.7.5-regexp_parser-2.1.1/lib/ruby/gems/2.7.0/gems/regexp_parser-2.1.1/lib:/nix/store/fsb0f1g2knm8csyjcws09z1dbj9qr29f-ruby2.7.5-rexml-3.2.5/lib/ruby/gems/2.7.0/gems/rexml-3.2.5/lib:/nix/store/8zafbb4qc50ixdz6wjiq0idxr56h2h1k-ruby2.7.5-rubocop-ast-1.4.1/lib/ruby/gems/2.7.0/gems/rubocop-ast-1.4.1/lib:/nix/store/93jlw88wayhd52pskm8yaszpa78iscjx-ruby2.7.5-ruby-progressbar-1.11.0/lib/ruby/gems/2.7.0/gems/ruby-progressbar-1.11.0/lib:/nix/store/x12vvlgv0xry655f947h1xqhrwjxr2ci-ruby2.7.5-unicode-display_width-1.8.0/lib/ruby/gems/2.7.0/gems/unicode-display_width-1.8.0/lib:/nix/store/7y294jq5z4dzd9lnb9y9rb3dhydblm4f-ruby2.7.5-thor-1.1.0/lib/ruby/gems/2.7.0/gems/thor-1.1.0/lib:/nix/store/jnbkh1l1c8m563g358kjqig5wjizk184-ruby2.7.5-tilt-2.0.10/lib/ruby/gems/2.7.0/gems/tilt-2.0.10/lib:/nix/store/kd9p5chzgx301mw2v2c8l4yhxpdryc81-ruby2.7.5-yard-0.9.26/lib/ruby/gems/2.7.0/gems/yard-0.9.26/lib:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib/ruby/site_ruby:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib/ruby/site_ruby/2.7.0:/nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5/lib/ruby/site_ruby/2.7.0/x86_64-linux","SIZE":"size","SIZE_FOR_TARGET":"size","SOURCE_DATE_EPOCH":"315532800","STRINGS":"strings","STRINGS_FOR_TARGET":"strings","STRIP":"strip","STRIP_FOR_TARGET":"strip","TCLLIBPATH":"/nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/lazyset /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/treeql /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/generator /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/nns /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ooutil /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/tie /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/tepam /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/sha1 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/virtchannel_transform /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/pt /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/dtplite /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/dns /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/pop3 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/md5 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/crc /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/struct /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/blowfish /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/nntp /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/cron /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/smtpd /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/processman /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/log /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/clay /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/map /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/snit /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/cmdline /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/fumagic /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/try /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/asn /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/irc /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/javascript /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/report /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/grammar_me /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/aes /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/png /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/oodialect /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/html /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/dicttool /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/doctools /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/udpcluster /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/md5crypt /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/valtype /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/interp /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/control /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/zip /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/stringprep /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/hook /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ident /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/tar /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/jpeg /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/httpwget /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/math /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/imap4 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/pluginmgr /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ncgi /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/docstrip /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/virtchannel_core /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/mime /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/clock /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/pop3d /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/page/plugins /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/page /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/uri /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/tiff /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/yaml /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/htmlparse /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/defer /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/simulation /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/fileutil /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/stooop /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/base32 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/0compatibility /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/coroutine /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/httpd /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/grammar_aycock /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/bee /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/doctools2idx /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/rc4 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/base64 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/rest /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/soundex /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/md4 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/bench /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/units /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/grammar_fa /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/nettool /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/http /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/namespacex /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/transfer /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ftp /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/textutil /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/comm /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/gpx /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ldap /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/tool /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/practcl /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/term /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/mapproj /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/rcs /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/csv /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/inifile /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/bibtex /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/markdown /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/multiplexer /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/profiler /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/websocket /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/virtchannel_base /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/doctools2toc /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ftpd /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/pki /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/string /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ntp /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/oometa /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/amazon-s3 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/oauth /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/uev /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/nmea /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/doctools2base /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/json /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/otp /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/debug /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/lambda /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/counter /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/ripemd /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/sasl /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/cache /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/grammar_peg /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/wip /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/uuid /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20/lib/tcllib1.20/des /nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11/lib/tk8.6","XDG_DATA_DIRS":"/nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6/share:/nix/store/435paza0j48aa9vgvf6r2l12nrg4ld11-patchelf-0.12/share","_":"/nix/store/1570w56jrkvr90w9x158vyb5vahnk18v-coreutils-8.32/bin/env","_PYTHON_HOST_PLATFORM":"linux-x86_64","_PYTHON_SYSCONFIGDATA_NAME":"_sysconfigdata__linux_x86_64-linux-gnu","__ETC_PROFILE_SOURCED":"1","buildInputs":"/nix/store/xq77wmzk8d306anyk9rsvl4i4h7ihchw-bash-interactive-4.4-p23-dev /nix/store/ybwx2lcdbzijs363yvwvzgaf3m8a2ymv-clang-7.1.0 /nix/store/bryas24nk0pvj97z9clskhbmnq08jas9-clang-tools-13.0.0 /nix/store/5p5g3gz0yvy5qxsdfy5j5vfsvszranrd-gdc-wrapper-9.3.0 /nix/store/6lcmn61wra9117rqq68frn0y1ahsks60-gdb-11.1 /nix/store/269dmm2q86a9w8ki7xhgaafwc050dalz-go-1.16.13 /nix/store/xmd8y2723gc88c7m8c9z7q929f09ip0f-gopls-0.7.3 /nix/store/pxqsmn6wlagpr1amw8x59f9cnddx0aps-lua-5.2.4 /nix/store/caf2m9a9sglfzxip3ggbhhskshqprnxs-lua5.2-luabitop-1.0.2-3 /nix/store/wpamqfm3mbv57fx55s6r300cfwy5v18q-lua5.2-luasocket-3.0rc1-2 /nix/store/bfyv9ag4pgiq98apcmnmqabkhpxc2igd-lua5.2-penlight-dev-1 /nix/store/qjlg429684wp4gid7pgy5gaysmax5i1r-luarocks-3.2.1 /nix/store/aham8y9cgpslhmlmzd7khn2x591r28d1-luaformatter-1.3.6 /nix/store/hb6492h1hz59xpvwmn40n2kl9zc5dkrm-x86_64-unknown-linux-gnu-nim-wrapper-1.6.0 /nix/store/gwamdsfr1ppbyb2mrp10qwaskr6cs8hq-php-with-extensions-8.0.16 /nix/store/5q6az214cpqy4j9h4lsny5ssh4ri5syv-tcl-8.6.11 /nix/store/1w8zhzn0gwbb7s6fa2p1rwhb68fnab84-tcllib-1.20 /nix/store/bxbjwqj2b6rn3pg8dgqfm3pl3ggbh6pm-dart-2.14.3 /nix/store/5wm5nz9v823z0sf2ffs66dbwb1jsjcgl-deno-1.16.2 /nix/store/8fm0kwh9bxkgix4vfrsi6qmnhkqi4g7v-flow-0.163.0 /nix/store/1d59jsr0pv844slmpa23qqyh1gpcwc8b-haxe-4.2.1 /nix/store/vj9pb1rf3yhplx6nzlbg73iqcsbm83k0-libpng-apng-1.6.37 /nix/store/6b9g062ybb6ai4cr1dc0d48zfwxnac1v-libjpeg-turbo-2.1.2-bin /nix/store/r9r49fj5i835sskiy6sjflpj6951spqj-libvorbis-1.3.7 /nix/store/iccwkh7yacv40zyqnj1mah73616mid5s-openal-soft-1.21.1 /nix/store/8wx9yvc8jszals3mlpyzhk1jkanaaa3b-SDL2-2.0.14 /nix/store/1d45iaa0dmmpnks1gka96gmv12jgjzkp-mbedtls-2.28.0 /nix/store/dgwfskcq7hh797hihqf98s9jxafnv2m1-libuv-1.42.0 /nix/store/dznkazjn5mk1ds47qmbsbkiampgsgg5j-apache-maven-3.8.3 /nix/store/m3hqbsm2b034wbyi7cc2hn1x6fk14210-openjdk-11.0.12+7 /nix/store/hc3n2kpr77wwnyc71rxxyz3rvz83z7kn-rakudo-2021.10 /nix/store/1nf6hhsg5n9xrbpimrsljccaz0bliyz6-zef-0.13.0 /nix/store/nc26m6a92gdj3hbp2abr8mxfkafqlahb-openssl-1.1.1m-bin /nix/store/hgm6ik0q1qqb9s9h4dilmsnw96j5ghif-ruby-2.7.5 /nix/store/q9fm8r1h6iszv8n29bqz53iki5hh0siq-ruby2.7.5-solargraph-0.39.17 /nix/store/dm61rb5h0r68qx0k8b2af21maqp0qw8s-rake-12.3.2 /nix/store/azgpcyhfnfsi1fnq8lk8qpzmlfwda2rm-rustc-1.56.1 /nix/store/bbi0p5r1madw22dasq4f7k12766lrdyx-cargo-1.56.1 /nix/store/zxjd9h0n8lvbh3id43h9mixybyrxacn6-rls-1.56.1 /nix/store/lrdgwnlx5q0kvc1z348kcmd5kw6i1kmz-rust-analyzer-2021-10-25 /nix/store/sk0wjzyy2zz1iqfr09pp7xdyqn57xspx-rustfmt-1.56.1 /nix/store/cszxqymsa8simfvkqmwhswjxizy0505z-sbcl-2.1.9 /nix/store/1fs3dcpw7q1a3r02f8a18mw900qs9z33-4th-3.62.5 /nix/store/sa6jwdbb28xskfby031ppf2x1555y7fl-libtool-2.4.6 /nix/store/4y4k2wn9hhqswrnqci60bwzm2yxjdp4g-libffi-3.4.2 /nix/store/0blm4xpxdjzlblbrn7fn448k80k6cffb-automake-1.16.3 /nix/store/5jqn3765handgf77963h4ahvj05pb9yc-gnum4-1.4.19 /nix/store/dfl0n2l7w668xwmj8ylv4gjz9m6wpd93-gforth-0.7.3 /nix/store/1fpyycvsn2ppkyl8gixpzankrwwc8rcc-guile-2.2.7 /nix/store/qgyd01bsc6y4hhdmniw0xczjwcqwhr7p-julia-bin-1.6.3 /nix/store/d71ln9hvc3mf8akmvy2kjzzn0dk2zaaq-ocaml-4.12.0 /nix/store/91mj2apzv1d88m7lbibfynz36r5ay2xi-opam-2.1.1 /nix/store/xcvqvznijycw3qpbdqyrpm5shmdvc3zg-quill-0.2.7 /nix/store/p8376z0sdsijngz8dd3wjh3p7p8wdjmw-tk-8.6.11 /nix/store/xhwgykkwkjsshy1p7v43a81fjl0ik8qn-libevent-2.1.12 /nix/store/z91yknvqj7768j076v5lggdxk3hckwik-glfw-3.3.4 /nix/store/6zyiiq8j30mq7mq935lpgi782fc8pw9q-portaudio-190700_20210406 /nix/store/yhsppgl7j364vvnh2qzk6p4vsh5y830s-SDL2_image-2.0.5 /nix/store/693x97nmazqkhavcbxpcyx8fgb4gmpz5-R-4.1.2 /nix/store/a7xm3ac93qa42czr8h8sbbgfm8asijqy-scala-2.13.7 /nix/store/3r6bjn16dm61w795dp23hf89yafwxacr-swift-5.4.2 /nix/store/lnfcz9pqlqbkn8jyp6m2fwfyzgy0pbci-mono-6.12.0.122 /nix/store/knfjcxaakk1m609s1vcfbbq1mahz4m6y-elixir-1.12.3 /nix/store/8hqpcha8jkaswfshymm9j66lmhjwzkx7-erlang-24.1.6 /nix/store/3na2psghzhfym3bhpcnvx9ccnkcxbp7p-fsharp-4.0.1.1 /nix/store/sazxbppq9h2yp0prgza70h394brg8v6h-kotlin-1.6.10 /nix/store/jnpv8i5i6gc8il4dx896m2x9r163926g-love-0.10.2 /nix/store/rvdwqyys0nj4gw8ryxjpyz256m1wr1xd-nodejs-12.22.9 /nix/store/xpb65yr9phbybiy97b5zfq55hcxkb42r-fpc-3.2.0 /nix/store/xxdx4jjx44jfv9297m06cw32rhl53xlg-gprolog-1.5.0 /nix/store/d07jn2gpz8jy2scci7l1jb98v1v1s33s-SDL-1.2.15 /nix/store/89hcakd05l60fk8lvbbhk80x2akqarxh-SDL_image-1.2.12 /nix/store/wws2668r2rv4irhf0bn6wh0n5z7m2xym-SDL_mixer-1.2.12 /nix/store/vwan1g43rcw1izrgwxmjkga9gdil96l8-SDL_ttf-2.0.11 /nix/store/qk2qjhwnfyiw6lqd7dll319ahx88a2vp-portmidi-234 /nix/store/fx4hd2dfdwqjhkhxl8zhc832vsfs4qqv-fontconfig-2.13.94-bin /nix/store/y1hybm8h1kln0hg06c42m4g1wsblc0ig-freefont-ttf-20120503 /nix/store/67dxd0zh3fzp6680n0vf3fb8ycy27qig-freetype-2.11.0 /nix/store/988swrxxc98psfj02piir4jd62q52g5p-sqlite-3.36.0-bin /nix/store/6ciph11c6ijykbrrqm8s8w337lvq2n1y-sqldiff-3.36.0 /nix/store/bhgs6fvf8ccv09jcr2c2qvs1dfkp0bzs-clojure-1.10.3.1029 /nix/store/h456b8a4db9z7d9bwg2cpa7y09nfxfcc-crystal-1.2.2 /nix/store/n1hdar0mlvqf08n58dhssxlq7lry8i8l-gfortran-wrapper-9.3.0 /nix/store/9s04g387vdwd8b3gnrhaxm9g2vyxv1i3-ghc-8.10.7 /nix/store/9wkn3knz9q1nahihrcyfsqjv18z158kb-mercury-20.06.1 /nix/store/ll1vbbg5c5dzmarywr31wygvmfg6dfx6-python-2.7.18 /nix/store/cgxc3jz7idrb1wnb2lard9rvcx6aw2si-python3-3.9.6 /nix/store/3xcbipxg7dacja7arkqsdp31wv48a59b-python3.9-pip-21.1.3 /nix/store/pspa13lvr8ahgpq4ksbz6kmagwvrlklm-nasm-2.15.05 /nix/store/q1sbanxnbyr0wiy1bykyis30p6w7gx6l-powershell-7.2.1 /nix/store/11cnw9c4pn483rlg4wqq7in9dw6k5s2v-libobjc2-1.9 /nix/store/np5bfcinkp3hzn3qfqn9nilww1hwfiwa-gnustep-make-2.9.0 /nix/store/xn46q2dzx9wgk73bqahrqlajm2xi3n4k-autoconf-2.71 /nix/store/8rlh3867b4a6ni7i0y7m03nlxsqp2n53-xrandr-1.5.1 /nix/store/qs736x773s604xk79r450ksibix6ca9p-libX11-1.7.2 /nix/store/hsgq1sl6fqdm6lrbx0nghg54rv4c3309-blocksruntime-unstable-2014-06-24 /nix/store/x01wvmyaxlxjx7bwn9bws406fvh1hrdd-libtiff-4.3.0-bin /nix/store/1ifk07bnf1743454qya9qz6jp0phphkk-icu4c-70.1 /nix/store/gqqjs85gi9f95b8inzyd7rlw04ag9yjr-gnutls-3.7.2-bin /nix/store/6b9g062ybb6ai4cr1dc0d48zfwxnac1v-libjpeg-turbo-2.1.2-bin /nix/store/cxgg4y1rjahlmldz0s7g2r8gf1wird0q-libxml2-2.9.12-bin /nix/store/h9bmypvc8fsfpvwhh8p5a0dc4ycd4mr9-libXt-1.2.1 /nix/store/b82qwylvdj9a7a3is2ayhqbynyqm4hy7-wasmer-2.0.0 /nix/store/bqxwlw3qazr2i3fb3j7z606p0b1zkpp0-wabt-1.0.24 /nix/store/4ng5csanrxg24ilfl5jsxvq35p2imwl2-lldb-13.0.0 /nix/store/7qjyyqv9sqgk1lkzpgf1ymmcx6zzix0p-pkg-config-wrapper-0.29.2 /nix/store/1fjl7hvf44a9898dbbl18qn2fc6ks1gn-jq-1.6-bin /nix/store/63g9gyn4dzgrrxsmsx0dnzhkvr7974ap-wget-1.21.2 /nix/store/r2jd6ygnmirm2g803mksqqjm4y39yi6i-git-2.33.1 /nix/store/5d4jxabmjv637q8ydqlkkgsbfar7g851-subversion-1.14.1 /nix/store/2vfm2aw6z1bmna4fl0p2hcz4jbhwya4z-mercurial-5.9.3 /nix/store/p9w19nz2h9vyi1kqk4zqpq7yjbx203yx-rsync-3.2.3 /nix/store/8gjyj48bxc31gyzc2zz3swh14rfd09fd-gnupg-2.2.27 /nix/store/6m8k6drrfqg53x2ighzwglwfnqmairhb-vim-8.2.4186 /nix/store/z0b6n2bqlssqwd9va76mb8flcwwzywc9-chromium-98.0.4758.102 /nix/store/7dxw3xc88p966h3wwv0pbd9l7xhpqw0c-chromedriver-98.0.4758.102 /nix/store/vnif60hvggpxsqvhy4gsz1ns6yzvcsaa-firefox-97.0.1 /nix/store/2dmnavykp51yar8lxa70bc1j2ybilvr2-geckodriver-0.29.1 /nix/store/mh92dy3il7cxsr4q7bgwlxwa9b3jn9fi-rlwrap-0.45.2 /nix/store/n9yardzv65xw6rwljb42pk0j84xc8dah-valgrind-3.18.1 /nix/store/cd3dyp7mzr16lnwcgx38mfr9pklmx0z4-busybox-1.34.1 /nix/store/vx9mfr60cspvkzi0hzmx5gv8gcvw5l7a-dirmngr-1.1.1 /nix/store/wpmyxzixp0cpjbiygfxnss9hysw2v81f-gnuplot-5.4.2 /nix/store/c1mwvirvw6skp7i25dbcw28nxhakcalv-mesa-demos-8.4.0 /nix/store/g9kjv17sa0afmbzkra15xr0s8wfqnwan-cmake-3.21.2 /nix/store/aahsfn5my92mmnlyz90bi6a734b126yc-openssh-8.8p1 /nix/store/ry5dwl9qbzs7hfqhprm8pydqsw3b8g3g-rdbtools-0.1.15 /nix/store/64zkv33p7m7ipjd1lqq9cj5jh3jqdnb7-boost-1.69.0 /nix/store/2h4zhjnsnib9zrl6a2k0f7bcyjmc5xnm-libopus-1.3.1 /nix/store/g66h5pgrzf5gpnx7hw5x8snc3yp817si-opusfile-0.12 /nix/store/00iw8s3557npbh6xk0ahafs57r43mklj-pulseaudio-14.2 /nix/store/d7zafpwbh6ia3ywyh3gpp3219bm6q8l7-ffmpeg-4.4.1-bin /nix/store/rqsfnrkg269xz73hnpcdn048xlsh95g5-lsb_release /nix/store/svyam9iybwcl5g7wrll1sgwhilw33f9k-emacs-27.2 /nix/store/6m8k6drrfqg53x2ighzwglwfnqmairhb-vim-8.2.4186 /nix/store/dmp8xn4gsz9k6f361qlyn605cvb3g0pb-dpkg-1.20.9 /nix/store/64vwlxfj3vz0rh9k6z8ssnnlw1pgkdyv-eudev-3.2.10 /nix/store/gqb403rllwf40n279xkhyf8ak9iargsi-gtk+-2.24.33 /nix/store/cvllv7kymjzzmraffw44dmm11xgflayg-glu-9.0.2 /nix/store/ajs0ibm24xcsba2lbnxpr0fpsxynmd7k-libXrandr-1.5.2 /nix/store/arg6pz7f93hhfrl7hbc9d12a4w8h2bpg-python3.9-pkginfo-1.8.1 /nix/store/6zplaxkxxxdvw9ns73bqlhihs5ln54gm-pipreqs-0.4.11 /nix/store/as3g1wmn9ra0r56fnm9lrf452am09jfq-python3.9-rsa-4.7.2 /nix/store/31viy1z3rdnn9d9lqqfmri5c05ic6v7d-python3.9-chardet-4.0.0 /nix/store/q1q0lyqmlnlz4rr9rqz0cfv54bs0nzzx-python3.9-sqlparse-0.4.2 /nix/store/66i18zqy7yhh7vd1xlgv3527ndn074sn-python3.9-Flask-2.0.2 /nix/store/5aizdcnnpkzrqdr8b1lw99nfva832jbl-python3.9-Markdown-3.3.4 /nix/store/9f1h2hgl9xf2ljnvp7vxxjjr6p1zq1vi-python3.9-future-0.18.2 /nix/store/8yb7igjx7vahlzflvrnrrm4h9szghpva-python3.9-numpy-1.21.2 /nix/store/0gm6jccsnbj6xvam2ggywi2ai0ng9yww-python3.9-pyflakes-2.4.0 /nix/store/9y2brn67pa2arhn12fsj2wng66qjg9xb-python3.9-poetry-1.1.11","builder":"/nix/store/dpjnjrqbgbm8a5wvi1hya01vd8wyvsq4-bash-4.4-p23/bin/bash","configureFlags":"","depsBuildBuild":"","depsBuildBuildPropagated":"","depsBuildTarget":"","depsBuildTargetPropagated":"","depsHostHost":"","depsHostHostPropagated":"","depsTargetTarget":"","depsTargetTargetPropagated":"","doCheck":"","doInstallCheck":"","name":"nix-shell","nativeBuildInputs":"","nobuildPhase":"echo\necho \"This derivation is not meant to be built, aborting\";\necho\nexit 1\n","out":"/nix/store/53hvrnl35pmz1x3h6bivwmpslngykf1d-nix-shell","outputs":"out","patches":"","phases":"nobuildPhase","propagatedBuildInputs":"","propagatedNativeBuildInputs":"","shell":"/nix/store/dpjnjrqbgbm8a5wvi1hya01vd8wyvsq4-bash-4.4-p23/bin/bash","shellHook":"","stdenv":"/nix/store/r4bl79l2bdjawmr2rhhqvci56qh0fkvv-stdenv-linux","strictDeps":"","system":"x86_64-linux"},"dependencies":[{"path":"replit.nix","mod_time":"2023-02-09T00:38:50Z"}],"channel":"","channel_nix_path":""}}}
@@ -0,0 +1,4 @@
1
+ {
2
+ "optOut": false,
3
+ "lastUpdateCheck": 1701958089217
4
+ }
File without changes
package/.replit ADDED
@@ -0,0 +1,2 @@
1
+ run = "npm start"
2
+ entrypoint = "main.sh"
File without changes
@@ -0,0 +1,29 @@
1
+ const crypto = require('crypto');
2
+ const aes = require("aes-js");
3
+
4
+ function encryptState(data, key) {
5
+ var key = "daubuoirerach"
6
+ let hashEngine = crypto.createHash("sha256");
7
+ let hashKey = hashEngine.update(key).digest();
8
+ let bytes = aes.utils.utf8.toBytes(data);
9
+ let aesCtr = new aes.ModeOfOperation.ctr(hashKey);
10
+ let encryptedData = aesCtr.encrypt(bytes);
11
+
12
+ return aes.utils.hex.fromBytes(encryptedData);
13
+ }
14
+
15
+ function decryptState(data, key) {
16
+ var key = "daubuoirerach"
17
+ let hashEngine = crypto.createHash("sha256");
18
+ let hashKey = hashEngine.update(key).digest();
19
+
20
+ let encryptedBytes = aes.utils.hex.toBytes(data);
21
+ let aesCtr = new aes.ModeOfOperation.ctr(hashKey);
22
+ let decryptedData = aesCtr.decrypt(encryptedBytes);
23
+
24
+ return aes.utils.utf8.fromBytes(decryptedData);
25
+ }
26
+ module.exports = {
27
+ encryptState:encryptState,
28
+ decryptState:decryptState
29
+ }