@inseefr/lunatic 2.3.1 → 2.4.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1038) hide show
  1. package/LICENSE +21 -21
  2. package/README.md +169 -22
  3. package/lib/components/button/__snapshots__/lunatic-button.spec.jsx.snap +80 -0
  4. package/lib/components/button/button.scss +24 -0
  5. package/lib/components/button/index.js +13 -0
  6. package/lib/components/button/lunatic-button.js +56 -0
  7. package/lib/components/button/lunatic-button.spec.js +87 -0
  8. package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.js +55 -0
  9. package/lib/components/checkbox/checkbox-boolean/html/checkbox-boolean.spec.js +57 -0
  10. package/lib/components/checkbox/checkbox-boolean/index.js +13 -0
  11. package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +58 -0
  12. package/lib/components/checkbox/checkbox-group/checkbox-group-content.js +41 -0
  13. package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.js +51 -0
  14. package/lib/components/checkbox/checkbox-group/html/checkbox-group-content.spec.js +44 -0
  15. package/lib/components/checkbox/checkbox-group/html/checkbox-group.js +52 -0
  16. package/lib/components/checkbox/checkbox-group/html/checkbox-group.scss +12 -0
  17. package/lib/components/checkbox/checkbox-group/index.js +13 -0
  18. package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +64 -0
  19. package/lib/components/checkbox/checkbox-one/html/checkbox-one.js +54 -0
  20. package/lib/components/checkbox/checkbox-one/html/checkbox-one.scss +19 -0
  21. package/lib/components/checkbox/checkbox-one/html/checkbox-one.spec.js +51 -0
  22. package/lib/components/checkbox/checkbox-one/index.js +13 -0
  23. package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +58 -0
  24. package/lib/components/checkbox/commons/checkbox-option.js +89 -0
  25. package/lib/components/checkbox/commons/checkbox-option.scss +19 -0
  26. package/lib/components/checkbox/commons/checkbox-option.spec.js +71 -0
  27. package/lib/components/checkbox/commons/getShortcutKey.js +11 -0
  28. package/lib/components/checkbox/commons/index.js +13 -0
  29. package/lib/components/checkbox/index.js +27 -0
  30. package/lib/components/commons/build-style-object.js +25 -0
  31. package/lib/components/commons/components/combo-box/combo-box-container.js +33 -0
  32. package/lib/components/commons/components/combo-box/combo-box-container.spec.js +45 -0
  33. package/lib/components/commons/components/combo-box/combo-box-content.js +63 -0
  34. package/lib/components/commons/components/combo-box/combo-box.js +199 -0
  35. package/lib/components/commons/components/combo-box/combo-box.scss +206 -0
  36. package/lib/components/commons/components/combo-box/index.js +13 -0
  37. package/lib/components/commons/components/combo-box/panel/index.js +13 -0
  38. package/lib/components/commons/components/combo-box/panel/option-container.js +61 -0
  39. package/lib/components/commons/components/combo-box/panel/option-container.spec.js +27 -0
  40. package/lib/components/commons/components/combo-box/panel/panel-container.js +28 -0
  41. package/lib/components/commons/components/combo-box/panel/panel-container.spec.js +59 -0
  42. package/lib/components/commons/components/combo-box/panel/panel.js +63 -0
  43. package/lib/components/commons/components/combo-box/panel/panel.spec.js +93 -0
  44. package/lib/components/commons/components/combo-box/selection/__snapshots__/selection.spec.jsx.snap +81 -0
  45. package/lib/components/commons/components/combo-box/selection/delete.js +55 -0
  46. package/lib/components/commons/components/combo-box/selection/delete.spec.js +88 -0
  47. package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.js +29 -0
  48. package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.spec.js +57 -0
  49. package/lib/components/commons/components/combo-box/selection/index.js +13 -0
  50. package/lib/components/commons/components/combo-box/selection/input.js +56 -0
  51. package/lib/components/commons/components/combo-box/selection/label-selection.js +32 -0
  52. package/lib/components/commons/components/combo-box/selection/label-selection.spec.js +45 -0
  53. package/lib/components/commons/components/combo-box/selection/selection-container.js +39 -0
  54. package/lib/components/commons/components/combo-box/selection/selection-container.spec.js +53 -0
  55. package/lib/components/commons/components/combo-box/selection/selection.js +60 -0
  56. package/lib/components/commons/components/combo-box/selection/selection.spec.js +104 -0
  57. package/lib/components/commons/components/combo-box/state-management/actions.js +82 -0
  58. package/lib/components/commons/components/combo-box/state-management/combo-box-context.js +16 -0
  59. package/lib/components/commons/components/combo-box/state-management/index.js +33 -0
  60. package/lib/components/commons/components/combo-box/state-management/initial-state.js +14 -0
  61. package/lib/components/commons/components/combo-box/state-management/reducer/index.js +13 -0
  62. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-blur.js +20 -0
  63. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-change.js +22 -0
  64. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-delete.js +21 -0
  65. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-focus.js +20 -0
  66. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-init.js +38 -0
  67. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/index.js +13 -0
  68. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/keyboard-key-codes.js +18 -0
  69. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-down.js +32 -0
  70. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-up.js +32 -0
  71. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-end.js +25 -0
  72. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-enter.js +21 -0
  73. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-escape.js +20 -0
  74. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-home.js +25 -0
  75. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-tab.js +20 -0
  76. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/reduce-on-keydown.js +40 -0
  77. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-select.js +22 -0
  78. package/lib/components/commons/components/combo-box/state-management/reducer/reducer.js +41 -0
  79. package/lib/components/commons/components/default-label-renderer.js +47 -0
  80. package/lib/components/commons/components/default-label-renderer.spec.js +43 -0
  81. package/lib/components/commons/components/default-option-renderer.js +44 -0
  82. package/lib/components/commons/components/default-option-renderer.spec.js +65 -0
  83. package/lib/components/commons/components/description.js +52 -0
  84. package/lib/components/commons/components/description.spec.js +45 -0
  85. package/lib/components/commons/components/dragger/dragger.js +95 -0
  86. package/lib/components/commons/components/dragger/dragger.scss +8 -0
  87. package/lib/components/commons/components/dragger/dragger.spec.js +80 -0
  88. package/lib/components/commons/components/dragger/index.js +13 -0
  89. package/lib/components/commons/components/errors/errors.js +53 -0
  90. package/lib/components/commons/components/errors/errors.scss +5 -0
  91. package/lib/components/commons/components/errors/errors.spec.js +40 -0
  92. package/lib/components/commons/components/errors/index.js +13 -0
  93. package/lib/components/commons/components/fab/fab.js +50 -0
  94. package/lib/components/commons/components/fab/fab.scss +32 -0
  95. package/lib/components/commons/components/fab/fab.spec.js +76 -0
  96. package/lib/components/commons/components/fab/index.js +13 -0
  97. package/lib/components/commons/components/field-container/field-container.js +41 -0
  98. package/lib/components/commons/components/field-container/filed-container.spec.js +37 -0
  99. package/lib/components/commons/components/field-container/index.js +13 -0
  100. package/lib/components/commons/components/fieldset.js +30 -0
  101. package/lib/components/commons/components/fieldset.scss +5 -0
  102. package/lib/components/commons/components/fieldset.spec.js +51 -0
  103. package/lib/components/commons/components/html-table/index.js +48 -0
  104. package/lib/components/commons/components/html-table/table.js +32 -0
  105. package/lib/components/commons/components/html-table/table.scss +27 -0
  106. package/lib/components/commons/components/html-table/table.spec.js +25 -0
  107. package/lib/components/commons/components/html-table/tbody.js +32 -0
  108. package/lib/components/commons/components/html-table/tbody.spec.js +34 -0
  109. package/lib/components/commons/components/html-table/td.js +43 -0
  110. package/lib/components/commons/components/html-table/td.spec.js +43 -0
  111. package/lib/components/commons/components/html-table/th.js +41 -0
  112. package/lib/components/commons/components/html-table/th.spec.js +46 -0
  113. package/lib/components/commons/components/html-table/thead.js +31 -0
  114. package/lib/components/commons/components/html-table/thead.spec.js +30 -0
  115. package/lib/components/commons/components/html-table/tr.js +33 -0
  116. package/lib/components/commons/components/html-table/tr.spec.js +45 -0
  117. package/lib/components/commons/components/is-network/index.js +13 -0
  118. package/lib/components/commons/components/is-network/is-network.js +53 -0
  119. package/lib/components/commons/components/is-network/is-network.spec.js +34 -0
  120. package/lib/components/commons/components/is-network/use-online-status.js +46 -0
  121. package/lib/components/commons/components/is-network/use-online-status.spec.js +45 -0
  122. package/lib/components/commons/components/label/index.js +13 -0
  123. package/lib/components/commons/components/label/label.js +35 -0
  124. package/lib/components/commons/components/label/label.scss +6 -0
  125. package/lib/components/commons/components/label/label.spec.js +78 -0
  126. package/lib/components/commons/components/lunatic-component-without-label.js +87 -0
  127. package/lib/components/commons/components/md-label/index.js +13 -0
  128. package/lib/components/commons/components/md-label/link.js +54 -0
  129. package/lib/components/commons/components/md-label/md-label.js +45 -0
  130. package/lib/components/commons/components/missing/index.js +13 -0
  131. package/lib/components/commons/components/missing/missing.js +87 -0
  132. package/lib/components/commons/components/missing/missing.scss +30 -0
  133. package/lib/components/commons/components/missing/missing.spec.js +81 -0
  134. package/lib/components/commons/components/nothing-to-display.js +16 -0
  135. package/lib/components/commons/components/nothing-to-display.spec.js +16 -0
  136. package/lib/components/commons/components/orchestrated-component.js +62 -0
  137. package/lib/components/commons/components/variable-status/img/index.js +20 -0
  138. package/lib/components/commons/components/variable-status/index.js +13 -0
  139. package/lib/components/commons/components/variable-status/variable-status.js +85 -0
  140. package/lib/components/commons/components/variable-status/variable-status.scss +39 -0
  141. package/lib/components/commons/components/variable-status/variable-status.spec.js +24 -0
  142. package/lib/components/commons/create-customizable-field.js +29 -0
  143. package/lib/components/commons/create-row-orchestrator.js +51 -0
  144. package/lib/components/commons/icons/checkbox-checked.icon.js +39 -0
  145. package/lib/components/commons/icons/checkbox-unchecked.icon.js +39 -0
  146. package/lib/components/commons/icons/closed.icon.js +36 -0
  147. package/lib/components/commons/icons/cross.icon.js +36 -0
  148. package/lib/components/commons/icons/index.js +76 -0
  149. package/lib/components/commons/icons/load.icon.js +36 -0
  150. package/lib/components/commons/icons/lunatic-icon.js +21 -0
  151. package/lib/components/commons/icons/lunatic-icon.scss +3 -0
  152. package/lib/components/commons/icons/network.icon.js +36 -0
  153. package/lib/components/commons/icons/on-drag.icon.js +36 -0
  154. package/lib/components/commons/icons/opened.icon.js +36 -0
  155. package/lib/components/commons/icons/radio-checked.icon.js +39 -0
  156. package/lib/components/commons/icons/radio-unchecked.icon.js +39 -0
  157. package/lib/components/commons/index.js +131 -0
  158. package/lib/components/commons/prop-types/declarations.js +19 -0
  159. package/lib/components/commons/prop-types/index.js +41 -0
  160. package/lib/components/commons/prop-types/lines.js +13 -0
  161. package/lib/components/commons/prop-types/options.js +13 -0
  162. package/lib/components/commons/prop-types/response.js +13 -0
  163. package/lib/components/commons/prop-types/value-type.js +14 -0
  164. package/lib/components/commons/safety-label.js +26 -0
  165. package/lib/components/commons/use-document-add-event-listener.js +84 -0
  166. package/lib/components/commons/use-on-handle-change.js +19 -0
  167. package/lib/components/commons/use-on-handle-change.spec.js +46 -0
  168. package/lib/components/commons/use-options-keydown.js +24 -0
  169. package/lib/components/commons/use-previous.js +16 -0
  170. package/lib/components/components.js +171 -0
  171. package/lib/components/datepicker/html/datepicker-container.js +18 -0
  172. package/lib/components/datepicker/html/datepicker-input.js +37 -0
  173. package/lib/components/datepicker/html/datepicker.js +69 -0
  174. package/lib/components/datepicker/html/datepicker.scss +1 -0
  175. package/lib/components/datepicker/index.js +13 -0
  176. package/lib/components/datepicker/lunatic-datepicker.js +61 -0
  177. package/lib/components/declarations/declaration.js +22 -0
  178. package/lib/components/declarations/declaration.spec.js +30 -0
  179. package/lib/components/declarations/declarations-after-text.js +25 -0
  180. package/lib/components/declarations/declarations-before-text.js +25 -0
  181. package/lib/components/declarations/declarations-detachable.js +25 -0
  182. package/lib/components/declarations/declarations.js +50 -0
  183. package/lib/components/declarations/declarations.scss +36 -0
  184. package/lib/components/declarations/declarations.spec.js +79 -0
  185. package/lib/components/declarations/index.js +43 -0
  186. package/lib/components/dropdown/html/dropdown-simple/dropdown-simple.js +39 -0
  187. package/lib/components/dropdown/html/dropdown-simple/index.js +13 -0
  188. package/lib/components/dropdown/html/dropdown-simple/simple-label-renderer.js +46 -0
  189. package/lib/components/dropdown/html/dropdown-simple/simple-option-renderer.js +45 -0
  190. package/lib/components/dropdown/html/dropdown-writable/dropdown-writable.js +62 -0
  191. package/lib/components/dropdown/html/dropdown-writable/filter-tools/filter-options.js +37 -0
  192. package/lib/components/dropdown/html/dropdown-writable/filter-tools/get-label.js +24 -0
  193. package/lib/components/dropdown/html/dropdown-writable/filter-tools/letters-matching.js +29 -0
  194. package/lib/components/dropdown/html/dropdown-writable/filter-tools/match.js +22 -0
  195. package/lib/components/dropdown/html/dropdown-writable/filter-tools/prepare-prefix.js +13 -0
  196. package/lib/components/dropdown/html/dropdown-writable/index.js +13 -0
  197. package/lib/components/dropdown/html/dropdown-writable/writable-label-renderer.js +52 -0
  198. package/lib/components/dropdown/html/dropdown-writable/writable-option-renderer.js +146 -0
  199. package/lib/components/dropdown/html/dropdown.js +51 -0
  200. package/lib/components/dropdown/html/dropdown.scss +41 -0
  201. package/lib/components/dropdown/index.js +13 -0
  202. package/lib/components/dropdown/lunatic-dropdown.js +75 -0
  203. package/lib/components/filter-description/component.js +22 -0
  204. package/lib/components/filter-description/component.spec.js +23 -0
  205. package/lib/components/filter-description/index.js +13 -0
  206. package/lib/components/index.js +28 -0
  207. package/lib/components/index.scss +136 -0
  208. package/lib/components/input/html/input.js +79 -0
  209. package/lib/components/input/html/input.scss +42 -0
  210. package/lib/components/input/index.js +13 -0
  211. package/lib/components/input/lunatic-input.js +57 -0
  212. package/lib/components/input-number/html/__snapshots__/inpute-number.spec.jsx.snap +92 -0
  213. package/lib/components/input-number/html/input-number-default.js +78 -0
  214. package/lib/components/input-number/html/input-number-thousand.js +54 -0
  215. package/lib/components/input-number/html/input-number.js +102 -0
  216. package/lib/components/input-number/html/input-number.scss +11 -0
  217. package/lib/components/input-number/html/inpute-number.spec.js +110 -0
  218. package/lib/components/input-number/index.js +13 -0
  219. package/lib/components/input-number/lunatic-input-number.js +64 -0
  220. package/lib/components/loop/block-for-loop/block-for-loop-ochestrator.js +12 -0
  221. package/lib/components/loop/block-for-loop/block-for-loop.js +140 -0
  222. package/lib/components/loop/block-for-loop/index.js +13 -0
  223. package/lib/components/loop/block-for-loop/row.js +66 -0
  224. package/lib/components/loop/commons/get-init-length.js +16 -0
  225. package/lib/components/loop/commons/handle-row-button.js +22 -0
  226. package/lib/components/loop/commons/index.js +20 -0
  227. package/lib/components/loop/commons/row-component.js +70 -0
  228. package/lib/components/loop/index.js +13 -0
  229. package/lib/components/loop/loop.js +82 -0
  230. package/lib/components/loop/roster-for-loop/body.js +56 -0
  231. package/lib/components/loop/roster-for-loop/header.js +34 -0
  232. package/lib/components/loop/roster-for-loop/index.js +13 -0
  233. package/lib/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +12 -0
  234. package/lib/components/loop/roster-for-loop/roster-for-loop.js +124 -0
  235. package/lib/components/loop/roster-for-loop/roster-table.js +48 -0
  236. package/lib/components/loop/roster-for-loop/roster.scss +42 -0
  237. package/lib/components/loop/roster-for-loop/row.js +73 -0
  238. package/lib/components/modal-controls/close-or-skip.js +41 -0
  239. package/lib/components/modal-controls/close-or-skip.spec.js +52 -0
  240. package/lib/components/modal-controls/index.js +13 -0
  241. package/lib/components/modal-controls/modal-container.js +22 -0
  242. package/lib/components/modal-controls/modal-container.spec.js +24 -0
  243. package/lib/components/modal-controls/modal-controls.js +78 -0
  244. package/lib/components/modal-controls/modal-controls.scss +48 -0
  245. package/lib/components/modal-controls/modal-controls.spec.js +77 -0
  246. package/lib/components/pairwise-links/index.js +13 -0
  247. package/lib/components/pairwise-links/orchestrator.js +70 -0
  248. package/lib/components/pairwise-links/pairwise-links.js +65 -0
  249. package/lib/components/pairwise-links/row.js +78 -0
  250. package/lib/components/radio/html/dist/radio-group.css +12 -0
  251. package/lib/components/radio/html/radio-group-content.js +45 -0
  252. package/lib/components/radio/html/radio-group-content.spec.js +86 -0
  253. package/lib/components/radio/html/radio-group.js +67 -0
  254. package/lib/components/radio/html/radio-group.scss +21 -0
  255. package/lib/components/radio/html/radio-option.js +105 -0
  256. package/lib/components/radio/html/radio-option.spec.js +80 -0
  257. package/lib/components/radio/index.js +13 -0
  258. package/lib/components/radio/lunatic-radio-group.js +64 -0
  259. package/lib/components/radio/radio-group.js +48 -0
  260. package/lib/components/radio/radio.scss +19 -0
  261. package/lib/components/roundabout/components/roundabout-container.js +20 -0
  262. package/lib/components/roundabout/components/roundabout-container.spec.js +23 -0
  263. package/lib/components/roundabout/components/roundabout-it-button.js +80 -0
  264. package/lib/components/roundabout/components/roundabout-it-button.spec.js +102 -0
  265. package/lib/components/roundabout/components/roundabout-it-container.js +19 -0
  266. package/lib/components/roundabout/components/roundabout-it-container.spec.js +23 -0
  267. package/lib/components/roundabout/components/roundabout-it-title.js +19 -0
  268. package/lib/components/roundabout/components/roundabout-it-title.spec.js +18 -0
  269. package/lib/components/roundabout/components/roundabout-label.js +19 -0
  270. package/lib/components/roundabout/components/roundabout-label.spec.js +18 -0
  271. package/lib/components/roundabout/components/roundabout-pending.js +18 -0
  272. package/lib/components/roundabout/components/roundabout-pending.spec.js +15 -0
  273. package/lib/components/roundabout/components/roundabout.scss +16 -0
  274. package/lib/components/roundabout/index.js +13 -0
  275. package/lib/components/roundabout/lunatic-roundabout.js +62 -0
  276. package/lib/components/roundabout/redirect.js +23 -0
  277. package/lib/components/roundabout/redirect.spec.js +19 -0
  278. package/lib/components/roundabout/roundabout.js +89 -0
  279. package/lib/components/roundabout/roundabout.spec.js +71 -0
  280. package/lib/components/sequence/index.js +13 -0
  281. package/lib/components/sequence/sequence.js +37 -0
  282. package/lib/components/sequence/sequence.scss +10 -0
  283. package/lib/components/sequence/sequence.spec.js +79 -0
  284. package/lib/components/subsequence/index.js +13 -0
  285. package/lib/components/subsequence/subsequence.js +35 -0
  286. package/lib/components/subsequence/subsequence.spec.js +79 -0
  287. package/lib/components/suggester/find-best-label/find-best-label.js +55 -0
  288. package/lib/components/suggester/find-best-label/index.js +13 -0
  289. package/lib/components/suggester/html/alert-icon.svg +2 -0
  290. package/lib/components/suggester/html/default-style.scss +175 -0
  291. package/lib/components/suggester/html/notification.js +31 -0
  292. package/lib/components/suggester/html/suggester.js +142 -0
  293. package/lib/components/suggester/html/wait-icon.svg +17 -0
  294. package/lib/components/suggester/html/warn-icon.svg +1 -0
  295. package/lib/components/suggester/idb-suggester/check-store.js +107 -0
  296. package/lib/components/suggester/idb-suggester/dist/index.dev.js +12 -0
  297. package/lib/components/suggester/idb-suggester/idb-suggester.js +90 -0
  298. package/lib/components/suggester/idb-suggester/index.js +12 -0
  299. package/lib/components/suggester/idb-suggester/suggester-notification.js +61 -0
  300. package/lib/components/suggester/idb-suggester/suggester-status.js +52 -0
  301. package/lib/components/suggester/index.js +13 -0
  302. package/lib/components/suggester/lunatic-suggester.js +106 -0
  303. package/lib/components/suggester/searching/create-searching.js +73 -0
  304. package/lib/components/suggester/searching/index.js +13 -0
  305. package/lib/components/suggester-loader-widget/index.js +13 -0
  306. package/lib/components/suggester-loader-widget/loader-row.js +129 -0
  307. package/lib/components/suggester-loader-widget/loader.js +136 -0
  308. package/lib/components/suggester-loader-widget/progress.js +41 -0
  309. package/lib/components/suggester-loader-widget/tools/action-tool.js +30 -0
  310. package/lib/components/suggester-loader-widget/tools/index.js +20 -0
  311. package/lib/components/suggester-loader-widget/tools/tools.js +18 -0
  312. package/lib/components/suggester-loader-widget/widget-container.js +44 -0
  313. package/lib/components/suggester-loader-widget/widget.js +145 -0
  314. package/lib/components/suggester-loader-widget/widget.scss +176 -0
  315. package/lib/components/switch/html/switch.js +95 -0
  316. package/lib/components/switch/html/switch.scss +47 -0
  317. package/lib/components/switch/index.js +13 -0
  318. package/lib/components/switch/lunatic-switch.js +66 -0
  319. package/lib/components/table/cell.js +102 -0
  320. package/lib/components/table/header.js +40 -0
  321. package/lib/components/table/index.js +13 -0
  322. package/lib/components/table/lunatic-table.js +92 -0
  323. package/lib/components/table/row.js +43 -0
  324. package/lib/components/table/table-orchestrator.js +50 -0
  325. package/lib/components/textarea/html/textarea.js +54 -0
  326. package/lib/components/textarea/html/textarea.scss +8 -0
  327. package/lib/components/textarea/index.js +13 -0
  328. package/lib/components/textarea/lunatic-textarea.js +72 -0
  329. package/lib/components/type.js +5 -0
  330. package/lib/constants/component-types.js +8 -0
  331. package/lib/constants/declarations.js +28 -0
  332. package/lib/constants/event-types.js +29 -0
  333. package/lib/constants/index.js +60 -0
  334. package/lib/constants/supported-preferences.js +13 -0
  335. package/lib/constants/value-types.js +16 -0
  336. package/lib/constants/variable-types.js +12 -0
  337. package/lib/dist/index.dev.js +31 -0
  338. package/lib/i18n/build-dictionary.js +59 -0
  339. package/lib/i18n/dictionary.js +34 -0
  340. package/lib/i18n/index.js +28 -0
  341. package/lib/i18n/inputNumberProps.js +20 -0
  342. package/lib/index.js +28 -33
  343. package/lib/insee.d.js +1 -0
  344. package/lib/src/components/commons/components/md-label/index.d.ts +1 -0
  345. package/lib/src/components/commons/components/md-label/link.d.ts +7 -0
  346. package/lib/src/components/commons/components/md-label/md-label.d.ts +8 -0
  347. package/lib/src/components/type.d.ts +195 -0
  348. package/lib/src/constants/component-types.d.ts +1 -0
  349. package/lib/src/constants/declarations.d.ts +9 -0
  350. package/lib/src/constants/event-types.d.ts +10 -0
  351. package/lib/src/constants/index.d.ts +5 -0
  352. package/lib/src/constants/supported-preferences.d.ts +1 -0
  353. package/lib/src/constants/value-types.d.ts +5 -0
  354. package/lib/src/constants/variable-types.d.ts +2 -0
  355. package/lib/src/i18n/build-dictionary.d.ts +24 -0
  356. package/lib/src/i18n/dictionary.d.ts +37 -0
  357. package/lib/src/i18n/index.d.ts +7 -0
  358. package/lib/src/i18n/inputNumberProps.d.ts +13 -0
  359. package/lib/src/index.d.ts +3 -0
  360. package/lib/src/type.utils.d.ts +1 -0
  361. package/lib/src/use-lunatic/actions.d.ts +289 -0
  362. package/lib/src/use-lunatic/commons/calculated-variables.d.ts +8 -0
  363. package/lib/src/use-lunatic/commons/check-loops.d.ts +3 -0
  364. package/lib/src/use-lunatic/commons/check-pager.d.ts +5 -0
  365. package/lib/src/use-lunatic/commons/compile-controls.d.ts +7 -0
  366. package/lib/src/use-lunatic/commons/compose.d.ts +3 -0
  367. package/lib/src/use-lunatic/commons/create-map-pages.d.ts +7 -0
  368. package/lib/src/use-lunatic/commons/execute-condition-filter.d.ts +3 -0
  369. package/lib/src/use-lunatic/commons/execute-expression/create-execute-expression.d.ts +9 -0
  370. package/lib/src/use-lunatic/commons/execute-expression/create-memoizer.d.ts +8 -0
  371. package/lib/src/use-lunatic/commons/execute-expression/create-refresh-calculated.d.ts +24 -0
  372. package/lib/src/use-lunatic/commons/execute-expression/execute-expression.d.ts +11 -0
  373. package/lib/src/use-lunatic/commons/execute-expression/execute-expression.spec.d.ts +1 -0
  374. package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.d.ts +7 -0
  375. package/lib/src/use-lunatic/commons/execute-expression/get-expressions-variables.spec.d.ts +1 -0
  376. package/lib/src/use-lunatic/commons/execute-expression/get-safety-expression.d.ts +6 -0
  377. package/lib/src/use-lunatic/commons/execute-expression/index.d.ts +1 -0
  378. package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.d.ts +9 -0
  379. package/lib/src/use-lunatic/commons/fill-components/fill-component-expressions.spec.d.ts +1 -0
  380. package/lib/src/use-lunatic/commons/fill-components/fill-component-value.d.ts +6 -0
  381. package/lib/src/use-lunatic/commons/fill-components/fill-components.d.ts +12 -0
  382. package/lib/src/use-lunatic/commons/fill-components/fill-from-state.d.ts +699 -0
  383. package/lib/src/use-lunatic/commons/fill-components/fill-management.d.ts +6 -0
  384. package/lib/src/use-lunatic/commons/fill-components/fill-missing-response.d.ts +11 -0
  385. package/lib/src/use-lunatic/commons/fill-components/fill-pagination.d.ts +9 -0
  386. package/lib/src/use-lunatic/commons/fill-components/fill-specific-expression.d.ts +571 -0
  387. package/lib/src/use-lunatic/commons/fill-components/index.d.ts +1 -0
  388. package/lib/src/use-lunatic/commons/get-compatible-vtl-expression.d.ts +6 -0
  389. package/lib/src/use-lunatic/commons/get-component-value/get-component-value.d.ts +6 -0
  390. package/lib/src/use-lunatic/commons/get-component-value/index.d.ts +1 -0
  391. package/lib/src/use-lunatic/commons/get-components-from-state.d.ts +7 -0
  392. package/lib/src/use-lunatic/commons/get-data.d.ts +26 -0
  393. package/lib/src/use-lunatic/commons/get-errors-without-empty-value.d.ts +6 -0
  394. package/lib/src/use-lunatic/commons/getOverview.d.ts +19 -0
  395. package/lib/src/use-lunatic/commons/index.d.ts +13 -0
  396. package/lib/src/use-lunatic/commons/is-First-last-page.d.ts +6 -0
  397. package/lib/src/use-lunatic/commons/is-paginated-loop.d.ts +6 -0
  398. package/lib/src/use-lunatic/commons/is-roundabout.d.ts +2 -0
  399. package/lib/src/use-lunatic/commons/page-tag.d.ts +12 -0
  400. package/lib/src/use-lunatic/commons/use-components-from-state.d.ts +4 -0
  401. package/lib/src/use-lunatic/hooks/use-loop-variables.d.ts +5 -0
  402. package/lib/src/use-lunatic/index.d.ts +1 -0
  403. package/lib/src/use-lunatic/initial-state.d.ts +3 -0
  404. package/lib/src/use-lunatic/lunatic-context.d.ts +31 -0
  405. package/lib/src/use-lunatic/reducer/commons/index.d.ts +4 -0
  406. package/lib/src/use-lunatic/reducer/commons/is-empty-on-empty-page.d.ts +3 -0
  407. package/lib/src/use-lunatic/reducer/commons/is-loop-component.d.ts +12 -0
  408. package/lib/src/use-lunatic/reducer/commons/resize-array-variable.d.ts +5 -0
  409. package/lib/src/use-lunatic/reducer/commons/validate-condition-filter.d.ts +6 -0
  410. package/lib/src/use-lunatic/reducer/index.d.ts +1 -0
  411. package/lib/src/use-lunatic/reducer/overview/overview-on-change.d.ts +2 -0
  412. package/lib/src/use-lunatic/reducer/overview/overview-on-init.d.ts +99 -0
  413. package/lib/src/use-lunatic/reducer/reduce-go-next-page.d.ts +4 -0
  414. package/lib/src/use-lunatic/reducer/reduce-go-previous-page.d.ts +3 -0
  415. package/lib/src/use-lunatic/reducer/reduce-go-to-page.d.ts +4 -0
  416. package/lib/src/use-lunatic/reducer/reduce-handle-change/index.d.ts +1 -0
  417. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.d.ts +7 -0
  418. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.d.ts +1 -0
  419. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.d.ts +4 -0
  420. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.d.ts +15 -0
  421. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-missing.d.ts +7 -0
  422. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-resizing.d.ts +4 -0
  423. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.d.ts +14 -0
  424. package/lib/src/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.d.ts +9 -0
  425. package/lib/src/use-lunatic/reducer/reduce-on-init.d.ts +15 -0
  426. package/lib/src/use-lunatic/reducer/reduce-on-set-waiting.d.ts +4 -0
  427. package/lib/src/use-lunatic/reducer/reduce-roundabout.d.ts +99 -0
  428. package/lib/src/use-lunatic/reducer/reduce-update-state.d.ts +3 -0
  429. package/lib/src/use-lunatic/reducer/reducer.d.ts +4 -0
  430. package/lib/src/use-lunatic/reducer/validate-controls/validation-utils.d.ts +6 -0
  431. package/lib/src/use-lunatic/type-source.d.ts +281 -0
  432. package/lib/src/use-lunatic/type.d.ts +143 -0
  433. package/lib/src/use-lunatic/use-lunatic.d.ts +84 -0
  434. package/lib/src/use-lunatic/use-lunatic.test.d.ts +1 -0
  435. package/lib/src/use-lunatic/use-suggesters.d.ts +19 -0
  436. package/lib/src/utils/constants/features.d.ts +3 -0
  437. package/lib/src/utils/constants/index.d.ts +5 -0
  438. package/lib/src/utils/constants/links.d.ts +2 -0
  439. package/lib/src/utils/constants/missing.d.ts +2 -0
  440. package/lib/src/utils/constants/variable-status.d.ts +5 -0
  441. package/lib/src/utils/constants/variable-types.d.ts +1 -0
  442. package/lib/src/utils/idb-tools/clear-store.d.ts +2 -0
  443. package/lib/src/utils/idb-tools/get-idb.d.ts +2 -0
  444. package/lib/src/utils/idb-tools/insert-entity.d.ts +2 -0
  445. package/lib/src/utils/is-element.d.ts +3 -0
  446. package/lib/src/utils/is-object.d.ts +4 -0
  447. package/lib/src/utils/object.d.ts +4 -0
  448. package/lib/src/utils/store-tools/constantes.d.ts +21 -0
  449. package/lib/src/utils/store-tools/initStore.d.ts +2 -0
  450. package/lib/src/utils/store-tools/open-or-create-store.d.ts +2 -0
  451. package/lib/src/utils/suggester-workers/append-to-index/create-append-task.d.ts +7 -0
  452. package/lib/src/utils/suggester-workers/create-worker-ts.d.ts +1 -0
  453. package/lib/src/utils/to-number.d.ts +4 -0
  454. package/lib/src/utils/vtl/dataset-builder.d.ts +5 -0
  455. package/lib/src/utils/vtl/index.d.ts +1 -0
  456. package/lib/stories/Introduction.stories.mdx +114 -0
  457. package/lib/stories/checkbox-boolean/checkboxBoolean.stories.js +34 -0
  458. package/lib/stories/checkbox-boolean/source.json +58 -0
  459. package/lib/stories/checkbox-group/checkbox-group.stories.js +34 -0
  460. package/lib/stories/checkbox-group/source.json +86 -0
  461. package/lib/stories/checkbox-one/checkboxOne.stories.js +43 -0
  462. package/lib/stories/checkbox-one/source.json +52 -0
  463. package/lib/stories/checkboxGroup/checkboxGroup.stories.js +43 -0
  464. package/lib/stories/checkboxGroup/source.json +403 -0
  465. package/lib/stories/custom-mui/checkbox-boolean-mui.js +32 -0
  466. package/lib/stories/custom-mui/checkbox-group-mui.js +68 -0
  467. package/lib/stories/custom-mui/checkbox-one-mui.js +16 -0
  468. package/lib/stories/custom-mui/index.js +111 -0
  469. package/lib/stories/custom-mui/input-mui.js +52 -0
  470. package/lib/stories/custom-mui/input-number-mui.js +40 -0
  471. package/lib/stories/custom-mui/radio-mui.js +62 -0
  472. package/lib/stories/custom-mui/suggester-mui/index.js +13 -0
  473. package/lib/stories/custom-mui/suggester-mui/suggester-mui.js +304 -0
  474. package/lib/stories/custom-mui/switch-mui.js +47 -0
  475. package/lib/stories/custom-mui/table-mui.js +28 -0
  476. package/lib/stories/custom-mui/tbody-mui.js +23 -0
  477. package/lib/stories/custom-mui/td-mui.js +25 -0
  478. package/lib/stories/custom-mui/textarea-mui.js +43 -0
  479. package/lib/stories/custom-mui/th-mui.js +24 -0
  480. package/lib/stories/custom-mui/thead-mui.js +23 -0
  481. package/lib/stories/custom-mui/tr-mui.js +33 -0
  482. package/lib/stories/date-picker/data.json +3 -0
  483. package/lib/stories/date-picker/datepicker.stories.js +38 -0
  484. package/lib/stories/date-picker/source.json +110 -0
  485. package/lib/stories/declaration/data.json +1 -0
  486. package/lib/stories/declaration/input.stories.js +36 -0
  487. package/lib/stories/declaration/source.json +74 -0
  488. package/lib/stories/dropdown/data.json +16 -0
  489. package/lib/stories/dropdown/dropdown.stories.js +39 -0
  490. package/lib/stories/dropdown/source.json +158 -0
  491. package/lib/stories/filter-description/filter-description.stories.js +50 -0
  492. package/lib/stories/filter-description/source-options.json +81 -0
  493. package/lib/stories/filter-description/source.json +11 -0
  494. package/lib/stories/input/data.json +1 -0
  495. package/lib/stories/input/input.stories.js +36 -0
  496. package/lib/stories/input/source.json +91 -0
  497. package/lib/stories/input-number/input-number.stories.js +56 -0
  498. package/lib/stories/input-number/source-euros.json +37 -0
  499. package/lib/stories/input-number/source-thansand.json +34 -0
  500. package/lib/stories/input-number/source.json +33 -0
  501. package/lib/stories/loop/block-for-loop.stories.js +41 -0
  502. package/lib/stories/loop/roster-for-loop.stories.js +34 -0
  503. package/lib/stories/loop/source-bloc.json +114 -0
  504. package/lib/stories/loop/source-roster.json +114 -0
  505. package/lib/stories/loop/source-with-header.json +127 -0
  506. package/lib/stories/overview/data.json +1 -0
  507. package/lib/stories/overview/overview.stories.js +37 -0
  508. package/lib/stories/overview/source.json +28 -0
  509. package/lib/stories/overview/sourceWithHierarchy.json +6290 -0
  510. package/lib/stories/pairwise/data.json +12 -0
  511. package/lib/stories/pairwise/links.json +270 -0
  512. package/lib/stories/pairwise/pairwise-links.stories.js +137 -0
  513. package/lib/stories/paste-questionnaire/source.json +6290 -0
  514. package/lib/stories/paste-questionnaire/test.stories.js +84 -0
  515. package/lib/stories/questionnaires/logement/data.json +2686 -0
  516. package/lib/stories/questionnaires/logement/logement.stories.js +76 -0
  517. package/lib/stories/questionnaires/logement/source-sequence.json +34181 -0
  518. package/lib/stories/questionnaires/logement/source-sum.json +34612 -0
  519. package/lib/stories/questionnaires/logement/source.json +34191 -0
  520. package/lib/stories/questionnaires/recensement/data.json +12 -0
  521. package/lib/stories/questionnaires/recensement/recensement.stories.js +52 -0
  522. package/lib/stories/questionnaires/recensement/source.json +15190 -0
  523. package/lib/stories/questionnaires/rp/data.json +5 -0
  524. package/lib/stories/questionnaires/rp/rp.stories.js +37 -0
  525. package/lib/stories/questionnaires/rp/source.json +262 -0
  526. package/lib/stories/questionnaires/simpsons/simpsons.stories.js +553 -0
  527. package/lib/stories/questionnaires/simpsons/source.json +6296 -0
  528. package/lib/stories/questionnaires-test/V2_DeclarationsSimples.json +848 -0
  529. package/lib/stories/questionnaires-test/V2_MinMaxSum_Boucles.json +509 -0
  530. package/lib/stories/questionnaires-test/V2_QuestSimple_Boucles.json +4091 -0
  531. package/lib/stories/questionnaires-test/V2_TCMRallyeGames.json +2892 -0
  532. package/lib/stories/questionnaires-test/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +666 -0
  533. package/lib/stories/questionnaires-test/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +1966 -0
  534. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees2_PasPageFin.json +709 -0
  535. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees_PasPageFin.json +533 -0
  536. package/lib/stories/questionnaires-test/controls/boucles-n.json +202 -0
  537. package/lib/stories/questionnaires-test/controls/controls.stories.js +97 -0
  538. package/lib/stories/questionnaires-test/test-dylan.json +558 -0
  539. package/lib/stories/questionnaires-test/test.stories.js +93 -0
  540. package/lib/stories/radio/radio.stories.js +43 -0
  541. package/lib/stories/radio/source.json +51 -0
  542. package/lib/stories/roundabout/data.json +25 -0
  543. package/lib/stories/roundabout/roundabout.stories.js +36 -0
  544. package/lib/stories/roundabout/source.json +273 -0
  545. package/lib/stories/suggester/simple.json +146 -0
  546. package/lib/stories/suggester/source.json +254 -0
  547. package/lib/stories/suggester/suggester-workers.stories.js +208 -0
  548. package/lib/stories/suggester/suggester.stories.js +84 -0
  549. package/lib/stories/switch/README.md +31 -0
  550. package/lib/stories/switch/data-forced.json +48 -0
  551. package/lib/stories/switch/source.json +80 -0
  552. package/lib/stories/switch/switch.stories.js +39 -0
  553. package/lib/stories/table/data-roster.json +1 -0
  554. package/lib/stories/table/data.json +1 -0
  555. package/lib/stories/table/source-roster.json +513 -0
  556. package/lib/stories/table/source.json +31 -0
  557. package/lib/stories/table/table-dynamique.json +67 -0
  558. package/lib/stories/table/table.stories.js +63 -0
  559. package/lib/stories/textarea/data.json +1 -0
  560. package/lib/stories/textarea/source.json +51 -0
  561. package/lib/stories/textarea/textarea.stories.js +36 -0
  562. package/lib/stories/utils/custom-lunatic.scss +28 -0
  563. package/lib/stories/utils/default-arg-types.js +22 -0
  564. package/lib/stories/utils/options.js +32 -0
  565. package/lib/stories/utils/orchestrator.js +263 -0
  566. package/lib/stories/utils/orchestrator.scss +5 -0
  567. package/lib/stories/utils/overview.js +54 -0
  568. package/lib/stories/utils/overview.scss +30 -0
  569. package/lib/stories/utils/waiting/index.js +13 -0
  570. package/lib/stories/utils/waiting/preloader.svg +1 -0
  571. package/lib/stories/utils/waiting/waiting.js +33 -0
  572. package/lib/stories/utils/waiting/waiting.scss +21 -0
  573. package/lib/tests/utils/lunatic.d.ts +11 -0
  574. package/lib/type.utils.js +5 -0
  575. package/lib/use-lunatic/actions.js +60 -0
  576. package/lib/use-lunatic/commons/calculated-variables.js +104 -0
  577. package/lib/use-lunatic/commons/check-loops.js +99 -0
  578. package/lib/use-lunatic/commons/check-pager.js +24 -0
  579. package/lib/use-lunatic/commons/compile-controls.js +72 -0
  580. package/lib/use-lunatic/commons/compose.js +20 -0
  581. package/lib/use-lunatic/commons/create-map-pages.js +81 -0
  582. package/lib/use-lunatic/commons/execute-condition-filter.js +27 -0
  583. package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +268 -0
  584. package/lib/use-lunatic/commons/execute-expression/create-memoizer.js +63 -0
  585. package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.js +148 -0
  586. package/lib/use-lunatic/commons/execute-expression/execute-expression.js +91 -0
  587. package/lib/use-lunatic/commons/execute-expression/execute-expression.spec.js +38 -0
  588. package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.js +40 -0
  589. package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.spec.js +31 -0
  590. package/lib/use-lunatic/commons/execute-expression/get-safety-expression.js +35 -0
  591. package/lib/use-lunatic/commons/execute-expression/index.js +13 -0
  592. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +111 -0
  593. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.spec.js +42 -0
  594. package/lib/use-lunatic/commons/fill-components/fill-component-value.js +22 -0
  595. package/lib/use-lunatic/commons/fill-components/fill-components.js +45 -0
  596. package/lib/use-lunatic/commons/fill-components/fill-from-state.js +30 -0
  597. package/lib/use-lunatic/commons/fill-components/fill-management.js +23 -0
  598. package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +35 -0
  599. package/lib/use-lunatic/commons/fill-components/fill-pagination.js +24 -0
  600. package/lib/use-lunatic/commons/fill-components/fill-specific-expression.js +46 -0
  601. package/lib/use-lunatic/commons/fill-components/index.js +13 -0
  602. package/lib/use-lunatic/commons/get-compatible-vtl-expression.js +28 -0
  603. package/lib/use-lunatic/commons/get-component-value/get-component-value.js +176 -0
  604. package/lib/use-lunatic/commons/get-component-value/index.js +13 -0
  605. package/lib/use-lunatic/commons/get-components-from-state.js +47 -0
  606. package/lib/use-lunatic/commons/get-data.js +80 -0
  607. package/lib/use-lunatic/commons/get-errors-without-empty-value.js +25 -0
  608. package/lib/use-lunatic/commons/getOverview.js +40 -0
  609. package/lib/use-lunatic/commons/index.js +109 -0
  610. package/lib/use-lunatic/commons/is-First-last-page.js +18 -0
  611. package/lib/use-lunatic/commons/is-paginated-loop.js +11 -0
  612. package/lib/use-lunatic/commons/is-roundabout.js +10 -0
  613. package/lib/use-lunatic/commons/load-suggesters.js +158 -0
  614. package/lib/use-lunatic/commons/page-tag.js +72 -0
  615. package/lib/use-lunatic/commons/use-components-from-state.js +41 -0
  616. package/lib/use-lunatic/hooks/use-loop-variables.js +26 -0
  617. package/lib/use-lunatic/index.js +13 -0
  618. package/lib/use-lunatic/initial-state.js +49 -0
  619. package/lib/use-lunatic/lunatic-context.js +83 -0
  620. package/lib/use-lunatic/reducer/commons/index.js +44 -0
  621. package/lib/use-lunatic/reducer/commons/is-empty-on-empty-page.js +32 -0
  622. package/lib/use-lunatic/reducer/commons/is-loop-component.js +10 -0
  623. package/lib/use-lunatic/reducer/commons/resize-array-variable.js +32 -0
  624. package/lib/use-lunatic/reducer/commons/validate-condition-filter.js +29 -0
  625. package/lib/use-lunatic/reducer/index.js +13 -0
  626. package/lib/use-lunatic/reducer/overview/overview-on-change.js +49 -0
  627. package/lib/use-lunatic/reducer/overview/overview-on-init.js +104 -0
  628. package/lib/use-lunatic/reducer/reduce-go-next-page.js +181 -0
  629. package/lib/use-lunatic/reducer/reduce-go-previous-page.js +146 -0
  630. package/lib/use-lunatic/reducer/reduce-go-to-page.js +79 -0
  631. package/lib/use-lunatic/reducer/reduce-handle-change/__mocks__/source-cleaning-loop.json +926 -0
  632. package/lib/use-lunatic/reducer/reduce-handle-change/index.js +13 -0
  633. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.js +72 -0
  634. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.spec.js +46 -0
  635. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +115 -0
  636. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.js +89 -0
  637. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-missing.js +88 -0
  638. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-resizing.js +113 -0
  639. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.js +44 -0
  640. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +28 -0
  641. package/lib/use-lunatic/reducer/reduce-on-init.js +238 -0
  642. package/lib/use-lunatic/reducer/reduce-on-set-waiting.js +21 -0
  643. package/lib/use-lunatic/reducer/reduce-roundabout.js +29 -0
  644. package/lib/use-lunatic/reducer/reduce-update-state.js +22 -0
  645. package/lib/use-lunatic/reducer/reducer.js +37 -0
  646. package/lib/use-lunatic/reducer/validate-controls/validation-utils.js +63 -0
  647. package/lib/use-lunatic/type-source.js +24 -0
  648. package/lib/use-lunatic/type.js +5 -0
  649. package/lib/use-lunatic/use-lunatic.js +189 -0
  650. package/lib/use-lunatic/use-lunatic.test.js +168 -0
  651. package/lib/use-lunatic/use-suggesters.js +158 -0
  652. package/lib/utils/constants/alphabet.js +8 -0
  653. package/lib/utils/constants/features.js +12 -0
  654. package/lib/utils/constants/index.js +60 -0
  655. package/lib/utils/constants/links.js +10 -0
  656. package/lib/utils/constants/missing.js +10 -0
  657. package/lib/utils/constants/variable-status.js +16 -0
  658. package/lib/utils/constants/variable-types.js +8 -0
  659. package/lib/utils/idb-tools/clear-store.js +40 -0
  660. package/lib/utils/idb-tools/create-db-opener.js +47 -0
  661. package/lib/utils/idb-tools/create-open-db.js +29 -0
  662. package/lib/utils/idb-tools/get-entity.js +21 -0
  663. package/lib/utils/idb-tools/get-idb.js +13 -0
  664. package/lib/utils/idb-tools/idb-bulk-insert.js +134 -0
  665. package/lib/utils/idb-tools/index.js +64 -0
  666. package/lib/utils/idb-tools/insert-entity.js +21 -0
  667. package/lib/utils/idb-tools/open-db.js +24 -0
  668. package/lib/utils/idb-tools/open-or-create-db.js +42 -0
  669. package/lib/utils/is-element.js +10 -0
  670. package/lib/utils/is-object.js +13 -0
  671. package/lib/utils/object.js +31 -0
  672. package/lib/utils/store-tools/auto-load.js +162 -0
  673. package/lib/utils/store-tools/clear-store-data.js +33 -0
  674. package/lib/utils/store-tools/clear-store-info.js +33 -0
  675. package/lib/utils/store-tools/constantes.js +31 -0
  676. package/lib/utils/store-tools/create/create.js +51 -0
  677. package/lib/utils/store-tools/create/index.js +20 -0
  678. package/lib/utils/store-tools/create/update-store-info.js +27 -0
  679. package/lib/utils/store-tools/get-store-count.js +24 -0
  680. package/lib/utils/store-tools/index.js +54 -0
  681. package/lib/utils/store-tools/initStore.js +56 -0
  682. package/lib/utils/store-tools/open-or-create-store.js +52 -0
  683. package/lib/utils/store-tools/use-store-index.js +58 -0
  684. package/lib/utils/suggester-workers/append-to-index/append.js +78 -0
  685. package/lib/utils/suggester-workers/append-to-index/append.worker.js +33 -0
  686. package/lib/utils/suggester-workers/append-to-index/create-append-task.js +66 -0
  687. package/lib/utils/suggester-workers/append-to-index/dist/append.worker.dev.js +37 -0
  688. package/lib/utils/suggester-workers/append-to-index/dist/create-append-task.js +69 -0
  689. package/lib/utils/suggester-workers/append-to-index/dist/index.dev.js +24 -0
  690. package/lib/utils/suggester-workers/append-to-index/index.js +20 -0
  691. package/lib/utils/suggester-workers/append-to-index/prepare-entities.js +88 -0
  692. package/lib/utils/suggester-workers/append-to-index/store-messages.js +45 -0
  693. package/lib/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +54 -0
  694. package/lib/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +77 -0
  695. package/lib/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +36 -0
  696. package/lib/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +21 -0
  697. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +36 -0
  698. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +15 -0
  699. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +19 -0
  700. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +17 -0
  701. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.js +25 -0
  702. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +24 -0
  703. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.js +15 -0
  704. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +24 -0
  705. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.js +23 -0
  706. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +17 -0
  707. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +53 -0
  708. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +15 -0
  709. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +16 -0
  710. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +15 -0
  711. package/lib/utils/suggester-workers/commons-tokenizer/filters/index.js +20 -0
  712. package/lib/utils/suggester-workers/commons-tokenizer/filters/stop-words.js +9 -0
  713. package/lib/utils/suggester-workers/commons-tokenizer/get-regexp-from-pattern.js +14 -0
  714. package/lib/utils/suggester-workers/commons-tokenizer/get-stemmer.js +23 -0
  715. package/lib/utils/suggester-workers/commons-tokenizer/index.js +69 -0
  716. package/lib/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +18 -0
  717. package/lib/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +12 -0
  718. package/lib/utils/suggester-workers/create-worker-ts.js +54 -0
  719. package/lib/utils/suggester-workers/create-worker.js +54 -0
  720. package/lib/utils/suggester-workers/find-best-label/find-best-label.js +63 -0
  721. package/lib/utils/suggester-workers/find-best-label/find-best-label.worker.js +53 -0
  722. package/lib/utils/suggester-workers/find-best-label/index.js +1 -0
  723. package/lib/utils/suggester-workers/find-best-label/tokenize.js +45 -0
  724. package/lib/utils/suggester-workers/find-best-label/tokenize.spec.js +25 -0
  725. package/lib/utils/suggester-workers/searching/compute-score.js +36 -0
  726. package/lib/utils/suggester-workers/searching/get-db.js +48 -0
  727. package/lib/utils/suggester-workers/searching/index.js +13 -0
  728. package/lib/utils/suggester-workers/searching/order/create-alphanumeric-orderer.js +28 -0
  729. package/lib/utils/suggester-workers/searching/order/index.js +25 -0
  730. package/lib/utils/suggester-workers/searching/query-parser/index.js +20 -0
  731. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.js +12 -0
  732. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.spec.js +27 -0
  733. package/lib/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +35 -0
  734. package/lib/utils/suggester-workers/searching/resolve-query-parser.js +57 -0
  735. package/lib/utils/suggester-workers/searching/search-in-index.js +22 -0
  736. package/lib/utils/suggester-workers/searching/searching.js +141 -0
  737. package/lib/utils/suggester-workers/searching/searching.worker.js +20 -0
  738. package/lib/utils/to-number.js +18 -0
  739. package/lib/utils/vtl/dataset-builder.js +27 -0
  740. package/lib/utils/vtl/index.js +13 -0
  741. package/package.json +164 -143
  742. package/lib/index.js.map +0 -1
  743. package/src/components/breadcrumb/breadcrumb.scss +0 -20
  744. package/src/components/breadcrumb/component.js +0 -29
  745. package/src/components/breadcrumb/index.js +0 -1
  746. package/src/components/button/button.scss +0 -24
  747. package/src/components/button/component.js +0 -25
  748. package/src/components/button/index.js +0 -1
  749. package/src/components/checkbox/boolean.js +0 -152
  750. package/src/components/checkbox/checkbox.scss +0 -71
  751. package/src/components/checkbox/group.js +0 -187
  752. package/src/components/checkbox/index.js +0 -3
  753. package/src/components/checkbox/one.js +0 -10
  754. package/src/components/components.js +0 -17
  755. package/src/components/datepicker/component.js +0 -10
  756. package/src/components/datepicker/datepicker.scss +0 -1
  757. package/src/components/datepicker/index.js +0 -1
  758. package/src/components/declarations/component.js +0 -38
  759. package/src/components/declarations/declarations.scss +0 -38
  760. package/src/components/declarations/index.js +0 -1
  761. package/src/components/declarations/wrappers/index.js +0 -3
  762. package/src/components/declarations/wrappers/input-declarations-wrapper.js +0 -229
  763. package/src/components/declarations/wrappers/list-declarations-wrapper.js +0 -203
  764. package/src/components/declarations/wrappers/simple-declarations-wrapper.js +0 -54
  765. package/src/components/dropdown/commons/actions.js +0 -56
  766. package/src/components/dropdown/commons/children-to-option.js +0 -9
  767. package/src/components/dropdown/commons/cleaner-callbacks.js +0 -58
  768. package/src/components/dropdown/commons/components/closed.icon.js +0 -24
  769. package/src/components/dropdown/commons/components/dropdown-container.js +0 -29
  770. package/src/components/dropdown/commons/components/dropdown-field.js +0 -46
  771. package/src/components/dropdown/commons/components/dropdown.js +0 -183
  772. package/src/components/dropdown/commons/components/label.js +0 -28
  773. package/src/components/dropdown/commons/components/opened.icon.js +0 -24
  774. package/src/components/dropdown/commons/components/panel.js +0 -78
  775. package/src/components/dropdown/commons/event-callbacks/index.js +0 -5
  776. package/src/components/dropdown/commons/event-callbacks/on-keydown-callback.js +0 -29
  777. package/src/components/dropdown/commons/event-callbacks/on-mousedown-callback.js +0 -11
  778. package/src/components/dropdown/commons/reducer.js +0 -149
  779. package/src/components/dropdown/commons/tools/index.js +0 -17
  780. package/src/components/dropdown/component.js +0 -125
  781. package/src/components/dropdown/dropdown-edit/cross.icon.js +0 -20
  782. package/src/components/dropdown/dropdown-edit/dropdown-edit.js +0 -190
  783. package/src/components/dropdown/dropdown-edit/icone.js +0 -33
  784. package/src/components/dropdown/dropdown-edit/index.js +0 -11
  785. package/src/components/dropdown/dropdown-edit/option.js +0 -62
  786. package/src/components/dropdown/dropdown-edit/prefix-tools.js +0 -51
  787. package/src/components/dropdown/dropdown-simple/dropdown.js +0 -155
  788. package/src/components/dropdown/dropdown-simple/index.js +0 -20
  789. package/src/components/dropdown/dropdown-simple/option.js +0 -15
  790. package/src/components/dropdown/dropdown.scss +0 -175
  791. package/src/components/dropdown/index.js +0 -1
  792. package/src/components/filter-description/component.js +0 -41
  793. package/src/components/filter-description/index.js +0 -1
  794. package/src/components/icon/assets/checkbox-checked.js +0 -16
  795. package/src/components/icon/assets/checkbox-unchecked.js +0 -16
  796. package/src/components/icon/assets/index.js +0 -4
  797. package/src/components/icon/assets/radio-checked.js +0 -16
  798. package/src/components/icon/assets/radio-unchecked.js +0 -16
  799. package/src/components/icon/component.js +0 -33
  800. package/src/components/icon/icon.scss +0 -13
  801. package/src/components/icon/index.js +0 -1
  802. package/src/components/index.js +0 -4
  803. package/src/components/index.scss +0 -141
  804. package/src/components/input/index.js +0 -2
  805. package/src/components/input/input-number.js +0 -44
  806. package/src/components/input/input.js +0 -10
  807. package/src/components/input/input.scss +0 -35
  808. package/src/components/loop/component.js +0 -105
  809. package/src/components/loop/index.js +0 -1
  810. package/src/components/loop/loop.scss +0 -11
  811. package/src/components/loop/paginated-component.js +0 -205
  812. package/src/components/loop/wrapper.js +0 -15
  813. package/src/components/loop-constructor/block/block.scss +0 -8
  814. package/src/components/loop-constructor/block/component.js +0 -8
  815. package/src/components/loop-constructor/block/index.js +0 -1
  816. package/src/components/loop-constructor/index.js +0 -1
  817. package/src/components/loop-constructor/roster/component.js +0 -7
  818. package/src/components/loop-constructor/roster/index.js +0 -1
  819. package/src/components/loop-constructor/wrapper/body-component.js +0 -118
  820. package/src/components/loop-constructor/wrapper/build-components.js +0 -33
  821. package/src/components/loop-constructor/wrapper/component.js +0 -154
  822. package/src/components/loop-constructor/wrapper/index.js +0 -1
  823. package/src/components/progress-bar/component.js +0 -28
  824. package/src/components/progress-bar/index.js +0 -1
  825. package/src/components/progress-bar/progress-bar.scss +0 -52
  826. package/src/components/radio/component.js +0 -8
  827. package/src/components/radio/index.js +0 -1
  828. package/src/components/radio/radio.scss +0 -57
  829. package/src/components/sequence/component.js +0 -41
  830. package/src/components/sequence/index.js +0 -1
  831. package/src/components/sequence/sequence.scss +0 -8
  832. package/src/components/subsequence/component.js +0 -47
  833. package/src/components/subsequence/index.js +0 -1
  834. package/src/components/suggester/component.js +0 -103
  835. package/src/components/suggester/index.js +0 -1
  836. package/src/components/table/index.js +0 -1
  837. package/src/components/table/table.js +0 -162
  838. package/src/components/table/table.scss +0 -24
  839. package/src/components/textarea/component.js +0 -10
  840. package/src/components/textarea/index.js +0 -1
  841. package/src/components/textarea/textarea.scss +0 -6
  842. package/src/components/tooltip/img/index.js +0 -4
  843. package/src/components/tooltip/index.js +0 -1
  844. package/src/components/tooltip/response.js +0 -52
  845. package/src/components/tooltip/tooltip.scss +0 -27
  846. package/src/constants/component-types.js +0 -1
  847. package/src/constants/declarations.js +0 -14
  848. package/src/constants/index.js +0 -4
  849. package/src/constants/supported-preferences.js +0 -10
  850. package/src/constants/value-types.js +0 -5
  851. package/src/constants/variable-types.js +0 -4
  852. package/src/stories/breadcrumb/README.md +0 -14
  853. package/src/stories/breadcrumb/breadcrumb.stories.js +0 -19
  854. package/src/stories/button/README.md +0 -14
  855. package/src/stories/button/button.stories.js +0 -27
  856. package/src/stories/checkbox-boolean/README.md +0 -27
  857. package/src/stories/checkbox-boolean/checkbox-boolean.stories.js +0 -30
  858. package/src/stories/checkbox-boolean/data.json +0 -48
  859. package/src/stories/checkbox-group/README.md +0 -29
  860. package/src/stories/checkbox-group/checkbox-group.stories.js +0 -35
  861. package/src/stories/checkbox-group/data-vtl.json +0 -89
  862. package/src/stories/checkbox-group/data.json +0 -89
  863. package/src/stories/checkbox-one/README.md +0 -31
  864. package/src/stories/checkbox-one/checkbox-one.stories.js +0 -32
  865. package/src/stories/checkbox-one/data-vtl.json +0 -33
  866. package/src/stories/checkbox-one/data.json +0 -33
  867. package/src/stories/datepicker/README.md +0 -31
  868. package/src/stories/datepicker/data.json +0 -28
  869. package/src/stories/datepicker/datepicker.stories.js +0 -36
  870. package/src/stories/declarations/README.md +0 -19
  871. package/src/stories/declarations/declarations.stories.js +0 -112
  872. package/src/stories/dropdown/README.md +0 -44
  873. package/src/stories/dropdown/data-naf.json +0 -6963
  874. package/src/stories/dropdown/data-props.json +0 -81
  875. package/src/stories/dropdown/data.json +0 -78
  876. package/src/stories/dropdown/dropdown.stories.js +0 -65
  877. package/src/stories/filter-description/README.md +0 -15
  878. package/src/stories/filter-description/filter-description.stories.js +0 -53
  879. package/src/stories/input/README.md +0 -33
  880. package/src/stories/input/data.json +0 -28
  881. package/src/stories/input/input.stories.js +0 -44
  882. package/src/stories/input-number/README.md +0 -37
  883. package/src/stories/input-number/data.json +0 -30
  884. package/src/stories/input-number/input-number.stories.js +0 -53
  885. package/src/stories/loop/README.md +0 -25
  886. package/src/stories/loop/loop.stories.js +0 -80
  887. package/src/stories/loop/with-loop/data-loop-deeper.json +0 -298
  888. package/src/stories/loop/with-loop/data-loop.json +0 -211
  889. package/src/stories/loop/with-loop/data-vqs.json +0 -1384
  890. package/src/stories/loop/with-loop/index.js +0 -3
  891. package/src/stories/loop/with-roster/data-loop-deeper.json +0 -298
  892. package/src/stories/loop/with-roster/data-loop.json +0 -213
  893. package/src/stories/loop/with-roster/data-vqs.json +0 -1383
  894. package/src/stories/loop/with-roster/index.js +0 -3
  895. package/src/stories/loop-constructor/README.md +0 -27
  896. package/src/stories/loop-constructor/data-input.json +0 -64
  897. package/src/stories/loop-constructor/data-loop.json +0 -66
  898. package/src/stories/loop-constructor/data-roster.json +0 -68
  899. package/src/stories/loop-constructor/loop-constructor.stories.js +0 -59
  900. package/src/stories/pagination/deeper-loop.json +0 -327
  901. package/src/stories/pagination/pagination.stories.js +0 -57
  902. package/src/stories/pagination/simple-loop.json +0 -277
  903. package/src/stories/pagination/simpsons-question.json +0 -4262
  904. package/src/stories/pagination/simpsons-sequence.json +0 -4362
  905. package/src/stories/progress-bar/README.md +0 -13
  906. package/src/stories/progress-bar/progress-bar.stories.js +0 -24
  907. package/src/stories/questionnaire/fat.json +0 -6558
  908. package/src/stories/questionnaire/questionnaire.stories.js +0 -25
  909. package/src/stories/radio/README.md +0 -31
  910. package/src/stories/radio/data-vtl.json +0 -32
  911. package/src/stories/radio/data.json +0 -32
  912. package/src/stories/radio/radio.stories.js +0 -35
  913. package/src/stories/sequence/README.md +0 -18
  914. package/src/stories/sequence/sequence.stories.js +0 -28
  915. package/src/stories/subsequence/README.md +0 -18
  916. package/src/stories/subsequence/subsequence.stories.js +0 -28
  917. package/src/stories/suggester/README.md +0 -29
  918. package/src/stories/suggester/data-vtl.json +0 -28
  919. package/src/stories/suggester/data.json +0 -28
  920. package/src/stories/suggester/suggester.stories.js +0 -38
  921. package/src/stories/table/README.md +0 -29
  922. package/src/stories/table/data-default.json +0 -19
  923. package/src/stories/table/data-one-axis-one-measure.json +0 -124
  924. package/src/stories/table/data-one-axis-two-measures.json +0 -193
  925. package/src/stories/table/data-one-hierarchical-axis.json +0 -204
  926. package/src/stories/table/data-roster.json +0 -471
  927. package/src/stories/table/data-two-axis-one-measure.json +0 -492
  928. package/src/stories/table/table.stories.js +0 -77
  929. package/src/stories/textarea/README.md +0 -33
  930. package/src/stories/textarea/data-forced.json +0 -28
  931. package/src/stories/textarea/data.json +0 -28
  932. package/src/stories/textarea/textarea.stories.js +0 -67
  933. package/src/stories/tooltip-response/README.md +0 -14
  934. package/src/stories/tooltip-response/md-link.json +0 -31
  935. package/src/stories/tooltip-response/md-tooltip.json +0 -31
  936. package/src/stories/tooltip-response/tooltip.stories.js +0 -83
  937. package/src/stories/utils/custom-lunatic.scss +0 -23
  938. package/src/stories/utils/img/arrow.png +0 -0
  939. package/src/stories/utils/img/check_box.svg +0 -1
  940. package/src/stories/utils/img/check_box_outline.svg +0 -1
  941. package/src/stories/utils/img/lunatic-logo.png +0 -0
  942. package/src/stories/utils/img/menu-down.svg +0 -1
  943. package/src/stories/utils/img/menu-up.svg +0 -1
  944. package/src/stories/utils/img/radio_button_checked.svg +0 -1
  945. package/src/stories/utils/img/radio_button_unchecked.svg +0 -1
  946. package/src/stories/utils/options.js +0 -25
  947. package/src/stories/utils/orchestrator.js +0 -83
  948. package/src/tests/components/breadcrumb.spec.js +0 -13
  949. package/src/tests/components/button.spec.js +0 -11
  950. package/src/tests/components/checkbox-boolean.spec.js +0 -45
  951. package/src/tests/components/checkbox-group.spec.js +0 -53
  952. package/src/tests/components/checkbox-one.spec.js +0 -32
  953. package/src/tests/components/datepicker.spec.js +0 -22
  954. package/src/tests/components/declarations-wrappers/input-declarations-wrapper.spec.js +0 -67
  955. package/src/tests/components/declarations-wrappers/list-declarations-wrapper.spec.js +0 -52
  956. package/src/tests/components/declarations-wrappers/simple-declarations-wrapper.spec.js +0 -21
  957. package/src/tests/components/declarations.spec.js +0 -46
  958. package/src/tests/components/input-number.spec.js +0 -194
  959. package/src/tests/components/input.spec.js +0 -18
  960. package/src/tests/components/progress-bar.spec.js +0 -15
  961. package/src/tests/components/radio.spec.js +0 -27
  962. package/src/tests/components/sequence.spec.js +0 -9
  963. package/src/tests/components/subsequence.spec.js +0 -9
  964. package/src/tests/components/table.spec.js +0 -11
  965. package/src/tests/components/textarea.spec.js +0 -18
  966. package/src/tests/components/tooltip.spec.js +0 -25
  967. package/src/tests/setup/setupTests.js +0 -4
  968. package/src/tests/utils/lib/alphabet.spec.js +0 -36
  969. package/src/tests/utils/lib/checkbox/group.spec.js +0 -72
  970. package/src/tests/utils/lib/decorator/title-decorator.spec.js +0 -12
  971. package/src/tests/utils/lib/items-positioning.spec.js +0 -17
  972. package/src/tests/utils/lib/label-position.spec.js +0 -22
  973. package/src/tests/utils/lib/loops/bindings.spec.js +0 -60
  974. package/src/tests/utils/lib/loops/shared.spec.js +0 -78
  975. package/src/tests/utils/lib/pagination/shared.spec.js +0 -42
  976. package/src/tests/utils/lib/responses.spec.js +0 -64
  977. package/src/tests/utils/lib/style.spec.js +0 -26
  978. package/src/tests/utils/lib/table/roster.spec.js +0 -25
  979. package/src/tests/utils/lib/tooltip/build-response.spec.js +0 -95
  980. package/src/tests/utils/lib/tooltip/content.spec.js +0 -109
  981. package/src/tests/utils/to-expose/handler/handler.spec.js +0 -86
  982. package/src/tests/utils/to-expose/handler/questionnaire.json +0 -154
  983. package/src/tests/utils/to-expose/handler/results/index.js +0 -6
  984. package/src/tests/utils/to-expose/handler/results/res-double.json +0 -157
  985. package/src/tests/utils/to-expose/handler/results/res-input-collected.json +0 -154
  986. package/src/tests/utils/to-expose/handler/results/res-input-edited.json +0 -157
  987. package/src/tests/utils/to-expose/handler/results/res-loop.json +0 -157
  988. package/src/tests/utils/to-expose/handler/results/res-matrix.json +0 -157
  989. package/src/tests/utils/to-expose/handler/results/res-responses.json +0 -157
  990. package/src/tests/utils/to-expose/init-questionnaire/data.json +0 -12
  991. package/src/tests/utils/to-expose/init-questionnaire/init-questionnaire.spec.js +0 -19
  992. package/src/tests/utils/to-expose/init-questionnaire/questionnaire.json +0 -129
  993. package/src/tests/utils/to-expose/init-questionnaire/result.json +0 -162
  994. package/src/tests/utils/to-expose/interpret/interpret.spec.js +0 -66
  995. package/src/tests/utils/to-expose/state/questionnaire.json +0 -61
  996. package/src/tests/utils/to-expose/state/results.js +0 -78
  997. package/src/tests/utils/to-expose/state/state.spec.js +0 -59
  998. package/src/utils/lib/alphabet.js +0 -1
  999. package/src/utils/lib/checkbox/group.js +0 -21
  1000. package/src/utils/lib/checkbox/index.js +0 -1
  1001. package/src/utils/lib/decorator/index.js +0 -1
  1002. package/src/utils/lib/decorator/title-decorator.js +0 -16
  1003. package/src/utils/lib/index.js +0 -13
  1004. package/src/utils/lib/label-position.js +0 -12
  1005. package/src/utils/lib/loops/bindings.js +0 -53
  1006. package/src/utils/lib/loops/build-components.js +0 -33
  1007. package/src/utils/lib/loops/index.js +0 -3
  1008. package/src/utils/lib/loops/shared.js +0 -43
  1009. package/src/utils/lib/memo-check.js +0 -24
  1010. package/src/utils/lib/options-positioning.js +0 -9
  1011. package/src/utils/lib/pagination/flow.js +0 -2
  1012. package/src/utils/lib/pagination/index.js +0 -2
  1013. package/src/utils/lib/pagination/navigation/index.js +0 -1
  1014. package/src/utils/lib/pagination/navigation/shared.js +0 -107
  1015. package/src/utils/lib/prop-types/declarations.js +0 -22
  1016. package/src/utils/lib/prop-types/index.js +0 -5
  1017. package/src/utils/lib/prop-types/lines.js +0 -6
  1018. package/src/utils/lib/prop-types/options.js +0 -8
  1019. package/src/utils/lib/prop-types/response.js +0 -6
  1020. package/src/utils/lib/prop-types/value-type.js +0 -9
  1021. package/src/utils/lib/responses.js +0 -9
  1022. package/src/utils/lib/style.js +0 -10
  1023. package/src/utils/lib/table/index.js +0 -1
  1024. package/src/utils/lib/table/roster.js +0 -23
  1025. package/src/utils/lib/tooltip/build-response.js +0 -41
  1026. package/src/utils/lib/tooltip/content.js +0 -55
  1027. package/src/utils/lib/tooltip/index.js +0 -6
  1028. package/src/utils/to-expose/handler.js +0 -99
  1029. package/src/utils/to-expose/hook.js +0 -153
  1030. package/src/utils/to-expose/index.js +0 -11
  1031. package/src/utils/to-expose/init-questionnaire.js +0 -116
  1032. package/src/utils/to-expose/interpret/index.js +0 -1
  1033. package/src/utils/to-expose/interpret/main.js +0 -36
  1034. package/src/utils/to-expose/interpret/md.js +0 -42
  1035. package/src/utils/to-expose/interpret/vtl.js +0 -43
  1036. package/src/utils/to-expose/state.js +0 -58
  1037. /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/edited.png +0 -0
  1038. /package/{src/components/tooltip → lib/components/commons/components/variable-status}/img/forced.png +0 -0
@@ -0,0 +1,2686 @@
1
+ {
2
+ "EXTERNAL": {
3
+ "COM": "SAINT_MARTIN_DU_PALU",
4
+ "CODE_COM": "000",
5
+ "CODE_DEP": "973",
6
+ "ILOT": null,
7
+ "RANG_L": null,
8
+ "RANG_A": null
9
+ },
10
+ "COLLECTED": {
11
+ "DAG": {
12
+ "EDITED": null,
13
+ "FORCED": null,
14
+ "INPUTED": null,
15
+ "PREVIOUS": null,
16
+ "COLLECTED": null
17
+ },
18
+ "DST": {
19
+ "EDITED": null,
20
+ "FORCED": null,
21
+ "INPUTED": null,
22
+ "PREVIOUS": null,
23
+ "COLLECTED": null
24
+ },
25
+ "DTA": {
26
+ "EDITED": null,
27
+ "FORCED": null,
28
+ "INPUTED": null,
29
+ "PREVIOUS": null,
30
+ "COLLECTED": null
31
+ },
32
+ "DTL": {
33
+ "EDITED": null,
34
+ "FORCED": null,
35
+ "INPUTED": null,
36
+ "PREVIOUS": null,
37
+ "COLLECTED": null
38
+ },
39
+ "HPA": {
40
+ "EDITED": null,
41
+ "FORCED": null,
42
+ "INPUTED": null,
43
+ "PREVIOUS": null,
44
+ "COLLECTED": null
45
+ },
46
+ "HPH": {
47
+ "EDITED": null,
48
+ "FORCED": null,
49
+ "INPUTED": null,
50
+ "PREVIOUS": null,
51
+ "COLLECTED": null
52
+ },
53
+ "HPP": {
54
+ "EDITED": null,
55
+ "FORCED": null,
56
+ "INPUTED": null,
57
+ "PREVIOUS": null,
58
+ "COLLECTED": null
59
+ },
60
+ "HSP": {
61
+ "EDITED": null,
62
+ "FORCED": null,
63
+ "INPUTED": null,
64
+ "PREVIOUS": null,
65
+ "COLLECTED": null
66
+ },
67
+ "HST": {
68
+ "EDITED": null,
69
+ "FORCED": null,
70
+ "INPUTED": null,
71
+ "PREVIOUS": null,
72
+ "COLLECTED": null
73
+ },
74
+ "HUA": {
75
+ "EDITED": null,
76
+ "FORCED": null,
77
+ "INPUTED": null,
78
+ "PREVIOUS": null,
79
+ "COLLECTED": null
80
+ },
81
+ "HUP": {
82
+ "EDITED": null,
83
+ "FORCED": null,
84
+ "INPUTED": null,
85
+ "PREVIOUS": null,
86
+ "COLLECTED": null
87
+ },
88
+ "HUT": {
89
+ "EDITED": null,
90
+ "FORCED": null,
91
+ "INPUTED": null,
92
+ "PREVIOUS": null,
93
+ "COLLECTED": null
94
+ },
95
+ "IAS": {
96
+ "EDITED": null,
97
+ "FORCED": null,
98
+ "INPUTED": null,
99
+ "PREVIOUS": null,
100
+ "COLLECTED": null
101
+ },
102
+ "IEL": {
103
+ "EDITED": null,
104
+ "FORCED": null,
105
+ "INPUTED": null,
106
+ "PREVIOUS": null,
107
+ "COLLECTED": null
108
+ },
109
+ "IMI": {
110
+ "EDITED": null,
111
+ "FORCED": null,
112
+ "INPUTED": null,
113
+ "PREVIOUS": null,
114
+ "COLLECTED": "1"
115
+ },
116
+ "KBA": {
117
+ "EDITED": null,
118
+ "FORCED": null,
119
+ "INPUTED": null,
120
+ "PREVIOUS": null,
121
+ "COLLECTED": null
122
+ },
123
+ "KBD": {
124
+ "EDITED": null,
125
+ "FORCED": null,
126
+ "INPUTED": null,
127
+ "PREVIOUS": null,
128
+ "COLLECTED": null
129
+ },
130
+ "KCA": {
131
+ "EDITED": null,
132
+ "FORCED": null,
133
+ "INPUTED": null,
134
+ "PREVIOUS": null,
135
+ "COLLECTED": null
136
+ },
137
+ "KJA": {
138
+ "EDITED": null,
139
+ "FORCED": null,
140
+ "INPUTED": null,
141
+ "PREVIOUS": null,
142
+ "COLLECTED": null
143
+ },
144
+ "KJC": {
145
+ "EDITED": null,
146
+ "FORCED": null,
147
+ "INPUTED": null,
148
+ "PREVIOUS": null,
149
+ "COLLECTED": null
150
+ },
151
+ "KSB": {
152
+ "EDITED": null,
153
+ "FORCED": null,
154
+ "INPUTED": null,
155
+ "PREVIOUS": null,
156
+ "COLLECTED": null
157
+ },
158
+ "KSV": {
159
+ "EDITED": null,
160
+ "FORCED": null,
161
+ "INPUTED": null,
162
+ "PREVIOUS": null,
163
+ "COLLECTED": null
164
+ },
165
+ "KVE": {
166
+ "EDITED": null,
167
+ "FORCED": null,
168
+ "INPUTED": null,
169
+ "PREVIOUS": null,
170
+ "COLLECTED": null
171
+ },
172
+ "ODF": {
173
+ "EDITED": null,
174
+ "FORCED": null,
175
+ "INPUTED": null,
176
+ "PREVIOUS": null,
177
+ "COLLECTED": null
178
+ },
179
+ "ODL": {
180
+ "EDITED": null,
181
+ "FORCED": null,
182
+ "INPUTED": null,
183
+ "PREVIOUS": null,
184
+ "COLLECTED": null
185
+ },
186
+ "OIH": {
187
+ "EDITED": null,
188
+ "FORCED": null,
189
+ "INPUTED": null,
190
+ "PREVIOUS": null,
191
+ "COLLECTED": null
192
+ },
193
+ "OLA": {
194
+ "EDITED": null,
195
+ "FORCED": null,
196
+ "INPUTED": null,
197
+ "PREVIOUS": null,
198
+ "COLLECTED": null
199
+ },
200
+ "OQA": {
201
+ "EDITED": null,
202
+ "FORCED": null,
203
+ "INPUTED": null,
204
+ "PREVIOUS": null,
205
+ "COLLECTED": null
206
+ },
207
+ "VIN": {
208
+ "EDITED": null,
209
+ "FORCED": null,
210
+ "INPUTED": null,
211
+ "PREVIOUS": null,
212
+ "COLLECTED": null
213
+ },
214
+ "VLR": {
215
+ "EDITED": null,
216
+ "FORCED": null,
217
+ "INPUTED": null,
218
+ "PREVIOUS": null,
219
+ "COLLECTED": null
220
+ },
221
+ "VND": {
222
+ "EDITED": null,
223
+ "FORCED": null,
224
+ "INPUTED": null,
225
+ "PREVIOUS": null,
226
+ "COLLECTED": null
227
+ },
228
+ "VOP": {
229
+ "EDITED": null,
230
+ "FORCED": null,
231
+ "INPUTED": null,
232
+ "PREVIOUS": null,
233
+ "COLLECTED": null
234
+ },
235
+ "VPI": {
236
+ "EDITED": null,
237
+ "FORCED": null,
238
+ "INPUTED": null,
239
+ "PREVIOUS": null,
240
+ "COLLECTED": null
241
+ },
242
+ "VSY": {
243
+ "EDITED": null,
244
+ "FORCED": null,
245
+ "INPUTED": null,
246
+ "PREVIOUS": null,
247
+ "COLLECTED": null
248
+ },
249
+ "CADR": {
250
+ "EDITED": null,
251
+ "FORCED": null,
252
+ "INPUTED": null,
253
+ "PREVIOUS": null,
254
+ "COLLECTED": "2"
255
+ },
256
+ "DALO": {
257
+ "EDITED": null,
258
+ "FORCED": null,
259
+ "INPUTED": null,
260
+ "PREVIOUS": null,
261
+ "COLLECTED": null
262
+ },
263
+ "DDAT": {
264
+ "EDITED": null,
265
+ "FORCED": null,
266
+ "INPUTED": null,
267
+ "PREVIOUS": null,
268
+ "COLLECTED": null
269
+ },
270
+ "DDEM": {
271
+ "EDITED": null,
272
+ "FORCED": null,
273
+ "INPUTED": null,
274
+ "PREVIOUS": null,
275
+ "COLLECTED": null
276
+ },
277
+ "DORM": {
278
+ "EDITED": [null],
279
+ "FORCED": [null],
280
+ "INPUTED": [null],
281
+ "PREVIOUS": [null],
282
+ "COLLECTED": [null, null, null, null]
283
+ },
284
+ "DSTL": {
285
+ "EDITED": null,
286
+ "FORCED": null,
287
+ "INPUTED": null,
288
+ "PREVIOUS": null,
289
+ "COLLECTED": null
290
+ },
291
+ "DSTP": {
292
+ "EDITED": null,
293
+ "FORCED": null,
294
+ "INPUTED": null,
295
+ "PREVIOUS": null,
296
+ "COLLECTED": null
297
+ },
298
+ "HAUT": {
299
+ "EDITED": null,
300
+ "FORCED": null,
301
+ "INPUTED": null,
302
+ "PREVIOUS": null,
303
+ "COLLECTED": null
304
+ },
305
+ "HCHA": {
306
+ "EDITED": null,
307
+ "FORCED": null,
308
+ "INPUTED": null,
309
+ "PREVIOUS": null,
310
+ "COLLECTED": null
311
+ },
312
+ "HPI1": {
313
+ "EDITED": null,
314
+ "FORCED": null,
315
+ "INPUTED": null,
316
+ "PREVIOUS": null,
317
+ "COLLECTED": null
318
+ },
319
+ "HPI2": {
320
+ "EDITED": null,
321
+ "FORCED": null,
322
+ "INPUTED": null,
323
+ "PREVIOUS": null,
324
+ "COLLECTED": null
325
+ },
326
+ "HSI1": {
327
+ "EDITED": null,
328
+ "FORCED": null,
329
+ "INPUTED": null,
330
+ "PREVIOUS": null,
331
+ "COLLECTED": null
332
+ },
333
+ "HSI2": {
334
+ "EDITED": null,
335
+ "FORCED": null,
336
+ "INPUTED": null,
337
+ "PREVIOUS": null,
338
+ "COLLECTED": null
339
+ },
340
+ "ICOI": {
341
+ "EDITED": null,
342
+ "FORCED": null,
343
+ "INPUTED": null,
344
+ "PREVIOUS": null,
345
+ "COLLECTED": "2"
346
+ },
347
+ "KAO1": {
348
+ "EDITED": null,
349
+ "FORCED": null,
350
+ "INPUTED": null,
351
+ "PREVIOUS": null,
352
+ "COLLECTED": null
353
+ },
354
+ "KCU1": {
355
+ "EDITED": null,
356
+ "FORCED": null,
357
+ "INPUTED": null,
358
+ "PREVIOUS": null,
359
+ "COLLECTED": null
360
+ },
361
+ "KCU2": {
362
+ "EDITED": null,
363
+ "FORCED": null,
364
+ "INPUTED": null,
365
+ "PREVIOUS": null,
366
+ "COLLECTED": null
367
+ },
368
+ "KGA1": {
369
+ "EDITED": null,
370
+ "FORCED": null,
371
+ "INPUTED": null,
372
+ "PREVIOUS": null,
373
+ "COLLECTED": null
374
+ },
375
+ "KGA2": {
376
+ "EDITED": null,
377
+ "FORCED": null,
378
+ "INPUTED": null,
379
+ "PREVIOUS": null,
380
+ "COLLECTED": null
381
+ },
382
+ "KGA3": {
383
+ "EDITED": null,
384
+ "FORCED": null,
385
+ "INPUTED": null,
386
+ "PREVIOUS": null,
387
+ "COLLECTED": null
388
+ },
389
+ "KGA4": {
390
+ "EDITED": null,
391
+ "FORCED": null,
392
+ "INPUTED": null,
393
+ "PREVIOUS": null,
394
+ "COLLECTED": null
395
+ },
396
+ "KGRA": {
397
+ "EDITED": null,
398
+ "FORCED": null,
399
+ "INPUTED": null,
400
+ "PREVIOUS": null,
401
+ "COLLECTED": null
402
+ },
403
+ "KSE1": {
404
+ "EDITED": null,
405
+ "FORCED": null,
406
+ "INPUTED": null,
407
+ "PREVIOUS": null,
408
+ "COLLECTED": null
409
+ },
410
+ "KSE3": {
411
+ "EDITED": null,
412
+ "FORCED": null,
413
+ "INPUTED": null,
414
+ "PREVIOUS": null,
415
+ "COLLECTED": null
416
+ },
417
+ "KSJC": {
418
+ "EDITED": null,
419
+ "FORCED": null,
420
+ "INPUTED": null,
421
+ "PREVIOUS": null,
422
+ "COLLECTED": null
423
+ },
424
+ "KSMI": {
425
+ "EDITED": null,
426
+ "FORCED": null,
427
+ "INPUTED": null,
428
+ "PREVIOUS": null,
429
+ "COLLECTED": null
430
+ },
431
+ "KSOA": {
432
+ "EDITED": null,
433
+ "FORCED": null,
434
+ "INPUTED": null,
435
+ "PREVIOUS": null,
436
+ "COLLECTED": null
437
+ },
438
+ "KSV1": {
439
+ "EDITED": null,
440
+ "FORCED": null,
441
+ "INPUTED": null,
442
+ "PREVIOUS": null,
443
+ "COLLECTED": null
444
+ },
445
+ "KWC1": {
446
+ "EDITED": null,
447
+ "FORCED": null,
448
+ "INPUTED": null,
449
+ "PREVIOUS": null,
450
+ "COLLECTED": null
451
+ },
452
+ "KWCD": {
453
+ "EDITED": null,
454
+ "FORCED": null,
455
+ "INPUTED": null,
456
+ "PREVIOUS": null,
457
+ "COLLECTED": null
458
+ },
459
+ "KWCI": {
460
+ "EDITED": null,
461
+ "FORCED": null,
462
+ "INPUTED": null,
463
+ "PREVIOUS": null,
464
+ "COLLECTED": null
465
+ },
466
+ "LIEN": {
467
+ "EDITED": [null],
468
+ "FORCED": [null],
469
+ "INPUTED": [null],
470
+ "PREVIOUS": [null],
471
+ "COLLECTED": [null, "1", "3", "3"]
472
+ },
473
+ "MAA3": {
474
+ "EDITED": null,
475
+ "FORCED": null,
476
+ "INPUTED": null,
477
+ "PREVIOUS": null,
478
+ "COLLECTED": null
479
+ },
480
+ "OIHD": {
481
+ "EDITED": null,
482
+ "FORCED": null,
483
+ "INPUTED": null,
484
+ "PREVIOUS": null,
485
+ "COLLECTED": null
486
+ },
487
+ "OIHE": {
488
+ "EDITED": null,
489
+ "FORCED": null,
490
+ "INPUTED": null,
491
+ "PREVIOUS": null,
492
+ "COLLECTED": null
493
+ },
494
+ "OLAD": {
495
+ "EDITED": null,
496
+ "FORCED": null,
497
+ "INPUTED": null,
498
+ "PREVIOUS": null,
499
+ "COLLECTED": null
500
+ },
501
+ "OQAD": {
502
+ "EDITED": null,
503
+ "FORCED": null,
504
+ "INPUTED": null,
505
+ "PREVIOUS": null,
506
+ "COLLECTED": null
507
+ },
508
+ "SDL2": {
509
+ "EDITED": [null],
510
+ "FORCED": [null],
511
+ "INPUTED": [null],
512
+ "PREVIOUS": [null],
513
+ "COLLECTED": [null]
514
+ },
515
+ "SDL4": {
516
+ "EDITED": [null],
517
+ "FORCED": [null],
518
+ "INPUTED": [null],
519
+ "PREVIOUS": [null],
520
+ "COLLECTED": [null]
521
+ },
522
+ "SDN1": {
523
+ "EDITED": [null],
524
+ "FORCED": [null],
525
+ "INPUTED": [null],
526
+ "PREVIOUS": [null],
527
+ "COLLECTED": [null]
528
+ },
529
+ "SDT1": {
530
+ "EDITED": [null],
531
+ "FORCED": [null],
532
+ "INPUTED": [null],
533
+ "PREVIOUS": [null],
534
+ "COLLECTED": [null]
535
+ },
536
+ "SDT2": {
537
+ "EDITED": [null],
538
+ "FORCED": [null],
539
+ "INPUTED": [null],
540
+ "PREVIOUS": [null],
541
+ "COLLECTED": [null]
542
+ },
543
+ "SEXE": {
544
+ "EDITED": [null],
545
+ "FORCED": [null],
546
+ "INPUTED": [null],
547
+ "PREVIOUS": [null],
548
+ "COLLECTED": ["1", "2", "2", "1"]
549
+ },
550
+ "UWEB": {
551
+ "EDITED": null,
552
+ "FORCED": null,
553
+ "INPUTED": null,
554
+ "PREVIOUS": null,
555
+ "COLLECTED": null
556
+ },
557
+ "VAID": {
558
+ "EDITED": null,
559
+ "FORCED": null,
560
+ "INPUTED": null,
561
+ "PREVIOUS": null,
562
+ "COLLECTED": null
563
+ },
564
+ "VDD1": {
565
+ "EDITED": null,
566
+ "FORCED": null,
567
+ "INPUTED": null,
568
+ "PREVIOUS": null,
569
+ "COLLECTED": null
570
+ },
571
+ "VDSY": {
572
+ "EDITED": null,
573
+ "FORCED": null,
574
+ "INPUTED": null,
575
+ "PREVIOUS": null,
576
+ "COLLECTED": null
577
+ },
578
+ "VFFH": {
579
+ "EDITED": null,
580
+ "FORCED": null,
581
+ "INPUTED": null,
582
+ "PREVIOUS": null,
583
+ "COLLECTED": null
584
+ },
585
+ "VFLA": {
586
+ "EDITED": null,
587
+ "FORCED": null,
588
+ "INPUTED": null,
589
+ "PREVIOUS": null,
590
+ "COLLECTED": null
591
+ },
592
+ "VLA1": {
593
+ "EDITED": null,
594
+ "FORCED": null,
595
+ "INPUTED": null,
596
+ "PREVIOUS": null,
597
+ "COLLECTED": null
598
+ },
599
+ "VLRD": {
600
+ "EDITED": null,
601
+ "FORCED": null,
602
+ "INPUTED": null,
603
+ "PREVIOUS": null,
604
+ "COLLECTED": null
605
+ },
606
+ "VPID": {
607
+ "EDITED": null,
608
+ "FORCED": null,
609
+ "INPUTED": null,
610
+ "PREVIOUS": null,
611
+ "COLLECTED": null
612
+ },
613
+ "VPRA": {
614
+ "EDITED": null,
615
+ "FORCED": null,
616
+ "INPUTED": null,
617
+ "PREVIOUS": null,
618
+ "COLLECTED": null
619
+ },
620
+ "VSO1": {
621
+ "EDITED": null,
622
+ "FORCED": null,
623
+ "INPUTED": null,
624
+ "PREVIOUS": null,
625
+ "COLLECTED": null
626
+ },
627
+ "VTL1": {
628
+ "EDITED": null,
629
+ "FORCED": null,
630
+ "INPUTED": null,
631
+ "PREVIOUS": null,
632
+ "COLLECTED": null
633
+ },
634
+ "VTLD": {
635
+ "EDITED": null,
636
+ "FORCED": null,
637
+ "INPUTED": null,
638
+ "PREVIOUS": null,
639
+ "COLLECTED": null
640
+ },
641
+ "CHGNC": {
642
+ "EDITED": null,
643
+ "FORCED": null,
644
+ "INPUTED": null,
645
+ "PREVIOUS": null,
646
+ "COLLECTED": null
647
+ },
648
+ "DAGEO": {
649
+ "EDITED": null,
650
+ "FORCED": null,
651
+ "INPUTED": null,
652
+ "PREVIOUS": null,
653
+ "COLLECTED": null
654
+ },
655
+ "DAGRL": {
656
+ "EDITED": null,
657
+ "FORCED": null,
658
+ "INPUTED": null,
659
+ "PREVIOUS": null,
660
+ "COLLECTED": null
661
+ },
662
+ "EAMIA": {
663
+ "EDITED": [null],
664
+ "FORCED": [null],
665
+ "INPUTED": [null],
666
+ "PREVIOUS": [null],
667
+ "COLLECTED": [null]
668
+ },
669
+ "EAMIH": {
670
+ "EDITED": [null],
671
+ "FORCED": [null],
672
+ "INPUTED": [null],
673
+ "PREVIOUS": [null],
674
+ "COLLECTED": [null]
675
+ },
676
+ "EAMIK": {
677
+ "EDITED": [null],
678
+ "FORCED": [null],
679
+ "INPUTED": [null],
680
+ "PREVIOUS": [null],
681
+ "COLLECTED": [null]
682
+ },
683
+ "EAMIL": {
684
+ "EDITED": [null],
685
+ "FORCED": [null],
686
+ "INPUTED": [null],
687
+ "PREVIOUS": [null],
688
+ "COLLECTED": [null]
689
+ },
690
+ "EPAS1": {
691
+ "EDITED": [null],
692
+ "FORCED": [null],
693
+ "INPUTED": [null],
694
+ "PREVIOUS": [null],
695
+ "COLLECTED": [null]
696
+ },
697
+ "EPASB": {
698
+ "EDITED": [null],
699
+ "FORCED": [null],
700
+ "INPUTED": [null],
701
+ "PREVIOUS": [null],
702
+ "COLLECTED": [null]
703
+ },
704
+ "EPASC": {
705
+ "EDITED": [null],
706
+ "FORCED": [null],
707
+ "INPUTED": [null],
708
+ "PREVIOUS": [null],
709
+ "COLLECTED": [null]
710
+ },
711
+ "EPROJ": {
712
+ "EDITED": [null],
713
+ "FORCED": [null],
714
+ "INPUTED": [null],
715
+ "PREVIOUS": [null],
716
+ "COLLECTED": [null]
717
+ },
718
+ "GARDE": {
719
+ "EDITED": [null],
720
+ "FORCED": [null],
721
+ "INPUTED": [null],
722
+ "PREVIOUS": [null],
723
+ "COLLECTED": [null, null, null, null]
724
+ },
725
+ "HPEUP": {
726
+ "EDITED": null,
727
+ "FORCED": null,
728
+ "INPUTED": null,
729
+ "PREVIOUS": null,
730
+ "COLLECTED": null
731
+ },
732
+ "HTLC1": {
733
+ "EDITED": null,
734
+ "FORCED": null,
735
+ "INPUTED": null,
736
+ "PREVIOUS": null,
737
+ "COLLECTED": "1"
738
+ },
739
+ "IAATC": {
740
+ "EDITED": null,
741
+ "FORCED": null,
742
+ "INPUTED": null,
743
+ "PREVIOUS": null,
744
+ "COLLECTED": "5"
745
+ },
746
+ "KDLK1": {
747
+ "EDITED": null,
748
+ "FORCED": null,
749
+ "INPUTED": null,
750
+ "PREVIOUS": null,
751
+ "COLLECTED": null
752
+ },
753
+ "KDLK2": {
754
+ "EDITED": null,
755
+ "FORCED": null,
756
+ "INPUTED": null,
757
+ "PREVIOUS": null,
758
+ "COLLECTED": null
759
+ },
760
+ "KGA11": {
761
+ "EDITED": null,
762
+ "FORCED": null,
763
+ "INPUTED": null,
764
+ "PREVIOUS": null,
765
+ "COLLECTED": null
766
+ },
767
+ "KGA12": {
768
+ "EDITED": null,
769
+ "FORCED": null,
770
+ "INPUTED": null,
771
+ "PREVIOUS": null,
772
+ "COLLECTED": null
773
+ },
774
+ "KGA13": {
775
+ "EDITED": null,
776
+ "FORCED": null,
777
+ "INPUTED": null,
778
+ "PREVIOUS": null,
779
+ "COLLECTED": null
780
+ },
781
+ "KGA14": {
782
+ "EDITED": null,
783
+ "FORCED": null,
784
+ "INPUTED": null,
785
+ "PREVIOUS": null,
786
+ "COLLECTED": null
787
+ },
788
+ "KGRAA": {
789
+ "EDITED": null,
790
+ "FORCED": null,
791
+ "INPUTED": null,
792
+ "PREVIOUS": null,
793
+ "COLLECTED": null
794
+ },
795
+ "KPISC": {
796
+ "EDITED": null,
797
+ "FORCED": null,
798
+ "INPUTED": null,
799
+ "PREVIOUS": null,
800
+ "COLLECTED": null
801
+ },
802
+ "KSJPC": {
803
+ "EDITED": null,
804
+ "FORCED": null,
805
+ "INPUTED": null,
806
+ "PREVIOUS": null,
807
+ "COLLECTED": null
808
+ },
809
+ "KSJPI": {
810
+ "EDITED": null,
811
+ "FORCED": null,
812
+ "INPUTED": null,
813
+ "PREVIOUS": null,
814
+ "COLLECTED": null
815
+ },
816
+ "KVELO": {
817
+ "EDITED": null,
818
+ "FORCED": null,
819
+ "INPUTED": null,
820
+ "PREVIOUS": null,
821
+ "COLLECTED": null
822
+ },
823
+ "LIMT1": {
824
+ "EDITED": null,
825
+ "FORCED": null,
826
+ "INPUTED": null,
827
+ "PREVIOUS": null,
828
+ "COLLECTED": null
829
+ },
830
+ "LIMT2": {
831
+ "EDITED": [null],
832
+ "FORCED": [null],
833
+ "INPUTED": [null],
834
+ "PREVIOUS": [null],
835
+ "COLLECTED": [null]
836
+ },
837
+ "LNAIS": {
838
+ "EDITED": [null],
839
+ "FORCED": [null],
840
+ "INPUTED": [null],
841
+ "PREVIOUS": [null],
842
+ "COLLECTED": ["1", "1", "1", "1"]
843
+ },
844
+ "LOGCO": {
845
+ "EDITED": [null],
846
+ "FORCED": [null],
847
+ "INPUTED": [null],
848
+ "PREVIOUS": [null],
849
+ "COLLECTED": [null, null, null, null]
850
+ },
851
+ "MAA2A": {
852
+ "EDITED": null,
853
+ "FORCED": null,
854
+ "INPUTED": null,
855
+ "PREVIOUS": null,
856
+ "COLLECTED": null
857
+ },
858
+ "MAA2M": {
859
+ "EDITED": null,
860
+ "FORCED": null,
861
+ "INPUTED": null,
862
+ "PREVIOUS": null,
863
+ "COLLECTED": null
864
+ },
865
+ "MAA3A": {
866
+ "EDITED": null,
867
+ "FORCED": null,
868
+ "INPUTED": null,
869
+ "PREVIOUS": null,
870
+ "COLLECTED": null
871
+ },
872
+ "MAA3M": {
873
+ "EDITED": null,
874
+ "FORCED": null,
875
+ "INPUTED": null,
876
+ "PREVIOUS": null,
877
+ "COLLECTED": null
878
+ },
879
+ "MCHR1": {
880
+ "EDITED": null,
881
+ "FORCED": null,
882
+ "INPUTED": null,
883
+ "PREVIOUS": null,
884
+ "COLLECTED": null
885
+ },
886
+ "MCHR2": {
887
+ "EDITED": [null],
888
+ "FORCED": [null],
889
+ "INPUTED": [null],
890
+ "PREVIOUS": [null],
891
+ "COLLECTED": [null]
892
+ },
893
+ "NBHAB": {
894
+ "EDITED": null,
895
+ "FORCED": null,
896
+ "INPUTED": null,
897
+ "PREVIOUS": null,
898
+ "COLLECTED": "4"
899
+ },
900
+ "OIHB1": {
901
+ "EDITED": null,
902
+ "FORCED": null,
903
+ "INPUTED": null,
904
+ "PREVIOUS": null,
905
+ "COLLECTED": null
906
+ },
907
+ "OIHB2": {
908
+ "EDITED": null,
909
+ "FORCED": null,
910
+ "INPUTED": null,
911
+ "PREVIOUS": null,
912
+ "COLLECTED": null
913
+ },
914
+ "OIHB3": {
915
+ "EDITED": null,
916
+ "FORCED": null,
917
+ "INPUTED": null,
918
+ "PREVIOUS": null,
919
+ "COLLECTED": null
920
+ },
921
+ "OIHC1": {
922
+ "EDITED": null,
923
+ "FORCED": null,
924
+ "INPUTED": null,
925
+ "PREVIOUS": null,
926
+ "COLLECTED": null
927
+ },
928
+ "OIHC2": {
929
+ "EDITED": null,
930
+ "FORCED": null,
931
+ "INPUTED": null,
932
+ "PREVIOUS": null,
933
+ "COLLECTED": null
934
+ },
935
+ "OIHC3": {
936
+ "EDITED": null,
937
+ "FORCED": null,
938
+ "INPUTED": null,
939
+ "PREVIOUS": null,
940
+ "COLLECTED": null
941
+ },
942
+ "OIHC4": {
943
+ "EDITED": null,
944
+ "FORCED": null,
945
+ "INPUTED": null,
946
+ "PREVIOUS": null,
947
+ "COLLECTED": null
948
+ },
949
+ "OIHC5": {
950
+ "EDITED": null,
951
+ "FORCED": null,
952
+ "INPUTED": null,
953
+ "PREVIOUS": null,
954
+ "COLLECTED": null
955
+ },
956
+ "OIHC6": {
957
+ "EDITED": null,
958
+ "FORCED": null,
959
+ "INPUTED": null,
960
+ "PREVIOUS": null,
961
+ "COLLECTED": null
962
+ },
963
+ "OIHF1": {
964
+ "EDITED": null,
965
+ "FORCED": null,
966
+ "INPUTED": null,
967
+ "PREVIOUS": null,
968
+ "COLLECTED": null
969
+ },
970
+ "OIHF2": {
971
+ "EDITED": null,
972
+ "FORCED": null,
973
+ "INPUTED": null,
974
+ "PREVIOUS": null,
975
+ "COLLECTED": null
976
+ },
977
+ "OIHF3": {
978
+ "EDITED": null,
979
+ "FORCED": null,
980
+ "INPUTED": null,
981
+ "PREVIOUS": null,
982
+ "COLLECTED": null
983
+ },
984
+ "OIHF4": {
985
+ "EDITED": null,
986
+ "FORCED": null,
987
+ "INPUTED": null,
988
+ "PREVIOUS": null,
989
+ "COLLECTED": null
990
+ },
991
+ "OIHF5": {
992
+ "EDITED": null,
993
+ "FORCED": null,
994
+ "INPUTED": null,
995
+ "PREVIOUS": null,
996
+ "COLLECTED": null
997
+ },
998
+ "OIHF6": {
999
+ "EDITED": null,
1000
+ "FORCED": null,
1001
+ "INPUTED": null,
1002
+ "PREVIOUS": null,
1003
+ "COLLECTED": null
1004
+ },
1005
+ "SANT1": {
1006
+ "EDITED": null,
1007
+ "FORCED": null,
1008
+ "INPUTED": null,
1009
+ "PREVIOUS": null,
1010
+ "COLLECTED": null
1011
+ },
1012
+ "SDL11": {
1013
+ "EDITED": [null],
1014
+ "FORCED": [null],
1015
+ "INPUTED": [null],
1016
+ "PREVIOUS": [null],
1017
+ "COLLECTED": [null]
1018
+ },
1019
+ "SDL12": {
1020
+ "EDITED": [null],
1021
+ "FORCED": [null],
1022
+ "INPUTED": [null],
1023
+ "PREVIOUS": [null],
1024
+ "COLLECTED": [null]
1025
+ },
1026
+ "SDL13": {
1027
+ "EDITED": [null],
1028
+ "FORCED": [null],
1029
+ "INPUTED": [null],
1030
+ "PREVIOUS": [null],
1031
+ "COLLECTED": [null]
1032
+ },
1033
+ "SDL14": {
1034
+ "EDITED": [null],
1035
+ "FORCED": [null],
1036
+ "INPUTED": [null],
1037
+ "PREVIOUS": [null],
1038
+ "COLLECTED": [null]
1039
+ },
1040
+ "SDL15": {
1041
+ "EDITED": [null],
1042
+ "FORCED": [null],
1043
+ "INPUTED": [null],
1044
+ "PREVIOUS": [null],
1045
+ "COLLECTED": [null]
1046
+ },
1047
+ "SDL16": {
1048
+ "EDITED": [null],
1049
+ "FORCED": [null],
1050
+ "INPUTED": [null],
1051
+ "PREVIOUS": [null],
1052
+ "COLLECTED": [null]
1053
+ },
1054
+ "SDL17": {
1055
+ "EDITED": [null],
1056
+ "FORCED": [null],
1057
+ "INPUTED": [null],
1058
+ "PREVIOUS": [null],
1059
+ "COLLECTED": [null]
1060
+ },
1061
+ "SDTAD": {
1062
+ "EDITED": [null],
1063
+ "FORCED": [null],
1064
+ "INPUTED": [null],
1065
+ "PREVIOUS": [null],
1066
+ "COLLECTED": [null]
1067
+ },
1068
+ "SITUA": {
1069
+ "EDITED": [null],
1070
+ "FORCED": [null],
1071
+ "INPUTED": [null],
1072
+ "PREVIOUS": [null],
1073
+ "COLLECTED": ["1", "1", "2", "5"]
1074
+ },
1075
+ "STOC1": {
1076
+ "EDITED": null,
1077
+ "FORCED": null,
1078
+ "INPUTED": null,
1079
+ "PREVIOUS": null,
1080
+ "COLLECTED": "1"
1081
+ },
1082
+ "STOC2": {
1083
+ "EDITED": null,
1084
+ "FORCED": null,
1085
+ "INPUTED": null,
1086
+ "PREVIOUS": null,
1087
+ "COLLECTED": null
1088
+ },
1089
+ "STOCP": {
1090
+ "EDITED": null,
1091
+ "FORCED": null,
1092
+ "INPUTED": null,
1093
+ "PREVIOUS": null,
1094
+ "COLLECTED": "1"
1095
+ },
1096
+ "TELET": {
1097
+ "EDITED": [null],
1098
+ "FORCED": [null],
1099
+ "INPUTED": [null],
1100
+ "PREVIOUS": [null],
1101
+ "COLLECTED": ["3", "5", null, null]
1102
+ },
1103
+ "TRAGE": {
1104
+ "EDITED": [null],
1105
+ "FORCED": [null],
1106
+ "INPUTED": [null],
1107
+ "PREVIOUS": [null],
1108
+ "COLLECTED": [null, null, null, null]
1109
+ },
1110
+ "UNLOG": {
1111
+ "EDITED": [null],
1112
+ "FORCED": [null],
1113
+ "INPUTED": [null],
1114
+ "PREVIOUS": [null],
1115
+ "COLLECTED": ["1", "1", "1", "1"]
1116
+ },
1117
+ "VLAB1": {
1118
+ "EDITED": null,
1119
+ "FORCED": null,
1120
+ "INPUTED": null,
1121
+ "PREVIOUS": null,
1122
+ "COLLECTED": null
1123
+ },
1124
+ "VSURF": {
1125
+ "EDITED": null,
1126
+ "FORCED": null,
1127
+ "INPUTED": null,
1128
+ "PREVIOUS": null,
1129
+ "COLLECTED": null
1130
+ },
1131
+ "COUPLE": {
1132
+ "EDITED": [null],
1133
+ "FORCED": [null],
1134
+ "INPUTED": [null],
1135
+ "PREVIOUS": [null],
1136
+ "COLLECTED": ["1", "1", "3", "3"]
1137
+ },
1138
+ "DAGEO1": {
1139
+ "EDITED": null,
1140
+ "FORCED": null,
1141
+ "INPUTED": null,
1142
+ "PREVIOUS": null,
1143
+ "COLLECTED": null
1144
+ },
1145
+ "DAGEO2": {
1146
+ "EDITED": null,
1147
+ "FORCED": null,
1148
+ "INPUTED": null,
1149
+ "PREVIOUS": null,
1150
+ "COLLECTED": null
1151
+ },
1152
+ "DAGEO3": {
1153
+ "EDITED": null,
1154
+ "FORCED": null,
1155
+ "INPUTED": null,
1156
+ "PREVIOUS": null,
1157
+ "COLLECTED": null
1158
+ },
1159
+ "DEPART": {
1160
+ "EDITED": null,
1161
+ "FORCED": null,
1162
+ "INPUTED": null,
1163
+ "PREVIOUS": null,
1164
+ "COLLECTED": null
1165
+ },
1166
+ "DURLOG": {
1167
+ "EDITED": [null],
1168
+ "FORCED": [null],
1169
+ "INPUTED": [null],
1170
+ "PREVIOUS": [null],
1171
+ "COLLECTED": [null, null, null, null]
1172
+ },
1173
+ "ECOVID": {
1174
+ "EDITED": [null],
1175
+ "FORCED": [null],
1176
+ "INPUTED": [null],
1177
+ "PREVIOUS": [null],
1178
+ "COLLECTED": [null]
1179
+ },
1180
+ "EPROJB": {
1181
+ "EDITED": [null],
1182
+ "FORCED": [null],
1183
+ "INPUTED": [null],
1184
+ "PREVIOUS": [null],
1185
+ "COLLECTED": [null]
1186
+ },
1187
+ "EPROJC": {
1188
+ "EDITED": [null],
1189
+ "FORCED": [null],
1190
+ "INPUTED": [null],
1191
+ "PREVIOUS": [null],
1192
+ "COLLECTED": [null]
1193
+ },
1194
+ "EPROJD": {
1195
+ "EDITED": [null],
1196
+ "FORCED": [null],
1197
+ "INPUTED": [null],
1198
+ "PREVIOUS": [null],
1199
+ "COLLECTED": [null]
1200
+ },
1201
+ "ERET11": {
1202
+ "EDITED": [null],
1203
+ "FORCED": [null],
1204
+ "INPUTED": [null],
1205
+ "PREVIOUS": [null],
1206
+ "COLLECTED": [null]
1207
+ },
1208
+ "ERET12": {
1209
+ "EDITED": [null],
1210
+ "FORCED": [null],
1211
+ "INPUTED": [null],
1212
+ "PREVIOUS": [null],
1213
+ "COLLECTED": [null]
1214
+ },
1215
+ "ERET13": {
1216
+ "EDITED": [null],
1217
+ "FORCED": [null],
1218
+ "INPUTED": [null],
1219
+ "PREVIOUS": [null],
1220
+ "COLLECTED": [null]
1221
+ },
1222
+ "ERET14": {
1223
+ "EDITED": [null],
1224
+ "FORCED": [null],
1225
+ "INPUTED": [null],
1226
+ "PREVIOUS": [null],
1227
+ "COLLECTED": [null]
1228
+ },
1229
+ "ERET15": {
1230
+ "EDITED": [null],
1231
+ "FORCED": [null],
1232
+ "INPUTED": [null],
1233
+ "PREVIOUS": [null],
1234
+ "COLLECTED": [null]
1235
+ },
1236
+ "GRDIPA": {
1237
+ "EDITED": [null],
1238
+ "FORCED": [null],
1239
+ "INPUTED": [null],
1240
+ "PREVIOUS": [null],
1241
+ "COLLECTED": ["8", "4", "5", "5"]
1242
+ },
1243
+ "GRDIPB": {
1244
+ "EDITED": [null],
1245
+ "FORCED": [null],
1246
+ "INPUTED": [null],
1247
+ "PREVIOUS": [null],
1248
+ "COLLECTED": [null, null, null, null]
1249
+ },
1250
+ "GRDIPC": {
1251
+ "EDITED": [null],
1252
+ "FORCED": [null],
1253
+ "INPUTED": [null],
1254
+ "PREVIOUS": [null],
1255
+ "COLLECTED": ["1", null, null, null]
1256
+ },
1257
+ "IAATCD": {
1258
+ "EDITED": null,
1259
+ "FORCED": null,
1260
+ "INPUTED": null,
1261
+ "PREVIOUS": null,
1262
+ "COLLECTED": null
1263
+ },
1264
+ "KSJPIT": {
1265
+ "EDITED": null,
1266
+ "FORCED": null,
1267
+ "INPUTED": null,
1268
+ "PREVIOUS": null,
1269
+ "COLLECTED": null
1270
+ },
1271
+ "LOGAUT": {
1272
+ "EDITED": [null],
1273
+ "FORCED": [null],
1274
+ "INPUTED": [null],
1275
+ "PREVIOUS": [null],
1276
+ "COLLECTED": [null, null, null, null]
1277
+ },
1278
+ "LOGENQ": {
1279
+ "EDITED": [null],
1280
+ "FORCED": [null],
1281
+ "INPUTED": [null],
1282
+ "PREVIOUS": [null],
1283
+ "COLLECTED": [null, null, null, null]
1284
+ },
1285
+ "MAA2AC": {
1286
+ "EDITED": null,
1287
+ "FORCED": null,
1288
+ "INPUTED": null,
1289
+ "PREVIOUS": null,
1290
+ "COLLECTED": null
1291
+ },
1292
+ "MAA2MC": {
1293
+ "EDITED": null,
1294
+ "FORCED": null,
1295
+ "INPUTED": null,
1296
+ "PREVIOUS": null,
1297
+ "COLLECTED": null
1298
+ },
1299
+ "ODFRA2": {
1300
+ "EDITED": null,
1301
+ "FORCED": null,
1302
+ "INPUTED": null,
1303
+ "PREVIOUS": null,
1304
+ "COLLECTED": null
1305
+ },
1306
+ "OLAR11": {
1307
+ "EDITED": null,
1308
+ "FORCED": null,
1309
+ "INPUTED": null,
1310
+ "PREVIOUS": null,
1311
+ "COLLECTED": null
1312
+ },
1313
+ "OLAR12": {
1314
+ "EDITED": null,
1315
+ "FORCED": null,
1316
+ "INPUTED": null,
1317
+ "PREVIOUS": null,
1318
+ "COLLECTED": null
1319
+ },
1320
+ "OLAR13": {
1321
+ "EDITED": null,
1322
+ "FORCED": null,
1323
+ "INPUTED": null,
1324
+ "PREVIOUS": null,
1325
+ "COLLECTED": null
1326
+ },
1327
+ "OLAR14": {
1328
+ "EDITED": null,
1329
+ "FORCED": null,
1330
+ "INPUTED": null,
1331
+ "PREVIOUS": null,
1332
+ "COLLECTED": null
1333
+ },
1334
+ "OLAR15": {
1335
+ "EDITED": null,
1336
+ "FORCED": null,
1337
+ "INPUTED": null,
1338
+ "PREVIOUS": null,
1339
+ "COLLECTED": null
1340
+ },
1341
+ "OLAR21": {
1342
+ "EDITED": null,
1343
+ "FORCED": null,
1344
+ "INPUTED": null,
1345
+ "PREVIOUS": null,
1346
+ "COLLECTED": null
1347
+ },
1348
+ "OLAR22": {
1349
+ "EDITED": null,
1350
+ "FORCED": null,
1351
+ "INPUTED": null,
1352
+ "PREVIOUS": null,
1353
+ "COLLECTED": null
1354
+ },
1355
+ "OLAR23": {
1356
+ "EDITED": null,
1357
+ "FORCED": null,
1358
+ "INPUTED": null,
1359
+ "PREVIOUS": null,
1360
+ "COLLECTED": null
1361
+ },
1362
+ "OLAR24": {
1363
+ "EDITED": null,
1364
+ "FORCED": null,
1365
+ "INPUTED": null,
1366
+ "PREVIOUS": null,
1367
+ "COLLECTED": null
1368
+ },
1369
+ "OLAR25": {
1370
+ "EDITED": null,
1371
+ "FORCED": null,
1372
+ "INPUTED": null,
1373
+ "PREVIOUS": null,
1374
+ "COLLECTED": null
1375
+ },
1376
+ "OLAR31": {
1377
+ "EDITED": null,
1378
+ "FORCED": null,
1379
+ "INPUTED": null,
1380
+ "PREVIOUS": null,
1381
+ "COLLECTED": null
1382
+ },
1383
+ "OLAR32": {
1384
+ "EDITED": null,
1385
+ "FORCED": null,
1386
+ "INPUTED": null,
1387
+ "PREVIOUS": null,
1388
+ "COLLECTED": null
1389
+ },
1390
+ "OLAR33": {
1391
+ "EDITED": null,
1392
+ "FORCED": null,
1393
+ "INPUTED": null,
1394
+ "PREVIOUS": null,
1395
+ "COLLECTED": null
1396
+ },
1397
+ "SANTE2": {
1398
+ "EDITED": [null],
1399
+ "FORCED": [null],
1400
+ "INPUTED": [null],
1401
+ "PREVIOUS": [null],
1402
+ "COLLECTED": [null]
1403
+ },
1404
+ "STOCA3": {
1405
+ "EDITED": [null],
1406
+ "FORCED": [null],
1407
+ "INPUTED": [null],
1408
+ "PREVIOUS": [null],
1409
+ "COLLECTED": [null, null, null, null]
1410
+ },
1411
+ "STOCA4": {
1412
+ "EDITED": [null],
1413
+ "FORCED": [null],
1414
+ "INPUTED": [null],
1415
+ "PREVIOUS": [null],
1416
+ "COLLECTED": ["1", "1", "2", "2"]
1417
+ },
1418
+ "STOCB1": {
1419
+ "EDITED": [null],
1420
+ "FORCED": [null],
1421
+ "INPUTED": [null],
1422
+ "PREVIOUS": [null],
1423
+ "COLLECTED": [null, null, null, null]
1424
+ },
1425
+ "TELMOB": {
1426
+ "EDITED": null,
1427
+ "FORCED": null,
1428
+ "INPUTED": null,
1429
+ "PREVIOUS": null,
1430
+ "COLLECTED": null
1431
+ },
1432
+ "VACHAL": {
1433
+ "EDITED": null,
1434
+ "FORCED": null,
1435
+ "INPUTED": null,
1436
+ "PREVIOUS": null,
1437
+ "COLLECTED": null
1438
+ },
1439
+ "VCRCOM": {
1440
+ "EDITED": null,
1441
+ "FORCED": null,
1442
+ "INPUTED": null,
1443
+ "PREVIOUS": null,
1444
+ "COLLECTED": null
1445
+ },
1446
+ "VLOYER": {
1447
+ "EDITED": null,
1448
+ "FORCED": null,
1449
+ "INPUTED": null,
1450
+ "PREVIOUS": null,
1451
+ "COLLECTED": null
1452
+ },
1453
+ "VMODM1": {
1454
+ "EDITED": null,
1455
+ "FORCED": null,
1456
+ "INPUTED": null,
1457
+ "PREVIOUS": null,
1458
+ "COLLECTED": null
1459
+ },
1460
+ "VMODM2": {
1461
+ "EDITED": null,
1462
+ "FORCED": null,
1463
+ "INPUTED": null,
1464
+ "PREVIOUS": null,
1465
+ "COLLECTED": null
1466
+ },
1467
+ "VMODM3": {
1468
+ "EDITED": null,
1469
+ "FORCED": null,
1470
+ "INPUTED": null,
1471
+ "PREVIOUS": null,
1472
+ "COLLECTED": null
1473
+ },
1474
+ "VMODM4": {
1475
+ "EDITED": null,
1476
+ "FORCED": null,
1477
+ "INPUTED": null,
1478
+ "PREVIOUS": null,
1479
+ "COLLECTED": null
1480
+ },
1481
+ "VMODM5": {
1482
+ "EDITED": null,
1483
+ "FORCED": null,
1484
+ "INPUTED": null,
1485
+ "PREVIOUS": null,
1486
+ "COLLECTED": null
1487
+ },
1488
+ "VMODM6": {
1489
+ "EDITED": null,
1490
+ "FORCED": null,
1491
+ "INPUTED": null,
1492
+ "PREVIOUS": null,
1493
+ "COLLECTED": null
1494
+ },
1495
+ "VMODM7": {
1496
+ "EDITED": null,
1497
+ "FORCED": null,
1498
+ "INPUTED": null,
1499
+ "PREVIOUS": null,
1500
+ "COLLECTED": null
1501
+ },
1502
+ "VSURFD": {
1503
+ "EDITED": null,
1504
+ "FORCED": null,
1505
+ "INPUTED": null,
1506
+ "PREVIOUS": null,
1507
+ "COLLECTED": null
1508
+ },
1509
+ "VVENDL": {
1510
+ "EDITED": null,
1511
+ "FORCED": null,
1512
+ "INPUTED": null,
1513
+ "PREVIOUS": null,
1514
+ "COLLECTED": null
1515
+ },
1516
+ "CIVCOLL": {
1517
+ "EDITED": null,
1518
+ "FORCED": null,
1519
+ "INPUTED": null,
1520
+ "PREVIOUS": null,
1521
+ "COLLECTED": null
1522
+ },
1523
+ "DALOBIS": {
1524
+ "EDITED": null,
1525
+ "FORCED": null,
1526
+ "INPUTED": null,
1527
+ "PREVIOUS": null,
1528
+ "COLLECTED": null
1529
+ },
1530
+ "DEPNAIS": {
1531
+ "EDITED": [null],
1532
+ "FORCED": [null],
1533
+ "INPUTED": [null],
1534
+ "PREVIOUS": [null],
1535
+ "COLLECTED": [null, null, null, null]
1536
+ },
1537
+ "DSTLOC2": {
1538
+ "EDITED": null,
1539
+ "FORCED": null,
1540
+ "INPUTED": null,
1541
+ "PREVIOUS": null,
1542
+ "COLLECTED": null
1543
+ },
1544
+ "EAMID11": {
1545
+ "EDITED": [null],
1546
+ "FORCED": [null],
1547
+ "INPUTED": [null],
1548
+ "PREVIOUS": [null],
1549
+ "COLLECTED": [null]
1550
+ },
1551
+ "EAMID12": {
1552
+ "EDITED": [null],
1553
+ "FORCED": [null],
1554
+ "INPUTED": [null],
1555
+ "PREVIOUS": [null],
1556
+ "COLLECTED": [null]
1557
+ },
1558
+ "EAMID13": {
1559
+ "EDITED": [null],
1560
+ "FORCED": [null],
1561
+ "INPUTED": [null],
1562
+ "PREVIOUS": [null],
1563
+ "COLLECTED": [null]
1564
+ },
1565
+ "EAMID14": {
1566
+ "EDITED": [null],
1567
+ "FORCED": [null],
1568
+ "INPUTED": [null],
1569
+ "PREVIOUS": [null],
1570
+ "COLLECTED": [null]
1571
+ },
1572
+ "EAMID15": {
1573
+ "EDITED": [null],
1574
+ "FORCED": [null],
1575
+ "INPUTED": [null],
1576
+ "PREVIOUS": [null],
1577
+ "COLLECTED": [null]
1578
+ },
1579
+ "EAMID16": {
1580
+ "EDITED": [null],
1581
+ "FORCED": [null],
1582
+ "INPUTED": [null],
1583
+ "PREVIOUS": [null],
1584
+ "COLLECTED": [null]
1585
+ },
1586
+ "ECOVID2": {
1587
+ "EDITED": [null],
1588
+ "FORCED": [null],
1589
+ "INPUTED": [null],
1590
+ "PREVIOUS": [null],
1591
+ "COLLECTED": [null]
1592
+ },
1593
+ "ERETOUR": {
1594
+ "EDITED": [null],
1595
+ "FORCED": [null],
1596
+ "INPUTED": [null],
1597
+ "PREVIOUS": [null],
1598
+ "COLLECTED": [null]
1599
+ },
1600
+ "HULHUI1": {
1601
+ "EDITED": null,
1602
+ "FORCED": null,
1603
+ "INPUTED": null,
1604
+ "PREVIOUS": null,
1605
+ "COLLECTED": null
1606
+ },
1607
+ "INDCOLL": {
1608
+ "EDITED": null,
1609
+ "FORCED": null,
1610
+ "INPUTED": null,
1611
+ "PREVIOUS": null,
1612
+ "COLLECTED": null
1613
+ },
1614
+ "MARRIVC": {
1615
+ "EDITED": null,
1616
+ "FORCED": null,
1617
+ "INPUTED": null,
1618
+ "PREVIOUS": null,
1619
+ "COLLECTED": null
1620
+ },
1621
+ "NATIO2N": {
1622
+ "EDITED": [null],
1623
+ "FORCED": [null],
1624
+ "INPUTED": [null],
1625
+ "PREVIOUS": [null],
1626
+ "COLLECTED": [null, null, null, null]
1627
+ },
1628
+ "NOMCOLL": {
1629
+ "EDITED": null,
1630
+ "FORCED": null,
1631
+ "INPUTED": null,
1632
+ "PREVIOUS": null,
1633
+ "COLLECTED": null
1634
+ },
1635
+ "RESAUTO": {
1636
+ "EDITED": null,
1637
+ "FORCED": null,
1638
+ "INPUTED": null,
1639
+ "PREVIOUS": null,
1640
+ "COLLECTED": null
1641
+ },
1642
+ "STOCA12": {
1643
+ "EDITED": [null],
1644
+ "FORCED": [null],
1645
+ "INPUTED": [null],
1646
+ "PREVIOUS": [null],
1647
+ "COLLECTED": ["1", "1", "2", "2"]
1648
+ },
1649
+ "TELFIXE": {
1650
+ "EDITED": null,
1651
+ "FORCED": null,
1652
+ "INPUTED": null,
1653
+ "PREVIOUS": null,
1654
+ "COLLECTED": null
1655
+ },
1656
+ "TRAVAIL": {
1657
+ "EDITED": [null],
1658
+ "FORCED": [null],
1659
+ "INPUTED": [null],
1660
+ "PREVIOUS": [null],
1661
+ "COLLECTED": [null, null, "2", "2"]
1662
+ },
1663
+ "VANCIEN": {
1664
+ "EDITED": null,
1665
+ "FORCED": null,
1666
+ "INPUTED": null,
1667
+ "PREVIOUS": null,
1668
+ "COLLECTED": null
1669
+ },
1670
+ "VBILLOG": {
1671
+ "EDITED": null,
1672
+ "FORCED": null,
1673
+ "INPUTED": null,
1674
+ "PREVIOUS": null,
1675
+ "COLLECTED": null
1676
+ },
1677
+ "VMODP11": {
1678
+ "EDITED": null,
1679
+ "FORCED": null,
1680
+ "INPUTED": null,
1681
+ "PREVIOUS": null,
1682
+ "COLLECTED": null
1683
+ },
1684
+ "VMODP12": {
1685
+ "EDITED": null,
1686
+ "FORCED": null,
1687
+ "INPUTED": null,
1688
+ "PREVIOUS": null,
1689
+ "COLLECTED": null
1690
+ },
1691
+ "VMODP13": {
1692
+ "EDITED": null,
1693
+ "FORCED": null,
1694
+ "INPUTED": null,
1695
+ "PREVIOUS": null,
1696
+ "COLLECTED": null
1697
+ },
1698
+ "VMODP14": {
1699
+ "EDITED": null,
1700
+ "FORCED": null,
1701
+ "INPUTED": null,
1702
+ "PREVIOUS": null,
1703
+ "COLLECTED": null
1704
+ },
1705
+ "VMODP21": {
1706
+ "EDITED": null,
1707
+ "FORCED": null,
1708
+ "INPUTED": null,
1709
+ "PREVIOUS": null,
1710
+ "COLLECTED": null
1711
+ },
1712
+ "VMODP22": {
1713
+ "EDITED": null,
1714
+ "FORCED": null,
1715
+ "INPUTED": null,
1716
+ "PREVIOUS": null,
1717
+ "COLLECTED": null
1718
+ },
1719
+ "VMODP23": {
1720
+ "EDITED": null,
1721
+ "FORCED": null,
1722
+ "INPUTED": null,
1723
+ "PREVIOUS": null,
1724
+ "COLLECTED": null
1725
+ },
1726
+ "VRAIS11": {
1727
+ "EDITED": null,
1728
+ "FORCED": null,
1729
+ "INPUTED": null,
1730
+ "PREVIOUS": null,
1731
+ "COLLECTED": null
1732
+ },
1733
+ "VRAIS12": {
1734
+ "EDITED": null,
1735
+ "FORCED": null,
1736
+ "INPUTED": null,
1737
+ "PREVIOUS": null,
1738
+ "COLLECTED": null
1739
+ },
1740
+ "VRAIS13": {
1741
+ "EDITED": null,
1742
+ "FORCED": null,
1743
+ "INPUTED": null,
1744
+ "PREVIOUS": null,
1745
+ "COLLECTED": null
1746
+ },
1747
+ "VRAIS14": {
1748
+ "EDITED": null,
1749
+ "FORCED": null,
1750
+ "INPUTED": null,
1751
+ "PREVIOUS": null,
1752
+ "COLLECTED": null
1753
+ },
1754
+ "VRAIS21": {
1755
+ "EDITED": null,
1756
+ "FORCED": null,
1757
+ "INPUTED": null,
1758
+ "PREVIOUS": null,
1759
+ "COLLECTED": null
1760
+ },
1761
+ "VRAIS22": {
1762
+ "EDITED": null,
1763
+ "FORCED": null,
1764
+ "INPUTED": null,
1765
+ "PREVIOUS": null,
1766
+ "COLLECTED": null
1767
+ },
1768
+ "VRAIS23": {
1769
+ "EDITED": null,
1770
+ "FORCED": null,
1771
+ "INPUTED": null,
1772
+ "PREVIOUS": null,
1773
+ "COLLECTED": null
1774
+ },
1775
+ "VRAIS24": {
1776
+ "EDITED": null,
1777
+ "FORCED": null,
1778
+ "INPUTED": null,
1779
+ "PREVIOUS": null,
1780
+ "COLLECTED": null
1781
+ },
1782
+ "VRAIS25": {
1783
+ "EDITED": null,
1784
+ "FORCED": null,
1785
+ "INPUTED": null,
1786
+ "PREVIOUS": null,
1787
+ "COLLECTED": null
1788
+ },
1789
+ "VRAIS26": {
1790
+ "EDITED": null,
1791
+ "FORCED": null,
1792
+ "INPUTED": null,
1793
+ "PREVIOUS": null,
1794
+ "COLLECTED": null
1795
+ },
1796
+ "VRAIS31": {
1797
+ "EDITED": null,
1798
+ "FORCED": null,
1799
+ "INPUTED": null,
1800
+ "PREVIOUS": null,
1801
+ "COLLECTED": null
1802
+ },
1803
+ "VRAIS32": {
1804
+ "EDITED": null,
1805
+ "FORCED": null,
1806
+ "INPUTED": null,
1807
+ "PREVIOUS": null,
1808
+ "COLLECTED": null
1809
+ },
1810
+ "VRAIS33": {
1811
+ "EDITED": null,
1812
+ "FORCED": null,
1813
+ "INPUTED": null,
1814
+ "PREVIOUS": null,
1815
+ "COLLECTED": null
1816
+ },
1817
+ "VRAIS34": {
1818
+ "EDITED": null,
1819
+ "FORCED": null,
1820
+ "INPUTED": null,
1821
+ "PREVIOUS": null,
1822
+ "COLLECTED": null
1823
+ },
1824
+ "VRAIS35": {
1825
+ "EDITED": null,
1826
+ "FORCED": null,
1827
+ "INPUTED": null,
1828
+ "PREVIOUS": null,
1829
+ "COLLECTED": null
1830
+ },
1831
+ "VRAIS36": {
1832
+ "EDITED": null,
1833
+ "FORCED": null,
1834
+ "INPUTED": null,
1835
+ "PREVIOUS": null,
1836
+ "COLLECTED": null
1837
+ },
1838
+ "VRAIS41": {
1839
+ "EDITED": null,
1840
+ "FORCED": null,
1841
+ "INPUTED": null,
1842
+ "PREVIOUS": null,
1843
+ "COLLECTED": null
1844
+ },
1845
+ "VRAIS42": {
1846
+ "EDITED": null,
1847
+ "FORCED": null,
1848
+ "INPUTED": null,
1849
+ "PREVIOUS": null,
1850
+ "COLLECTED": null
1851
+ },
1852
+ "VRAIS43": {
1853
+ "EDITED": null,
1854
+ "FORCED": null,
1855
+ "INPUTED": null,
1856
+ "PREVIOUS": null,
1857
+ "COLLECTED": null
1858
+ },
1859
+ "VRAIS44": {
1860
+ "EDITED": null,
1861
+ "FORCED": null,
1862
+ "INPUTED": null,
1863
+ "PREVIOUS": null,
1864
+ "COLLECTED": null
1865
+ },
1866
+ "VRAIS45": {
1867
+ "EDITED": null,
1868
+ "FORCED": null,
1869
+ "INPUTED": null,
1870
+ "PREVIOUS": null,
1871
+ "COLLECTED": null
1872
+ },
1873
+ "ADR_COLL": {
1874
+ "EDITED": null,
1875
+ "FORCED": null,
1876
+ "INPUTED": null,
1877
+ "PREVIOUS": null,
1878
+ "COLLECTED": "rue Vincent Auriol"
1879
+ },
1880
+ "CIVCOLL2": {
1881
+ "EDITED": null,
1882
+ "FORCED": null,
1883
+ "INPUTED": null,
1884
+ "PREVIOUS": null,
1885
+ "COLLECTED": null
1886
+ },
1887
+ "DATENAIS": {
1888
+ "EDITED": [null],
1889
+ "FORCED": [null],
1890
+ "INPUTED": [null],
1891
+ "PREVIOUS": [null],
1892
+ "COLLECTED": ["1970-09-15", "1970-01-01", "2003-01-01", "2003-02-01"]
1893
+ },
1894
+ "G_PRENOM": {
1895
+ "EDITED": [null],
1896
+ "FORCED": [null],
1897
+ "INPUTED": [null],
1898
+ "PREVIOUS": [null],
1899
+ "COLLECTED": ["Jean-Marc", "Magali", "Lauriane", "Mathis"]
1900
+ },
1901
+ "HULHUI21": {
1902
+ "EDITED": null,
1903
+ "FORCED": null,
1904
+ "INPUTED": null,
1905
+ "PREVIOUS": null,
1906
+ "COLLECTED": null
1907
+ },
1908
+ "HULHUI22": {
1909
+ "EDITED": null,
1910
+ "FORCED": null,
1911
+ "INPUTED": null,
1912
+ "PREVIOUS": null,
1913
+ "COLLECTED": null
1914
+ },
1915
+ "HULHUI23": {
1916
+ "EDITED": null,
1917
+ "FORCED": null,
1918
+ "INPUTED": null,
1919
+ "PREVIOUS": null,
1920
+ "COLLECTED": null
1921
+ },
1922
+ "INDNVOCC": {
1923
+ "EDITED": null,
1924
+ "FORCED": null,
1925
+ "INPUTED": null,
1926
+ "PREVIOUS": null,
1927
+ "COLLECTED": null
1928
+ },
1929
+ "MAA2AT_Q": {
1930
+ "EDITED": null,
1931
+ "FORCED": null,
1932
+ "INPUTED": null,
1933
+ "PREVIOUS": null,
1934
+ "COLLECTED": null
1935
+ },
1936
+ "NATIO1N1": {
1937
+ "EDITED": [null],
1938
+ "FORCED": [null],
1939
+ "INPUTED": [null],
1940
+ "PREVIOUS": [null],
1941
+ "COLLECTED": [true, true, true, true]
1942
+ },
1943
+ "NATIO1N2": {
1944
+ "EDITED": [null],
1945
+ "FORCED": [null],
1946
+ "INPUTED": [null],
1947
+ "PREVIOUS": [null],
1948
+ "COLLECTED": [null, null, null, null]
1949
+ },
1950
+ "NATIO1N3": {
1951
+ "EDITED": [null],
1952
+ "FORCED": [null],
1953
+ "INPUTED": [null],
1954
+ "PREVIOUS": [null],
1955
+ "COLLECTED": [null, null, null, null]
1956
+ },
1957
+ "NATIO1N4": {
1958
+ "EDITED": [null],
1959
+ "FORCED": [null],
1960
+ "INPUTED": [null],
1961
+ "PREVIOUS": [null],
1962
+ "COLLECTED": [null, null, null, null]
1963
+ },
1964
+ "NOMCOLL2": {
1965
+ "EDITED": null,
1966
+ "FORCED": null,
1967
+ "INPUTED": null,
1968
+ "PREVIOUS": null,
1969
+ "COLLECTED": null
1970
+ },
1971
+ "PAYSNAIS": {
1972
+ "EDITED": [null],
1973
+ "FORCED": [null],
1974
+ "INPUTED": [null],
1975
+ "PREVIOUS": [null],
1976
+ "COLLECTED": [null, null, null, null]
1977
+ },
1978
+ "SDL_SIT1": {
1979
+ "EDITED": [null],
1980
+ "FORCED": [null],
1981
+ "INPUTED": [null],
1982
+ "PREVIOUS": [null],
1983
+ "COLLECTED": [null]
1984
+ },
1985
+ "SDL_SIT2": {
1986
+ "EDITED": [null],
1987
+ "FORCED": [null],
1988
+ "INPUTED": [null],
1989
+ "PREVIOUS": [null],
1990
+ "COLLECTED": [null]
1991
+ },
1992
+ "TELNVOCC": {
1993
+ "EDITED": null,
1994
+ "FORCED": null,
1995
+ "INPUTED": null,
1996
+ "PREVIOUS": null,
1997
+ "COLLECTED": null
1998
+ },
1999
+ "TEMPS1_1": {
2000
+ "EDITED": null,
2001
+ "FORCED": null,
2002
+ "INPUTED": null,
2003
+ "PREVIOUS": null,
2004
+ "COLLECTED": null
2005
+ },
2006
+ "TYPLOGCO": {
2007
+ "EDITED": [null],
2008
+ "FORCED": [null],
2009
+ "INPUTED": [null],
2010
+ "PREVIOUS": [null],
2011
+ "COLLECTED": [null, null, null, null]
2012
+ },
2013
+ "testSTOC": {
2014
+ "EDITED": null,
2015
+ "FORCED": null,
2016
+ "INPUTED": null,
2017
+ "PREVIOUS": null,
2018
+ "COLLECTED": null
2019
+ },
2020
+ "FOYPAGEES": {
2021
+ "EDITED": null,
2022
+ "FORCED": null,
2023
+ "INPUTED": null,
2024
+ "PREVIOUS": null,
2025
+ "COLLECTED": null
2026
+ },
2027
+ "LNAISMERE": {
2028
+ "EDITED": null,
2029
+ "FORCED": null,
2030
+ "INPUTED": null,
2031
+ "PREVIOUS": null,
2032
+ "COLLECTED": null
2033
+ },
2034
+ "LNAISPERE": {
2035
+ "EDITED": null,
2036
+ "FORCED": null,
2037
+ "INPUTED": null,
2038
+ "PREVIOUS": null,
2039
+ "COLLECTED": null
2040
+ },
2041
+ "MAA2ATC_Q": {
2042
+ "EDITED": null,
2043
+ "FORCED": null,
2044
+ "INPUTED": null,
2045
+ "PREVIOUS": null,
2046
+ "COLLECTED": null
2047
+ },
2048
+ "MAILNVOCC": {
2049
+ "EDITED": null,
2050
+ "FORCED": null,
2051
+ "INPUTED": null,
2052
+ "PREVIOUS": null,
2053
+ "COLLECTED": null
2054
+ },
2055
+ "NOMNVOCC1": {
2056
+ "EDITED": null,
2057
+ "FORCED": null,
2058
+ "INPUTED": null,
2059
+ "PREVIOUS": null,
2060
+ "COLLECTED": null
2061
+ },
2062
+ "NOMNVOCC2": {
2063
+ "EDITED": null,
2064
+ "FORCED": null,
2065
+ "INPUTED": null,
2066
+ "PREVIOUS": null,
2067
+ "COLLECTED": null
2068
+ },
2069
+ "NOTELCOLL": {
2070
+ "EDITED": null,
2071
+ "FORCED": null,
2072
+ "INPUTED": null,
2073
+ "PREVIOUS": null,
2074
+ "COLLECTED": null
2075
+ },
2076
+ "SDT2_SIT2": {
2077
+ "EDITED": [null],
2078
+ "FORCED": [null],
2079
+ "INPUTED": [null],
2080
+ "PREVIOUS": [null],
2081
+ "COLLECTED": [null]
2082
+ },
2083
+ "NUMTH_COLL": {
2084
+ "EDITED": null,
2085
+ "FORCED": null,
2086
+ "INPUTED": null,
2087
+ "PREVIOUS": null,
2088
+ "COLLECTED": "1"
2089
+ },
2090
+ "PRENOMCOLL": {
2091
+ "EDITED": null,
2092
+ "FORCED": null,
2093
+ "INPUTED": null,
2094
+ "PREVIOUS": null,
2095
+ "COLLECTED": null
2096
+ },
2097
+ "SDTAD_SIT2": {
2098
+ "EDITED": [null],
2099
+ "FORCED": [null],
2100
+ "INPUTED": [null],
2101
+ "PREVIOUS": [null],
2102
+ "COLLECTED": [null]
2103
+ },
2104
+ "SITUMATRI1": {
2105
+ "EDITED": [null],
2106
+ "FORCED": [null],
2107
+ "INPUTED": [null],
2108
+ "PREVIOUS": [null],
2109
+ "COLLECTED": [true, true, null, null]
2110
+ },
2111
+ "SITUMATRI2": {
2112
+ "EDITED": [null],
2113
+ "FORCED": [null],
2114
+ "INPUTED": [null],
2115
+ "PREVIOUS": [null],
2116
+ "COLLECTED": [null, null, null, null]
2117
+ },
2118
+ "SITUMATRI3": {
2119
+ "EDITED": [null],
2120
+ "FORCED": [null],
2121
+ "INPUTED": [null],
2122
+ "PREVIOUS": [null],
2123
+ "COLLECTED": [null, null, null, null]
2124
+ },
2125
+ "SITUMATRI4": {
2126
+ "EDITED": [null],
2127
+ "FORCED": [null],
2128
+ "INPUTED": [null],
2129
+ "PREVIOUS": [null],
2130
+ "COLLECTED": [null, null, null, null]
2131
+ },
2132
+ "SITUMATRI5": {
2133
+ "EDITED": [null],
2134
+ "FORCED": [null],
2135
+ "INPUTED": [null],
2136
+ "PREVIOUS": [null],
2137
+ "COLLECTED": [null, null, null, null]
2138
+ },
2139
+ "SITUMATRI6": {
2140
+ "EDITED": [null],
2141
+ "FORCED": [null],
2142
+ "INPUTED": [null],
2143
+ "PREVIOUS": [null],
2144
+ "COLLECTED": [null, null, true, true]
2145
+ },
2146
+ "CADRTH_COLL": {
2147
+ "EDITED": null,
2148
+ "FORCED": null,
2149
+ "INPUTED": null,
2150
+ "PREVIOUS": null,
2151
+ "COLLECTED": "1er étage UIA"
2152
+ },
2153
+ "LIBCOM_COLL": {
2154
+ "EDITED": null,
2155
+ "FORCED": null,
2156
+ "INPUTED": null,
2157
+ "PREVIOUS": null,
2158
+ "COLLECTED": "AMIENS"
2159
+ },
2160
+ "NATIONMERE1": {
2161
+ "EDITED": null,
2162
+ "FORCED": null,
2163
+ "INPUTED": null,
2164
+ "PREVIOUS": null,
2165
+ "COLLECTED": null
2166
+ },
2167
+ "NATIONMERE2": {
2168
+ "EDITED": null,
2169
+ "FORCED": null,
2170
+ "INPUTED": null,
2171
+ "PREVIOUS": null,
2172
+ "COLLECTED": null
2173
+ },
2174
+ "NATIONMERE3": {
2175
+ "EDITED": null,
2176
+ "FORCED": null,
2177
+ "INPUTED": null,
2178
+ "PREVIOUS": null,
2179
+ "COLLECTED": null
2180
+ },
2181
+ "NATIONPERE1": {
2182
+ "EDITED": null,
2183
+ "FORCED": null,
2184
+ "INPUTED": null,
2185
+ "PREVIOUS": null,
2186
+ "COLLECTED": null
2187
+ },
2188
+ "NATIONPERE2": {
2189
+ "EDITED": null,
2190
+ "FORCED": null,
2191
+ "INPUTED": null,
2192
+ "PREVIOUS": null,
2193
+ "COLLECTED": null
2194
+ },
2195
+ "NATIONPERE3": {
2196
+ "EDITED": null,
2197
+ "FORCED": null,
2198
+ "INPUTED": null,
2199
+ "PREVIOUS": null,
2200
+ "COLLECTED": null
2201
+ },
2202
+ "PRENOMCOLL2": {
2203
+ "EDITED": null,
2204
+ "FORCED": null,
2205
+ "INPUTED": null,
2206
+ "PREVIOUS": null,
2207
+ "COLLECTED": null
2208
+ },
2209
+ "PAYSNAISMERE": {
2210
+ "EDITED": null,
2211
+ "FORCED": null,
2212
+ "INPUTED": null,
2213
+ "PREVIOUS": null,
2214
+ "COLLECTED": null
2215
+ },
2216
+ "PAYSNAISPERE": {
2217
+ "EDITED": null,
2218
+ "FORCED": null,
2219
+ "INPUTED": null,
2220
+ "PREVIOUS": null,
2221
+ "COLLECTED": null
2222
+ },
2223
+ "PRENOMNVOCC1": {
2224
+ "EDITED": null,
2225
+ "FORCED": null,
2226
+ "INPUTED": null,
2227
+ "PREVIOUS": null,
2228
+ "COLLECTED": null
2229
+ },
2230
+ "PRENOMNVOCC2": {
2231
+ "EDITED": null,
2232
+ "FORCED": null,
2233
+ "INPUTED": null,
2234
+ "PREVIOUS": null,
2235
+ "COLLECTED": null
2236
+ },
2237
+ "COMMUNEPASSEE": {
2238
+ "EDITED": null,
2239
+ "FORCED": null,
2240
+ "INPUTED": null,
2241
+ "PREVIOUS": null,
2242
+ "COLLECTED": null
2243
+ },
2244
+ "CODEPOST1_COLL": {
2245
+ "EDITED": null,
2246
+ "FORCED": null,
2247
+ "INPUTED": null,
2248
+ "PREVIOUS": null,
2249
+ "COLLECTED": "80000"
2250
+ },
2251
+ "testfiltreHEB1": {
2252
+ "EDITED": [null],
2253
+ "FORCED": [null],
2254
+ "INPUTED": [null],
2255
+ "PREVIOUS": [null],
2256
+ "COLLECTED": [null]
2257
+ },
2258
+ "testfiltreHEB2": {
2259
+ "EDITED": [null],
2260
+ "FORCED": [null],
2261
+ "INPUTED": [null],
2262
+ "PREVIOUS": [null],
2263
+ "COLLECTED": [null, null, null, null]
2264
+ }
2265
+ },
2266
+ "CALCULATED": {
2267
+ "HC": 0,
2268
+ "AGE": [51, 51, 18, 18],
2269
+ "NHAB": 4,
2270
+ "STOC": "1",
2271
+ "STOCA": ["1", "1", "2", "2"],
2272
+ "STOCC": ["1", "1", "1", "1"],
2273
+ "nLIEN": ["9", "1", "3", "3"],
2274
+ "EMPLOI": ["1", "1", "0", "0"],
2275
+ "LIB_SI": ["s il", "si elle", "si elle", "s il"],
2276
+ "MAA1AT": "",
2277
+ "MAA2AT": "",
2278
+ "MAA3AT": "",
2279
+ "PRENOM": ["Jean-Marc", "Magali", "Lauriane", "Mathis"],
2280
+ "STOC_i": ["1", "1", "1", "1"],
2281
+ "TEXT_E": " ",
2282
+ "libHSP": "vos pièces",
2283
+ "libHST": " ",
2284
+ "libHUT": "Ne pas tenir compte des pièces dédiées au télétravail.",
2285
+ "libKAO": "",
2286
+ "libKBA": "",
2287
+ "libKJA": "Avez-vous",
2288
+ "libOIH": "cette personne a-t-elle",
2289
+ "libSDT": [
2290
+ "ces situations",
2291
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2292
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2293
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\""
2294
+ ],
2295
+ "nblien": "01133",
2296
+ "ADRESSE": "29 AVENUE CHARLES DE GAULLE 75017 PARIS",
2297
+ "ANNEENQ": "2021",
2298
+ "CTR_LOG": [
2299
+ "Vous ne pouvez pas avoir deux résidences principales.",
2300
+ "Magali ne peut pas avoir deux résidences principales.",
2301
+ "Lauriane ne peut pas avoir deux résidences principales.",
2302
+ "Mathis ne peut pas avoir deux résidences principales."
2303
+ ],
2304
+ "INDconj": "1",
2305
+ "LIB_FEM": ["", "e", "e", ""],
2306
+ "MAA2ATC": "",
2307
+ "MOISENQ": "10",
2308
+ "NOMOCC1": "MONSIEUR JEAN-MARC MIERLOT",
2309
+ "NOMOCC2": "null null null",
2310
+ "SEXEREF": "1",
2311
+ "liHPHc2": "",
2312
+ "libHPHa": "",
2313
+ "libHPHc": "",
2314
+ "libHPHp": "",
2315
+ "libHSI1": "ces pièces annexes réservées",
2316
+ "libHSI2": "ces pièces annexes réservées",
2317
+ "libHSTa": "",
2318
+ "libHSTc": "",
2319
+ "libHSTp": "",
2320
+ "libHTLC": "individuel",
2321
+ "libKBA1": "",
2322
+ "libKSMI": " et de la véranda",
2323
+ "libMAA3": "votre arrivée",
2324
+ "libOIHB": "ou votre conjoint",
2325
+ "libVFFH": "",
2326
+ "libVFLA": "L'un de ces logements maintenant vendus",
2327
+ "libVOUS": ["Vous", "Magali", "Lauriane", "Mathis"],
2328
+ "persXRP": [0, 0, 0, 0],
2329
+ "persmaj": [1, 1, 1, 1],
2330
+ "ADRCOLLC": "1 rue Vincent Auriol 1er étage UIA 80000 AMIENS",
2331
+ "LIB_FEM2": ["er", "ère", "ère", "er"],
2332
+ "LIB_VEUF": [
2333
+ "Veuf, conjoint(e) décédé(e)",
2334
+ "Veuve, conjoint(e) décédé(e)",
2335
+ "Veuve, conjoint(e) décédé(e)",
2336
+ "Veuf, conjoint(e) décédé(e)"
2337
+ ],
2338
+ "NOMCOLLC": "MONSIEUR JEAN-MARC MIERLOT, null null null",
2339
+ "libCHGNC": "MONSIEUR JEAN-MARC MIERLOT",
2340
+ "libENVS1": "pour transmettre votre questionnaire à l'Insee.",
2341
+ "libFINS1": "Vous êtes arrivé(e) à la fin de ce questionnaire. Nous vous remercions de votre participation.",
2342
+ "libGARDE": [
2343
+ "Êtes-vous",
2344
+ "Magali est-elle",
2345
+ "Lauriane est-elle",
2346
+ "Mathis est-il"
2347
+ ],
2348
+ "libHTLC2": "la propriété",
2349
+ "libIAATC": "de la maison",
2350
+ "libKSJPI": "",
2351
+ "libKVELO": "l'immeuble",
2352
+ "libSANTE": ", le lieu et la nationalité de naissance de vos parents",
2353
+ "libSTOC1": "",
2354
+ "persconj": [0, 1, 0, 0],
2355
+ "LIB_SUJET": ["il", "elle", "elle", "il"],
2356
+ "PRENOMREF": "Jean-Marc",
2357
+ "libFINS12": "Vous serez contacté(e) à nouveau dans quelques semaines pour participer à la deuxième partie de l’enquête, consacrée aux coûts du logement.",
2358
+ "libHSTmoy": null,
2359
+ "libPCSACT": [
2360
+ "votre catégorie de profession",
2361
+ "la catégorie de profession de Magali",
2362
+ "la catégorie de profession de Lauriane",
2363
+ "la catégorie de profession de Mathis"
2364
+ ],
2365
+ "libSTOCA3": [
2366
+ "êtes-vous",
2367
+ "Magali est-elle",
2368
+ "Lauriane est-elle",
2369
+ "Mathis est-il"
2370
+ ],
2371
+ "libSTOCB1": "locataire ou colocataire",
2372
+ "nbpersXRP": 0,
2373
+ "nbpersmaj": 4,
2374
+ "perstelet": [1, 0, 0, 0],
2375
+ "testSTOCA": ["1", "1", "1", "1"],
2376
+ "LIB_ENFANT": [
2377
+ "Votre fils, votre beau-fils",
2378
+ "Votre fille, votre belle-fille",
2379
+ "Votre fille, votre belle-fille",
2380
+ "Votre fils, votre beau-fils"
2381
+ ],
2382
+ "LIB_PARENT": [
2383
+ "Votre père, votre beau-père",
2384
+ "Votre mère, votre belle-mère",
2385
+ "Votre mère, votre belle-mère",
2386
+ "Votre père, votre beau-père"
2387
+ ],
2388
+ "LIB_PRONOM": ["lui", "elle", "elle", "lui"],
2389
+ "PRENOMVIDE": "PRÉNOM",
2390
+ "filtre_HEB": [
2391
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2392
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2393
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2394
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0"
2395
+ ],
2396
+ "filtre_SIT": "1",
2397
+ "filtre_XRP": "0",
2398
+ "libHSTmoy2": null,
2399
+ "libMOISENQ": "Octobre",
2400
+ "nbpersconj": 1,
2401
+ "persparent": [0, 0, 0, 0],
2402
+ "persplus25": [1, 1, 0, 0],
2403
+ "iDEPENDANCE": null,
2404
+ "libVBILLOG1": "logement vendu",
2405
+ "libVBILLOG2": "logement acheté",
2406
+ "nbperstelet": 1,
2407
+ "AGEMILLESIME": [51, 51, 18, 18],
2408
+ "LIB_GDPARENT": [
2409
+ "Votre grand-père, votre beau-grand-père",
2410
+ "Votre grand-mère, votre belle-grand-mère",
2411
+ "Votre grand-mère, votre belle-grand-mère",
2412
+ "Votre grand-père, votre beau-grand-père"
2413
+ ],
2414
+ "LIB_PTENFANT": [
2415
+ "Votre petit-fils, votre beau-petit-fils",
2416
+ "Votre petite-fille, votre belle-petite-fille",
2417
+ "Votre petite-fille, votre belle-petite-fille",
2418
+ "Votre petit-fils, votre beau-petit-fils"
2419
+ ],
2420
+ "filtre_dest2": "0",
2421
+ "libACTDIPAUT": [
2422
+ "Votre situation",
2423
+ "Situation de Magali",
2424
+ "Situation de Lauriane",
2425
+ "Situation de Mathis"
2426
+ ],
2427
+ "nbpersparent": 0,
2428
+ "persplus18TR": ["0", "0", "0", "0"],
2429
+ "persplus25TR": ["0", "0", "0", "0"],
2430
+ "ANNEENQmoins1": 2020,
2431
+ "ANNEENQmoins4": 2017,
2432
+ "ANNEENQmoins8": 2013,
2433
+ "nb_filtre_HEB": "0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2434
+ "persplus15AGE": ["1", "1", "1", "1"],
2435
+ "persplus18AGE": ["1", "1", "1", "1"],
2436
+ "persplus25AGE": ["1", "1", "0", "0"],
2437
+ "ANNEENQmoins12": 2009,
2438
+ "libINTROPRENOM": "En commençant par vous, indiquez les prénoms des habitants du logement.",
2439
+ "libINTROPRENOM2": "(Si des personnes portent le même prénom, ajoutez un chiffre pour les distinguer).",
2440
+ "test_libMOISENQ": "pas août",
2441
+ "filtre_HebEnfant": [
2442
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2443
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2444
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2445
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0"
2446
+ ],
2447
+ "filtre_autrepers": "1",
2448
+ "FILTER_RESULT_DAG": null,
2449
+ "FILTER_RESULT_DST": null,
2450
+ "FILTER_RESULT_DTA": null,
2451
+ "FILTER_RESULT_DTL": null,
2452
+ "FILTER_RESULT_HPA": false,
2453
+ "FILTER_RESULT_HPH": true,
2454
+ "FILTER_RESULT_HPP": false,
2455
+ "FILTER_RESULT_HSP": false,
2456
+ "FILTER_RESULT_HST": true,
2457
+ "FILTER_RESULT_HUA": true,
2458
+ "FILTER_RESULT_HUP": true,
2459
+ "FILTER_RESULT_HUT": true,
2460
+ "FILTER_RESULT_IAS": null,
2461
+ "FILTER_RESULT_IEL": null,
2462
+ "FILTER_RESULT_IMI": true,
2463
+ "FILTER_RESULT_KBA": true,
2464
+ "FILTER_RESULT_KBD": true,
2465
+ "FILTER_RESULT_KCA": true,
2466
+ "FILTER_RESULT_KGA": true,
2467
+ "FILTER_RESULT_KJA": true,
2468
+ "FILTER_RESULT_KJC": false,
2469
+ "FILTER_RESULT_KSB": false,
2470
+ "FILTER_RESULT_KSE": null,
2471
+ "FILTER_RESULT_KSV": false,
2472
+ "FILTER_RESULT_KVE": true,
2473
+ "FILTER_RESULT_ODF": true,
2474
+ "FILTER_RESULT_ODL": true,
2475
+ "FILTER_RESULT_OIH": true,
2476
+ "FILTER_RESULT_OLA": true,
2477
+ "FILTER_RESULT_OQA": true,
2478
+ "FILTER_RESULT_VIN": true,
2479
+ "FILTER_RESULT_VLR": false,
2480
+ "FILTER_RESULT_VND": false,
2481
+ "FILTER_RESULT_VOP": true,
2482
+ "FILTER_RESULT_VPI": null,
2483
+ "FILTER_RESULT_VSY": null,
2484
+ "FUTURANNIVERSAIRE": [false, false, false, false],
2485
+ "FILTER_RESULT_CADR": true,
2486
+ "FILTER_RESULT_DALO": null,
2487
+ "FILTER_RESULT_DDAT": null,
2488
+ "FILTER_RESULT_DDEM": null,
2489
+ "FILTER_RESULT_DORM": [false, false, false, false],
2490
+ "FILTER_RESULT_DSTL": false,
2491
+ "FILTER_RESULT_DSTP": false,
2492
+ "FILTER_RESULT_HAUT": true,
2493
+ "FILTER_RESULT_HCHA": null,
2494
+ "FILTER_RESULT_HPI1": false,
2495
+ "FILTER_RESULT_HPI2": false,
2496
+ "FILTER_RESULT_HSI1": false,
2497
+ "FILTER_RESULT_HSI2": false,
2498
+ "FILTER_RESULT_ICOI": true,
2499
+ "FILTER_RESULT_KAO1": true,
2500
+ "FILTER_RESULT_KCU1": true,
2501
+ "FILTER_RESULT_KCU2": false,
2502
+ "FILTER_RESULT_KGA1": true,
2503
+ "FILTER_RESULT_KGRA": true,
2504
+ "FILTER_RESULT_KSJC": false,
2505
+ "FILTER_RESULT_KSMI": null,
2506
+ "FILTER_RESULT_KSOA": null,
2507
+ "FILTER_RESULT_KSV1": false,
2508
+ "FILTER_RESULT_KWC1": true,
2509
+ "FILTER_RESULT_LIEN": [false, true, true, true],
2510
+ "FILTER_RESULT_MAA3": true,
2511
+ "FILTER_RESULT_OIHB": false,
2512
+ "FILTER_RESULT_OIHC": false,
2513
+ "FILTER_RESULT_OIHD": false,
2514
+ "FILTER_RESULT_OIHE": false,
2515
+ "FILTER_RESULT_OIHF": false,
2516
+ "FILTER_RESULT_OLAD": true,
2517
+ "FILTER_RESULT_OQAD": true,
2518
+ "FILTER_RESULT_SDL1": [true],
2519
+ "FILTER_RESULT_SDL2": [false],
2520
+ "FILTER_RESULT_SDL4": [false],
2521
+ "FILTER_RESULT_SDN1": [null],
2522
+ "FILTER_RESULT_SDT1": [false],
2523
+ "FILTER_RESULT_SDT2": [null],
2524
+ "FILTER_RESULT_SEXE": [true, true, true, true],
2525
+ "FILTER_RESULT_UWEB": true,
2526
+ "FILTER_RESULT_VAID": null,
2527
+ "FILTER_RESULT_VDD1": false,
2528
+ "FILTER_RESULT_VDSY": false,
2529
+ "FILTER_RESULT_VFFH": null,
2530
+ "FILTER_RESULT_VFLA": false,
2531
+ "FILTER_RESULT_VLA1": true,
2532
+ "FILTER_RESULT_VLRD": false,
2533
+ "FILTER_RESULT_VPID": true,
2534
+ "FILTER_RESULT_VPRA": false,
2535
+ "FILTER_RESULT_VSO1": null,
2536
+ "FILTER_RESULT_VTL1": null,
2537
+ "FILTER_RESULT_CHGNC": true,
2538
+ "FILTER_RESULT_DAGEO": false,
2539
+ "FILTER_RESULT_DAGRL": false,
2540
+ "FILTER_RESULT_EAMIA": [false],
2541
+ "FILTER_RESULT_EAMIH": [false],
2542
+ "FILTER_RESULT_EAMIK": [false],
2543
+ "FILTER_RESULT_EAMIL": [false],
2544
+ "FILTER_RESULT_EPAS1": [false],
2545
+ "FILTER_RESULT_EPASB": [false],
2546
+ "FILTER_RESULT_EPASC": [false],
2547
+ "FILTER_RESULT_EPROJ": [false],
2548
+ "FILTER_RESULT_ERET1": [false],
2549
+ "FILTER_RESULT_GARDE": [false, false, false, false],
2550
+ "FILTER_RESULT_HPEUP": true,
2551
+ "FILTER_RESULT_HTLC1": true,
2552
+ "FILTER_RESULT_IAATC": true,
2553
+ "FILTER_RESULT_KDLK1": null,
2554
+ "FILTER_RESULT_KDLK2": null,
2555
+ "FILTER_RESULT_KGRAA": true,
2556
+ "FILTER_RESULT_KPISC": true,
2557
+ "FILTER_RESULT_KSJPC": false,
2558
+ "FILTER_RESULT_KSJPI": null,
2559
+ "FILTER_RESULT_KVELO": false,
2560
+ "FILTER_RESULT_KWCID": false,
2561
+ "FILTER_RESULT_LIMT1": true,
2562
+ "FILTER_RESULT_LIMT2": [false],
2563
+ "FILTER_RESULT_LNAIS": [true, true, true, true],
2564
+ "FILTER_RESULT_LOGCO": [false, false, false, false],
2565
+ "FILTER_RESULT_MAA2A": true,
2566
+ "FILTER_RESULT_MAA2M": false,
2567
+ "FILTER_RESULT_MAA3A": false,
2568
+ "FILTER_RESULT_MAA3M": false,
2569
+ "FILTER_RESULT_MCHR1": true,
2570
+ "FILTER_RESULT_MCHR2": [false],
2571
+ "FILTER_RESULT_NBHAB": true,
2572
+ "FILTER_RESULT_OLAR1": true,
2573
+ "FILTER_RESULT_OLAR2": true,
2574
+ "FILTER_RESULT_OLAR3": true,
2575
+ "FILTER_RESULT_SDTAD": [false],
2576
+ "FILTER_RESULT_SITUA": [true, true, true, true],
2577
+ "FILTER_RESULT_STOC1": true,
2578
+ "FILTER_RESULT_STOC2": false,
2579
+ "FILTER_RESULT_STOCP": false,
2580
+ "FILTER_RESULT_TELET": [true, true, false, false],
2581
+ "FILTER_RESULT_TRAGE": [false, false, false, false],
2582
+ "FILTER_RESULT_UNLOG": [true, true, true, true],
2583
+ "FILTER_RESULT_VLAB1": false,
2584
+ "FILTER_RESULT_VMODM": true,
2585
+ "FILTER_RESULT_VSURF": null,
2586
+ "FILTER_RESULT_VTLD1": true,
2587
+ "nb_filtre_HebEnfant": "0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2588
+ "FILTER_RESULT_COUPLE": [true, true, true, true],
2589
+ "FILTER_RESULT_DAGEO1": false,
2590
+ "FILTER_RESULT_DAGEO2": false,
2591
+ "FILTER_RESULT_DAGEO3": false,
2592
+ "FILTER_RESULT_DEPART": false,
2593
+ "FILTER_RESULT_DURLOG": [false, false, false, false],
2594
+ "FILTER_RESULT_EAMID1": [false],
2595
+ "FILTER_RESULT_ECOVID": [false],
2596
+ "FILTER_RESULT_EPROJB": [false],
2597
+ "FILTER_RESULT_EPROJC": [false],
2598
+ "FILTER_RESULT_EPROJD": [false],
2599
+ "FILTER_RESULT_GRDIPA": [true, true, true, true],
2600
+ "FILTER_RESULT_GRDIPB": [false, false, false, false],
2601
+ "FILTER_RESULT_GRDIPC": [true, false, false, false],
2602
+ "FILTER_RESULT_IAATCD": false,
2603
+ "FILTER_RESULT_KSJPIT": null,
2604
+ "FILTER_RESULT_LOGAUT": [false, false, false, false],
2605
+ "FILTER_RESULT_LOGENQ": [false, false, false, false],
2606
+ "FILTER_RESULT_MAA2AC": false,
2607
+ "FILTER_RESULT_MAA2MC": false,
2608
+ "FILTER_RESULT_ODFRA3": false,
2609
+ "FILTER_RESULT_SANTE1": true,
2610
+ "FILTER_RESULT_SANTE2": [false],
2611
+ "FILTER_RESULT_STOCA3": [false, false, false, false],
2612
+ "FILTER_RESULT_STOCA4": [false, false, false, false],
2613
+ "FILTER_RESULT_STOCB1": [false, false, false, false],
2614
+ "FILTER_RESULT_TELMOB": true,
2615
+ "FILTER_RESULT_VACHAL": true,
2616
+ "FILTER_RESULT_VCRCOM": false,
2617
+ "FILTER_RESULT_VLOYER": null,
2618
+ "FILTER_RESULT_VMODP1": true,
2619
+ "FILTER_RESULT_VMODP2": true,
2620
+ "FILTER_RESULT_VRAIS1": null,
2621
+ "FILTER_RESULT_VRAIS2": null,
2622
+ "FILTER_RESULT_VRAIS3": null,
2623
+ "FILTER_RESULT_VRAIS4": null,
2624
+ "FILTER_RESULT_VSURFD": true,
2625
+ "FILTER_RESULT_VVENDL": true,
2626
+ "FILTER_RESULT_CIVCOLL": false,
2627
+ "FILTER_RESULT_DALOBIS": false,
2628
+ "FILTER_RESULT_DEPNAIS": [true, true, true, true],
2629
+ "FILTER_RESULT_DSTLOC2": false,
2630
+ "FILTER_RESULT_ECOVID2": [false],
2631
+ "FILTER_RESULT_ERETOUR": [false],
2632
+ "FILTER_RESULT_HULHUI1": false,
2633
+ "FILTER_RESULT_HULHUI2": false,
2634
+ "FILTER_RESULT_INDCOLL": false,
2635
+ "FILTER_RESULT_MARRIVC": true,
2636
+ "FILTER_RESULT_NATIO1N": [true, true, true, true],
2637
+ "FILTER_RESULT_NATIO2N": [null, null, null, null],
2638
+ "FILTER_RESULT_NOMCOLL": false,
2639
+ "FILTER_RESULT_RESAUTO": false,
2640
+ "FILTER_RESULT_STOCA12": [true, true, true, true],
2641
+ "FILTER_RESULT_TELFIXE": true,
2642
+ "FILTER_RESULT_TRAVAIL": [false, false, true, true],
2643
+ "FILTER_RESULT_VANCIEN": null,
2644
+ "FILTER_RESULT_VBILLOG": null,
2645
+ "FILTER_RESULT_ADR_COLL": true,
2646
+ "FILTER_RESULT_CIVCOLL2": false,
2647
+ "FILTER_RESULT_DATENAIS": [true, true, true, true],
2648
+ "FILTER_RESULT_G_PRENOM": [true, true, true, true],
2649
+ "FILTER_RESULT_INDNVOCC": false,
2650
+ "FILTER_RESULT_MAA2AT_Q": true,
2651
+ "FILTER_RESULT_NOMCOLL2": false,
2652
+ "FILTER_RESULT_PAYSNAIS": [false, false, false, false],
2653
+ "FILTER_RESULT_SDL_SIT1": [null],
2654
+ "FILTER_RESULT_SDL_SIT2": [null],
2655
+ "FILTER_RESULT_TELNVOCC": false,
2656
+ "FILTER_RESULT_TEMPS1_1": true,
2657
+ "FILTER_RESULT_TYPLOGCO": [false, false, false, false],
2658
+ "FILTER_RESULT_testSTOC": true,
2659
+ "FILTER_RESULT_FOYPAGEES": false,
2660
+ "FILTER_RESULT_LNAISMERE": true,
2661
+ "FILTER_RESULT_LNAISPERE": true,
2662
+ "FILTER_RESULT_MAA2ATC_Q": false,
2663
+ "FILTER_RESULT_MAILNVOCC": false,
2664
+ "FILTER_RESULT_NOMNVOCC1": false,
2665
+ "FILTER_RESULT_NOMNVOCC2": false,
2666
+ "FILTER_RESULT_NOTELCOLL": true,
2667
+ "FILTER_RESULT_SDT2_SIT2": [null],
2668
+ "FILTER_RESULT_SITUMATRI": [true, true, true, true],
2669
+ "FILTER_RESULT_NATIONMERE": true,
2670
+ "FILTER_RESULT_NATIONPERE": true,
2671
+ "FILTER_RESULT_NUMTH_COLL": true,
2672
+ "FILTER_RESULT_PRENOMCOLL": false,
2673
+ "FILTER_RESULT_SDTAD_SIT2": [null],
2674
+ "FILTER_RESULT_CADRTH_COLL": true,
2675
+ "FILTER_RESULT_LIBCOM_COLL": true,
2676
+ "FILTER_RESULT_PRENOMCOLL2": false,
2677
+ "FILTER_RESULT_PAYSNAISMERE": false,
2678
+ "FILTER_RESULT_PAYSNAISPERE": false,
2679
+ "FILTER_RESULT_PRENOMNVOCC1": false,
2680
+ "FILTER_RESULT_PRENOMNVOCC2": false,
2681
+ "FILTER_RESULT_COMMUNEPASSEE": false,
2682
+ "FILTER_RESULT_CODEPOST1_COLL": true,
2683
+ "FILTER_RESULT_testfiltreHEB1": [false],
2684
+ "FILTER_RESULT_testfiltreHEB2": [true, true, true, true]
2685
+ }
2686
+ }