imio.smartweb.core 1.1.15__py3-none-any.whl → 1.1.19__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (112) hide show
  1. imio/smartweb/core/browser/configure.zcml +1 -0
  2. imio/smartweb/core/browser/controlpanel.py +24 -0
  3. imio/smartweb/core/browser/dashboards/__init__.py +0 -0
  4. imio/smartweb/core/browser/dashboards/configure.zcml +17 -0
  5. imio/smartweb/core/browser/dashboards/plausible.pt +29 -0
  6. imio/smartweb/core/browser/dashboards/plausible.py +21 -0
  7. imio/smartweb/core/browser/faceted/map.pt +3 -7
  8. imio/smartweb/core/browser/utils.py +33 -0
  9. imio/smartweb/core/contents/__init__.py +4 -0
  10. imio/smartweb/core/contents/cropping.py +2 -5
  11. imio/smartweb/core/contents/folder/content.py +1 -0
  12. imio/smartweb/core/contents/rest/base.py +16 -0
  13. imio/smartweb/core/contents/rest/directory/endpoint.py +8 -15
  14. imio/smartweb/core/contents/rest/events/endpoint.py +6 -12
  15. imio/smartweb/core/contents/rest/news/endpoint.py +6 -11
  16. imio/smartweb/core/contents/rest/search/endpoint.py +26 -6
  17. imio/smartweb/core/contents/sections/configure.zcml +1 -0
  18. imio/smartweb/core/contents/sections/contact/view.pt +1 -2
  19. imio/smartweb/core/contents/sections/external_content/__init__.py +0 -0
  20. imio/smartweb/core/contents/sections/external_content/configure.zcml +14 -0
  21. imio/smartweb/core/contents/sections/external_content/content.py +32 -0
  22. imio/smartweb/core/contents/sections/external_content/view.pt +31 -0
  23. imio/smartweb/core/contents/sections/external_content/views.py +31 -0
  24. imio/smartweb/core/contents/sections/gallery/view.pt +1 -2
  25. imio/smartweb/core/contents/sections/macros.pt +0 -4
  26. imio/smartweb/core/contents/sections/text/configure.zcml +0 -6
  27. imio/smartweb/core/contents/sections/text/content.py +0 -12
  28. imio/smartweb/core/contents/sections/text/forms.py +2 -0
  29. imio/smartweb/core/permissions.zcml +6 -0
  30. imio/smartweb/core/profiles/default/metadata.xml +1 -1
  31. imio/smartweb/core/profiles/default/rolemap.xml +6 -0
  32. imio/smartweb/core/profiles/default/types/imio.smartweb.Page.xml +1 -0
  33. imio/smartweb/core/profiles/default/types/imio.smartweb.PortalPage.xml +1 -0
  34. imio/smartweb/core/profiles/default/types/imio.smartweb.Procedure.xml +1 -0
  35. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionContact.xml +0 -1
  36. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionEvents.xml +0 -1
  37. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionExternalContent.xml +35 -0
  38. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionFiles.xml +0 -1
  39. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionGallery.xml +0 -1
  40. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionHTML.xml +1 -1
  41. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionLinks.xml +0 -1
  42. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionMap.xml +0 -1
  43. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionNews.xml +0 -1
  44. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionPostit.xml +0 -1
  45. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSelections.xml +0 -1
  46. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSendinblue.xml +0 -1
  47. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionSlide.xml +0 -1
  48. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionText.xml +0 -1
  49. imio/smartweb/core/profiles/default/types/imio.smartweb.SectionVideo.xml +0 -1
  50. imio/smartweb/core/profiles/default/types.xml +1 -0
  51. imio/smartweb/core/profiles/default/workflows.xml +1 -0
  52. imio/smartweb/core/tests/resources/json_rest_directory.json +1099 -0
  53. imio/smartweb/core/tests/resources/json_rest_events.json +1099 -0
  54. imio/smartweb/core/tests/resources/json_rest_news.json +1103 -4
  55. imio/smartweb/core/tests/test_cropping.py +2 -24
  56. imio/smartweb/core/tests/test_folder.py +17 -0
  57. imio/smartweb/core/tests/test_plausibleview.py +83 -0
  58. imio/smartweb/core/tests/test_rest.py +40 -0
  59. imio/smartweb/core/tests/test_section_news.py +0 -1
  60. imio/smartweb/core/tests/test_sections.py +34 -0
  61. imio/smartweb/core/upgrades/configure.zcml +90 -0
  62. imio/smartweb/core/upgrades/profiles/1037_to_1038/registry/plausible.xml +9 -0
  63. imio/smartweb/core/upgrades/profiles/1038_to_1039/rolemap.xml +12 -0
  64. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Page.xml +11 -0
  65. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.PortalPage.xml +11 -0
  66. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.Procedure.xml +11 -0
  67. imio/smartweb/core/upgrades/profiles/1038_to_1039/types/imio.smartweb.SectionExternalContent.xml +36 -0
  68. imio/smartweb/core/upgrades/profiles/1038_to_1039/types.xml +4 -0
  69. imio/smartweb/core/upgrades/profiles/1038_to_1039/workflows.xml +6 -0
  70. imio/smartweb/core/upgrades/profiles/1039_to_1040/types/imio.smartweb.SectionSlide.xml +14 -0
  71. imio/smartweb/core/upgrades/profiles/1040_to_1041/types/imio.smartweb.SectionText.xml +17 -0
  72. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionContact.xml +14 -0
  73. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionEvents.xml +14 -0
  74. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionExternalContent.xml +15 -0
  75. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionFiles.xml +14 -0
  76. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionGallery.xml +15 -0
  77. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionLinks.xml +14 -0
  78. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionMap.xml +15 -0
  79. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionNews.xml +14 -0
  80. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionPostit.xml +14 -0
  81. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSelections.xml +14 -0
  82. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionSendinblue.xml +14 -0
  83. imio/smartweb/core/upgrades/profiles/1041_to_1042/types/imio.smartweb.SectionVideo.xml +15 -0
  84. imio/smartweb/core/webcomponents/build/css/195.smartweb-webcomponents-compiled.css +1 -1
  85. imio/smartweb/core/webcomponents/build/css/552.smartweb-webcomponents-compiled.css +1 -1
  86. imio/smartweb/core/webcomponents/build/js/195.smartweb-webcomponents-compiled.js +1 -1
  87. imio/smartweb/core/webcomponents/build/js/212.smartweb-webcomponents-compiled.js +2 -0
  88. imio/smartweb/core/webcomponents/build/js/323.smartweb-webcomponents-compiled.js +1 -1
  89. imio/smartweb/core/webcomponents/build/js/510.smartweb-webcomponents-compiled.js +1 -1
  90. imio/smartweb/core/webcomponents/build/js/552.smartweb-webcomponents-compiled.js +1 -1
  91. imio/smartweb/core/webcomponents/build/js/{462.smartweb-webcomponents-compiled.js → 565.smartweb-webcomponents-compiled.js} +1 -1
  92. imio/smartweb/core/webcomponents/build/js/{842.smartweb-webcomponents-compiled.js → 729.smartweb-webcomponents-compiled.js} +2 -2
  93. imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js +1 -1
  94. imio/smartweb/core/webcomponents/build/js/9.smartweb-webcomponents-compiled.js.LICENSE.txt +2 -2
  95. imio/smartweb/core/webcomponents/build/js/smartweb-webcomponents-compiled.js +1 -1
  96. imio/smartweb/core/webcomponents/src/components/Annuaire/ContactCard/ContactCard.jsx +2 -3
  97. imio/smartweb/core/webcomponents/src/components/Events/ContactCard/ContactCard.jsx +1 -2
  98. imio/smartweb/core/webcomponents/src/components/Events/Events.jsx +0 -1
  99. imio/smartweb/core/webcomponents/src/components/News/ContactCard/ContactCard.jsx +1 -2
  100. imio/smartweb/core/webcomponents/src/components/News/ContactContent/ContactContent.jsx +1 -1
  101. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/METADATA +63 -1
  102. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/RECORD +110 -78
  103. imio/smartweb/core/webcomponents/build/assets/img-placeholder-bla.a2b8b384c46ce56c99f042dc4625d309.png +0 -0
  104. imio/smartweb/core/webcomponents/build/js/650.smartweb-webcomponents-compiled.js +0 -2
  105. /imio/smartweb/core/webcomponents/build/js/{650.smartweb-webcomponents-compiled.js.LICENSE.txt → 212.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  106. /imio/smartweb/core/webcomponents/build/js/{842.smartweb-webcomponents-compiled.js.LICENSE.txt → 729.smartweb-webcomponents-compiled.js.LICENSE.txt} +0 -0
  107. /imio.smartweb.core-1.1.15-py3.10-nspkg.pth → /imio.smartweb.core-1.1.19-py3.10-nspkg.pth +0 -0
  108. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/LICENSE.GPL +0 -0
  109. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/LICENSE.rst +0 -0
  110. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/WHEEL +0 -0
  111. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/namespace_packages.txt +0 -0
  112. {imio.smartweb.core-1.1.15.dist-info → imio.smartweb.core-1.1.19.dist-info}/top_level.txt +0 -0
@@ -13,22 +13,22 @@
13
13
  "has_leadimage": false,
14
14
  "image": {
15
15
  "content-type": "image/jpeg",
16
- "download": "https://agenda.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-1920-ea4d266cfbb730c254745fd93b4b2df6.jpeg",
16
+ "download": "https://actualites.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-1920-ea4d266cfbb730c254745fd93b4b2df6.jpeg",
17
17
  "filename": "Impro.jpg",
18
18
  "height": 1080,
19
19
  "scales": {
20
20
  "affiche": {
21
- "download": "https://agenda.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-1320-74309fd9cb622eb611321d4ba3f37536.jpeg",
21
+ "download": "https://actualites.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-1320-74309fd9cb622eb611321d4ba3f37536.jpeg",
22
22
  "height": 440,
23
23
  "width": 782
24
24
  },
25
25
  "extralarge": {
26
- "download": "https://agenda.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-1320-3b7af8de028868ebdc3a59eb7e0f515d.jpeg",
26
+ "download": "https://actualites.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-1320-3b7af8de028868ebdc3a59eb7e0f515d.jpeg",
27
27
  "height": 742,
28
28
  "width": 1320
29
29
  },
30
30
  "preview": {
31
- "download": "https://agenda.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-400-b963678cd2367410ceec02428ebe093e.jpeg",
31
+ "download": "https://actualites.enwallonie.be/braine-lalleud/citoyens/d448b0c80f0e4c57819bf23e6281aa98/@@images/image-400-b963678cd2367410ceec02428ebe093e.jpeg",
32
32
  "height": 225,
33
33
  "width": 400
34
34
  }
@@ -36,6 +36,1105 @@
36
36
  "size": 146445,
37
37
  "width": 1920
38
38
  },
39
+ "items": [
40
+ {
41
+ "@components": {
42
+ "actions": {
43
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@actions"
44
+ },
45
+ "aliases": {
46
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@aliases"
47
+ },
48
+ "breadcrumbs": {
49
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@breadcrumbs"
50
+ },
51
+ "contextnavigation": {
52
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@contextnavigation"
53
+ },
54
+ "navigation": {
55
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@navigation"
56
+ },
57
+ "types": {
58
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@types"
59
+ },
60
+ "workflow": {
61
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@workflow"
62
+ }
63
+ },
64
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg",
65
+ "@type": "Image",
66
+ "UID": "3c436a800154449f84797fdb30561297",
67
+ "allow_discussion": false,
68
+ "created": "2023-05-22T08:51:54+00:00",
69
+ "description": "",
70
+ "id": "126452168_1066889743753048_4742779094618765877_n.jpg",
71
+ "image": {
72
+ "content-type": "image/jpeg",
73
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-648-d759a210296480a28577d78bb94038c8.jpeg",
74
+ "filename": "126452168_1066889743753048_4742779094618765877_n.jpg",
75
+ "height": 364,
76
+ "scales": {
77
+ "affiche": {
78
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-1320-c7203ce2048d8887e96a7cc72e2e745a.jpeg",
79
+ "height": 364,
80
+ "width": 648
81
+ },
82
+ "banner": {
83
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-1920-e6d76a17585158ea8910d5927fa87c0a.jpeg",
84
+ "height": 364,
85
+ "width": 648
86
+ },
87
+ "extralarge": {
88
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-1320-1b3858e2edc86f902143a5feb3c5d985.jpeg",
89
+ "height": 364,
90
+ "width": 648
91
+ },
92
+ "icon": {
93
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-32-b958466818313233626cb154958e81d2.jpeg",
94
+ "height": 17,
95
+ "width": 32
96
+ },
97
+ "large": {
98
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-768-acfc8b35a02c597d70cdc7ec2b59b7d3.jpeg",
99
+ "height": 364,
100
+ "width": 648
101
+ },
102
+ "liste": {
103
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-150-ec3f51b148deed7805f9b16293260649.jpeg",
104
+ "height": 84,
105
+ "width": 150
106
+ },
107
+ "listing": {
108
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-16-8d38e7cc889d2b40e593edf35c12fc3a.jpeg",
109
+ "height": 8,
110
+ "width": 16
111
+ },
112
+ "medium": {
113
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-600-fb7a466b16866fd87dfa8a3769415c88.jpeg",
114
+ "height": 337,
115
+ "width": 600
116
+ },
117
+ "mini": {
118
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-200-8eb9930d60a336fef44aeaf7e9ad6fae.jpeg",
119
+ "height": 112,
120
+ "width": 200
121
+ },
122
+ "preview": {
123
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-400-7649315221377d3c4f8bf49766ca0765.jpeg",
124
+ "height": 224,
125
+ "width": 400
126
+ },
127
+ "slide": {
128
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-750-401353fa7fc3ff3f395c3863cd0ce166.jpeg",
129
+ "height": 364,
130
+ "width": 648
131
+ },
132
+ "thumb": {
133
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-128-7afb6ea954f6afe1464def9355bcc3fa.jpeg",
134
+ "height": 71,
135
+ "width": 128
136
+ },
137
+ "tile": {
138
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-64-da481245c3cefc8ae9a53c6860115b6f.jpeg",
139
+ "height": 35,
140
+ "width": 64
141
+ },
142
+ "vignette": {
143
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image-390-07e95c62a95fdd3aa93296241b61630b.jpeg",
144
+ "height": 219,
145
+ "width": 390
146
+ }
147
+ },
148
+ "size": 23659,
149
+ "width": 648
150
+ },
151
+ "is_folderish": false,
152
+ "layout": "image_view",
153
+ "lock": {},
154
+ "modified": "2023-05-22T08:51:55+00:00",
155
+ "next_item": {
156
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/view",
157
+ "@type": "Image",
158
+ "description": "",
159
+ "title": "126471410_1066889190419770_7515831077647376503_n.jpg"
160
+ },
161
+ "parent": {
162
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6",
163
+ "@type": "imio.events.Event",
164
+ "UID": "9fb8faf6c9ff40538fbf34e5925292a6",
165
+ "category": "conference_debate",
166
+ "description": "",
167
+ "end": "2023-05-26T00:00:00+00:00",
168
+ "first_end": null,
169
+ "first_start": null,
170
+ "has_leadimage": null,
171
+ "image_field": null,
172
+ "image_scales": null,
173
+ "open_end": false,
174
+ "recurrence": null,
175
+ "review_state": "published",
176
+ "start": "2023-05-23T00:00:00+00:00",
177
+ "title": "Sprint iMio",
178
+ "topics": ["education"],
179
+ "whole_day": true
180
+ },
181
+ "previous_item": {},
182
+ "review_state": null,
183
+ "searchwords": [],
184
+ "showinsearch": true,
185
+ "title": "126452168_1066889743753048_4742779094618765877_n.jpg",
186
+ "version": "current",
187
+ "working_copy": null,
188
+ "working_copy_of": null,
189
+ "image_preview_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image/preview?cache_key=2a99c3660285def066c47a1df06fd661",
190
+ "image_extralarge_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image/extralarge?cache_key=2a99c3660285def066c47a1df06fd661",
191
+ "image_affiche_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/@@images/image/affiche?cache_key=2a99c3660285def066c47a1df06fd661"
192
+ },
193
+ {
194
+ "@components": {
195
+ "actions": {
196
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@actions"
197
+ },
198
+ "aliases": {
199
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@aliases"
200
+ },
201
+ "breadcrumbs": {
202
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@breadcrumbs"
203
+ },
204
+ "contextnavigation": {
205
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@contextnavigation"
206
+ },
207
+ "navigation": {
208
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@navigation"
209
+ },
210
+ "types": {
211
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@types"
212
+ },
213
+ "workflow": {
214
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@workflow"
215
+ }
216
+ },
217
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg",
218
+ "@type": "Image",
219
+ "UID": "ad7dfa4e07314a0ea0b846b12b1d1800",
220
+ "allow_discussion": false,
221
+ "created": "2023-05-22T08:51:55+00:00",
222
+ "description": "",
223
+ "id": "126471410_1066889190419770_7515831077647376503_n.jpg",
224
+ "image": {
225
+ "content-type": "image/jpeg",
226
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-800-70e6819ba9d117496f80e1855da6cbe9.jpeg",
227
+ "filename": "126471410_1066889190419770_7515831077647376503_n.jpg",
228
+ "height": 533,
229
+ "scales": {
230
+ "affiche": {
231
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-1320-25ae147c13d5610de29ae0ccf18740f5.jpeg",
232
+ "height": 440,
233
+ "width": 660
234
+ },
235
+ "banner": {
236
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-1920-6d9001d415b7efa8ccdb4b1b29eb1904.jpeg",
237
+ "height": 533,
238
+ "width": 800
239
+ },
240
+ "extralarge": {
241
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-1320-67ea0548eb17b0b5092bab1d23cec53b.jpeg",
242
+ "height": 533,
243
+ "width": 800
244
+ },
245
+ "icon": {
246
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-32-15e7ded45aa7e807a2f5558524ecf13a.jpeg",
247
+ "height": 21,
248
+ "width": 32
249
+ },
250
+ "large": {
251
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-768-4efb50ae596a6c9223b0c5a8e3aec0e6.jpeg",
252
+ "height": 511,
253
+ "width": 768
254
+ },
255
+ "liste": {
256
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-150-853cc79b5a7ec9fb10fbbc84fed36861.jpeg",
257
+ "height": 99,
258
+ "width": 150
259
+ },
260
+ "listing": {
261
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-16-b3a7b84e41ab88d624c11b478d0f9917.jpeg",
262
+ "height": 10,
263
+ "width": 16
264
+ },
265
+ "medium": {
266
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-600-d362f58d4039be749c4448d95e11d4db.jpeg",
267
+ "height": 399,
268
+ "width": 600
269
+ },
270
+ "mini": {
271
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-200-253b5e6ad895377ff546977a8414a705.jpeg",
272
+ "height": 133,
273
+ "width": 200
274
+ },
275
+ "preview": {
276
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-400-fd8f29c90bd7c36cba6ac28fd80798f6.jpeg",
277
+ "height": 266,
278
+ "width": 400
279
+ },
280
+ "slide": {
281
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-750-d2975c6db5cd5d7aeb5cb2c32b2ac254.jpeg",
282
+ "height": 499,
283
+ "width": 750
284
+ },
285
+ "thumb": {
286
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-128-f554253ca24875622198352a88bf2430.jpeg",
287
+ "height": 85,
288
+ "width": 128
289
+ },
290
+ "tile": {
291
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-64-27e638a0b38920a5316631aae848def9.jpeg",
292
+ "height": 42,
293
+ "width": 64
294
+ },
295
+ "vignette": {
296
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image-390-16d03fac65d3211bba3cb060548000d7.jpeg",
297
+ "height": 259,
298
+ "width": 390
299
+ }
300
+ },
301
+ "size": 88711,
302
+ "width": 800
303
+ },
304
+ "is_folderish": false,
305
+ "layout": "image_view",
306
+ "lock": {},
307
+ "modified": "2023-05-22T08:51:55+00:00",
308
+ "next_item": {
309
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/view",
310
+ "@type": "Image",
311
+ "description": "",
312
+ "title": "126488956_1066888710419818_2862373893611555210_n.jpg"
313
+ },
314
+ "parent": {
315
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6",
316
+ "@type": "imio.events.Event",
317
+ "UID": "9fb8faf6c9ff40538fbf34e5925292a6",
318
+ "category": "conference_debate",
319
+ "description": "",
320
+ "end": "2023-05-26T00:00:00+00:00",
321
+ "first_end": null,
322
+ "first_start": null,
323
+ "has_leadimage": null,
324
+ "image_field": null,
325
+ "image_scales": null,
326
+ "open_end": false,
327
+ "recurrence": null,
328
+ "review_state": "published",
329
+ "start": "2023-05-23T00:00:00+00:00",
330
+ "title": "Sprint iMio",
331
+ "topics": ["education"],
332
+ "whole_day": true
333
+ },
334
+ "previous_item": {
335
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126452168_1066889743753048_4742779094618765877_n.jpg/view",
336
+ "@type": "Image",
337
+ "description": "",
338
+ "title": "126452168_1066889743753048_4742779094618765877_n.jpg"
339
+ },
340
+ "review_state": null,
341
+ "searchwords": [],
342
+ "showinsearch": true,
343
+ "title": "126471410_1066889190419770_7515831077647376503_n.jpg",
344
+ "version": "current",
345
+ "working_copy": null,
346
+ "working_copy_of": null,
347
+ "image_preview_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image/preview?cache_key=2a99c3660285def066c47a1df06fd661",
348
+ "image_extralarge_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image/extralarge?cache_key=2a99c3660285def066c47a1df06fd661",
349
+ "image_affiche_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/@@images/image/affiche?cache_key=2a99c3660285def066c47a1df06fd661"
350
+ },
351
+ {
352
+ "@components": {
353
+ "actions": {
354
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@actions"
355
+ },
356
+ "aliases": {
357
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@aliases"
358
+ },
359
+ "breadcrumbs": {
360
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@breadcrumbs"
361
+ },
362
+ "contextnavigation": {
363
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@contextnavigation"
364
+ },
365
+ "navigation": {
366
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@navigation"
367
+ },
368
+ "types": {
369
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@types"
370
+ },
371
+ "workflow": {
372
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@workflow"
373
+ }
374
+ },
375
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg",
376
+ "@type": "Image",
377
+ "UID": "4e7294e8b88c4e61aae2a3e35e47d89b",
378
+ "allow_discussion": false,
379
+ "created": "2023-05-22T08:51:56+00:00",
380
+ "description": "",
381
+ "id": "126488956_1066888710419818_2862373893611555210_n.jpg",
382
+ "image": {
383
+ "content-type": "image/jpeg",
384
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-700-319d1413a4c793b1f586514ab78561b8.jpeg",
385
+ "filename": "126488956_1066888710419818_2862373893611555210_n.jpg",
386
+ "height": 466,
387
+ "scales": {
388
+ "affiche": {
389
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-1320-9d3776ecbc02c263d529f560932ea477.jpeg",
390
+ "height": 440,
391
+ "width": 660
392
+ },
393
+ "banner": {
394
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-1920-50a9fb30ac046767c116c65d079bd8f5.jpeg",
395
+ "height": 466,
396
+ "width": 700
397
+ },
398
+ "extralarge": {
399
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-1320-95d442a1468cc3aa7d6bf9553f92fb8c.jpeg",
400
+ "height": 466,
401
+ "width": 700
402
+ },
403
+ "icon": {
404
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-32-150dc9ed4484f233eaa523ebd5ea72b4.jpeg",
405
+ "height": 21,
406
+ "width": 32
407
+ },
408
+ "large": {
409
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-768-5f53f7aa56be27def0f614fe22a4ac11.jpeg",
410
+ "height": 466,
411
+ "width": 700
412
+ },
413
+ "liste": {
414
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-150-54a4e31c9a026b4d32909f33b927215c.jpeg",
415
+ "height": 99,
416
+ "width": 150
417
+ },
418
+ "listing": {
419
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-16-0888bac71760c97a4984e92e2165f592.jpeg",
420
+ "height": 10,
421
+ "width": 16
422
+ },
423
+ "medium": {
424
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-600-e797f310acb7d256feb41c8af33e75a7.jpeg",
425
+ "height": 399,
426
+ "width": 600
427
+ },
428
+ "mini": {
429
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-200-0fecc3797d1b675555d9d1e8de4e0656.jpeg",
430
+ "height": 133,
431
+ "width": 200
432
+ },
433
+ "preview": {
434
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-400-c70a4562f0129ce85775866070f01242.jpeg",
435
+ "height": 266,
436
+ "width": 400
437
+ },
438
+ "slide": {
439
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-750-80b434e7ac3c067aca0d8389079dd50c.jpeg",
440
+ "height": 466,
441
+ "width": 700
442
+ },
443
+ "thumb": {
444
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-128-d1d1b0fca9291a3f96a43478c669b3f0.jpeg",
445
+ "height": 85,
446
+ "width": 128
447
+ },
448
+ "tile": {
449
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-64-a3fcad3938530350a3916f304c0a8ff0.jpeg",
450
+ "height": 42,
451
+ "width": 64
452
+ },
453
+ "vignette": {
454
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image-390-6f1897cf04895f83b19952e3a2d98af8.jpeg",
455
+ "height": 259,
456
+ "width": 390
457
+ }
458
+ },
459
+ "size": 53445,
460
+ "width": 700
461
+ },
462
+ "is_folderish": false,
463
+ "layout": "image_view",
464
+ "lock": {},
465
+ "modified": "2023-05-22T08:51:56+00:00",
466
+ "next_item": {
467
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/view",
468
+ "@type": "Image",
469
+ "description": "",
470
+ "title": "126513247_1066889600419729_7682142957885885107_n.jpg"
471
+ },
472
+ "parent": {
473
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6",
474
+ "@type": "imio.events.Event",
475
+ "UID": "9fb8faf6c9ff40538fbf34e5925292a6",
476
+ "category": "conference_debate",
477
+ "description": "",
478
+ "end": "2023-05-26T00:00:00+00:00",
479
+ "first_end": null,
480
+ "first_start": null,
481
+ "has_leadimage": null,
482
+ "image_field": null,
483
+ "image_scales": null,
484
+ "open_end": false,
485
+ "recurrence": null,
486
+ "review_state": "published",
487
+ "start": "2023-05-23T00:00:00+00:00",
488
+ "title": "Sprint iMio",
489
+ "topics": ["education"],
490
+ "whole_day": true
491
+ },
492
+ "previous_item": {
493
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126471410_1066889190419770_7515831077647376503_n.jpg/view",
494
+ "@type": "Image",
495
+ "description": "",
496
+ "title": "126471410_1066889190419770_7515831077647376503_n.jpg"
497
+ },
498
+ "review_state": null,
499
+ "searchwords": [],
500
+ "showinsearch": true,
501
+ "title": "126488956_1066888710419818_2862373893611555210_n.jpg",
502
+ "version": "current",
503
+ "working_copy": null,
504
+ "working_copy_of": null,
505
+ "image_preview_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image/preview?cache_key=f68da3b3ceda4759fd53dee873cc3c6c",
506
+ "image_extralarge_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image/extralarge?cache_key=f68da3b3ceda4759fd53dee873cc3c6c",
507
+ "image_affiche_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/@@images/image/affiche?cache_key=f68da3b3ceda4759fd53dee873cc3c6c"
508
+ },
509
+ {
510
+ "@components": {
511
+ "actions": {
512
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@actions"
513
+ },
514
+ "aliases": {
515
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@aliases"
516
+ },
517
+ "breadcrumbs": {
518
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@breadcrumbs"
519
+ },
520
+ "contextnavigation": {
521
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@contextnavigation"
522
+ },
523
+ "navigation": {
524
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@navigation"
525
+ },
526
+ "types": {
527
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@types"
528
+ },
529
+ "workflow": {
530
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@workflow"
531
+ }
532
+ },
533
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg",
534
+ "@type": "Image",
535
+ "UID": "23313f2173d643e2876e2ed6ac48d12b",
536
+ "allow_discussion": false,
537
+ "created": "2023-05-22T08:51:56+00:00",
538
+ "description": "",
539
+ "id": "126513247_1066889600419729_7682142957885885107_n.jpg",
540
+ "image": {
541
+ "content-type": "image/jpeg",
542
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-960-97466f919b38e388ab112a9d4b5e48cc.jpeg",
543
+ "filename": "126513247_1066889600419729_7682142957885885107_n.jpg",
544
+ "height": 614,
545
+ "scales": {
546
+ "affiche": {
547
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-1320-f8290050cd89fe03b3c896b0849f8856.jpeg",
548
+ "height": 440,
549
+ "width": 687
550
+ },
551
+ "banner": {
552
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-1920-b627318e3bb285d9e96308081238e551.jpeg",
553
+ "height": 600,
554
+ "width": 938
555
+ },
556
+ "extralarge": {
557
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-1320-006880642f868259c014d22ed0f77256.jpeg",
558
+ "height": 614,
559
+ "width": 960
560
+ },
561
+ "icon": {
562
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-32-83aa83e680d3bfbb1afeacc131d01f3d.jpeg",
563
+ "height": 20,
564
+ "width": 32
565
+ },
566
+ "large": {
567
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-768-9d8be59b76e2c7ecbd8b52f6699f8e40.jpeg",
568
+ "height": 491,
569
+ "width": 768
570
+ },
571
+ "liste": {
572
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-150-d0da9a6cb2b94da8523bd93aecbdb637.jpeg",
573
+ "height": 95,
574
+ "width": 150
575
+ },
576
+ "listing": {
577
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-16-34e07881c79128cbcd9a97b3a44b83ad.jpeg",
578
+ "height": 10,
579
+ "width": 16
580
+ },
581
+ "medium": {
582
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-600-de36370c7b3dfbf9edea902c976747a6.jpeg",
583
+ "height": 383,
584
+ "width": 600
585
+ },
586
+ "mini": {
587
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-200-082ae278c00d75247d04067bb63e5245.jpeg",
588
+ "height": 127,
589
+ "width": 200
590
+ },
591
+ "preview": {
592
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-400-19d78ceed13e59a160db9969cadc9be7.jpeg",
593
+ "height": 255,
594
+ "width": 400
595
+ },
596
+ "slide": {
597
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-750-c8e4974a35058afa4f5a763e4e35b38f.jpeg",
598
+ "height": 479,
599
+ "width": 750
600
+ },
601
+ "thumb": {
602
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-128-94356b3791d84235d73912f3bcaaa859.jpeg",
603
+ "height": 81,
604
+ "width": 128
605
+ },
606
+ "tile": {
607
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-64-6cfeabb75c5bd332f6856fd3feb369ee.jpeg",
608
+ "height": 40,
609
+ "width": 64
610
+ },
611
+ "vignette": {
612
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image-390-ee5792175dfa28a93aba679f198a68b0.jpeg",
613
+ "height": 249,
614
+ "width": 390
615
+ }
616
+ },
617
+ "size": 78331,
618
+ "width": 960
619
+ },
620
+ "is_folderish": false,
621
+ "layout": "image_view",
622
+ "lock": {},
623
+ "modified": "2023-05-22T08:51:57+00:00",
624
+ "next_item": {
625
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/view",
626
+ "@type": "Image",
627
+ "description": "",
628
+ "title": "126934071_1066889590419730_8277756273354493333_n.jpg"
629
+ },
630
+ "parent": {
631
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6",
632
+ "@type": "imio.events.Event",
633
+ "UID": "9fb8faf6c9ff40538fbf34e5925292a6",
634
+ "category": "conference_debate",
635
+ "description": "",
636
+ "end": "2023-05-26T00:00:00+00:00",
637
+ "first_end": null,
638
+ "first_start": null,
639
+ "has_leadimage": null,
640
+ "image_field": null,
641
+ "image_scales": null,
642
+ "open_end": false,
643
+ "recurrence": null,
644
+ "review_state": "published",
645
+ "start": "2023-05-23T00:00:00+00:00",
646
+ "title": "Sprint iMio",
647
+ "topics": ["education"],
648
+ "whole_day": true
649
+ },
650
+ "previous_item": {
651
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126488956_1066888710419818_2862373893611555210_n.jpg/view",
652
+ "@type": "Image",
653
+ "description": "",
654
+ "title": "126488956_1066888710419818_2862373893611555210_n.jpg"
655
+ },
656
+ "review_state": null,
657
+ "searchwords": [],
658
+ "showinsearch": true,
659
+ "title": "126513247_1066889600419729_7682142957885885107_n.jpg",
660
+ "version": "current",
661
+ "working_copy": null,
662
+ "working_copy_of": null,
663
+ "image_preview_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image/preview?cache_key=8c4754c017bc5eecc0ddfba520445792",
664
+ "image_extralarge_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image/extralarge?cache_key=8c4754c017bc5eecc0ddfba520445792",
665
+ "image_affiche_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/@@images/image/affiche?cache_key=8c4754c017bc5eecc0ddfba520445792"
666
+ },
667
+ {
668
+ "@components": {
669
+ "actions": {
670
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@actions"
671
+ },
672
+ "aliases": {
673
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@aliases"
674
+ },
675
+ "breadcrumbs": {
676
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@breadcrumbs"
677
+ },
678
+ "contextnavigation": {
679
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@contextnavigation"
680
+ },
681
+ "navigation": {
682
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@navigation"
683
+ },
684
+ "types": {
685
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@types"
686
+ },
687
+ "workflow": {
688
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@workflow"
689
+ }
690
+ },
691
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg",
692
+ "@type": "Image",
693
+ "UID": "847b97b014ef4dd19b6e37ba09ee2411",
694
+ "allow_discussion": false,
695
+ "created": "2023-05-22T08:51:57+00:00",
696
+ "description": "",
697
+ "id": "126934071_1066889590419730_8277756273354493333_n.jpg",
698
+ "image": {
699
+ "content-type": "image/jpeg",
700
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-858-667eaa3472da753dea8fdf83bcbce5b3.jpeg",
701
+ "filename": "126934071_1066889590419730_8277756273354493333_n.jpg",
702
+ "height": 536,
703
+ "scales": {
704
+ "affiche": {
705
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-1320-5a1985324f31ed050ea81aa8f7e6fb0a.jpeg",
706
+ "height": 440,
707
+ "width": 704
708
+ },
709
+ "banner": {
710
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-1920-5aa699a966fb4c214dbf23c26e042ed7.jpeg",
711
+ "height": 536,
712
+ "width": 858
713
+ },
714
+ "extralarge": {
715
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-1320-13f13a7ba327cb24c1fcd94679c7801c.jpeg",
716
+ "height": 536,
717
+ "width": 858
718
+ },
719
+ "icon": {
720
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-32-d5e098ab497822a792d0547fc674834c.jpeg",
721
+ "height": 19,
722
+ "width": 32
723
+ },
724
+ "large": {
725
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-768-aa288a7fd3a2506fbc33d674b2ee7ebb.jpeg",
726
+ "height": 479,
727
+ "width": 768
728
+ },
729
+ "liste": {
730
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-150-7812fc6411fbd367c79a16cbe4d96856.jpeg",
731
+ "height": 93,
732
+ "width": 150
733
+ },
734
+ "listing": {
735
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-16-095423c815c9e14633419da3b87536db.jpeg",
736
+ "height": 9,
737
+ "width": 16
738
+ },
739
+ "medium": {
740
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-600-951629b004359a58b38949a8bf8ba159.jpeg",
741
+ "height": 374,
742
+ "width": 600
743
+ },
744
+ "mini": {
745
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-200-94296f691078a517f276a69128bdb7ae.jpeg",
746
+ "height": 124,
747
+ "width": 200
748
+ },
749
+ "preview": {
750
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-400-2bd23db87bdb58063739d33ce939021a.jpeg",
751
+ "height": 249,
752
+ "width": 400
753
+ },
754
+ "slide": {
755
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-750-f46114fadf07e79f492df9b27f74c1b3.jpeg",
756
+ "height": 468,
757
+ "width": 750
758
+ },
759
+ "thumb": {
760
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-128-47224f69b842d5da133e92cf2b4a00f4.jpeg",
761
+ "height": 79,
762
+ "width": 128
763
+ },
764
+ "tile": {
765
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-64-a4bcd0a4fb04dd40faffe2953523e9cc.jpeg",
766
+ "height": 39,
767
+ "width": 64
768
+ },
769
+ "vignette": {
770
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image-390-c938bd5cf134018e10da5304c8e1ebaf.jpeg",
771
+ "height": 243,
772
+ "width": 390
773
+ }
774
+ },
775
+ "size": 36997,
776
+ "width": 858
777
+ },
778
+ "is_folderish": false,
779
+ "layout": "image_view",
780
+ "lock": {},
781
+ "modified": "2023-05-22T08:51:57+00:00",
782
+ "next_item": {
783
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/view",
784
+ "@type": "Image",
785
+ "description": "",
786
+ "title": "126942168_1066889087086447_5301599170552935330_o.jpg"
787
+ },
788
+ "parent": {
789
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6",
790
+ "@type": "imio.events.Event",
791
+ "UID": "9fb8faf6c9ff40538fbf34e5925292a6",
792
+ "category": "conference_debate",
793
+ "description": "",
794
+ "end": "2023-05-26T00:00:00+00:00",
795
+ "first_end": null,
796
+ "first_start": null,
797
+ "has_leadimage": null,
798
+ "image_field": null,
799
+ "image_scales": null,
800
+ "open_end": false,
801
+ "recurrence": null,
802
+ "review_state": "published",
803
+ "start": "2023-05-23T00:00:00+00:00",
804
+ "title": "Sprint iMio",
805
+ "topics": ["education"],
806
+ "whole_day": true
807
+ },
808
+ "previous_item": {
809
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126513247_1066889600419729_7682142957885885107_n.jpg/view",
810
+ "@type": "Image",
811
+ "description": "",
812
+ "title": "126513247_1066889600419729_7682142957885885107_n.jpg"
813
+ },
814
+ "review_state": null,
815
+ "searchwords": [],
816
+ "showinsearch": true,
817
+ "title": "126934071_1066889590419730_8277756273354493333_n.jpg",
818
+ "version": "current",
819
+ "working_copy": null,
820
+ "working_copy_of": null,
821
+ "image_preview_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image/preview?cache_key=8c4754c017bc5eecc0ddfba520445792",
822
+ "image_extralarge_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image/extralarge?cache_key=8c4754c017bc5eecc0ddfba520445792",
823
+ "image_affiche_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/@@images/image/affiche?cache_key=8c4754c017bc5eecc0ddfba520445792"
824
+ },
825
+ {
826
+ "@components": {
827
+ "actions": {
828
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@actions"
829
+ },
830
+ "aliases": {
831
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@aliases"
832
+ },
833
+ "breadcrumbs": {
834
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@breadcrumbs"
835
+ },
836
+ "contextnavigation": {
837
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@contextnavigation"
838
+ },
839
+ "navigation": {
840
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@navigation"
841
+ },
842
+ "types": {
843
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@types"
844
+ },
845
+ "workflow": {
846
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@workflow"
847
+ }
848
+ },
849
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg",
850
+ "@type": "Image",
851
+ "UID": "26dc60ed8f2b4e03a91910c15ec09f72",
852
+ "allow_discussion": false,
853
+ "created": "2023-05-22T08:51:58+00:00",
854
+ "description": "",
855
+ "id": "126942168_1066889087086447_5301599170552935330_o.jpg",
856
+ "image": {
857
+ "content-type": "image/jpeg",
858
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-1100-94f7aa4046779f107f974f52f88d8ea0.jpeg",
859
+ "filename": "126942168_1066889087086447_5301599170552935330_o.jpg",
860
+ "height": 681,
861
+ "scales": {
862
+ "affiche": {
863
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-1320-5d0d2f2c9dd3d23e3c05e587b6d3335e.jpeg",
864
+ "height": 440,
865
+ "width": 710
866
+ },
867
+ "banner": {
868
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-1920-e590ea11617f5a6449fd1a4ebf807c5b.jpeg",
869
+ "height": 600,
870
+ "width": 969
871
+ },
872
+ "extralarge": {
873
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-1320-d555bf46bdd6385ddff61e69f5b63b63.jpeg",
874
+ "height": 681,
875
+ "width": 1100
876
+ },
877
+ "icon": {
878
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-32-63542d5cb189992590f4c6c028b6310b.jpeg",
879
+ "height": 19,
880
+ "width": 32
881
+ },
882
+ "large": {
883
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-768-37566402af8f82811bc2a5c395eb591a.jpeg",
884
+ "height": 475,
885
+ "width": 768
886
+ },
887
+ "liste": {
888
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-150-b6d50b9b92415657ee9d4a9daa50d6eb.jpeg",
889
+ "height": 92,
890
+ "width": 150
891
+ },
892
+ "listing": {
893
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-16-979658454d1f6b8c6c3aadccd12f71c7.jpeg",
894
+ "height": 9,
895
+ "width": 16
896
+ },
897
+ "medium": {
898
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-600-088ff756130ca12b3420ddd9d4bc5cd8.jpeg",
899
+ "height": 371,
900
+ "width": 600
901
+ },
902
+ "mini": {
903
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-200-844ee98ff0e417f5a6ede72092fdddba.jpeg",
904
+ "height": 123,
905
+ "width": 200
906
+ },
907
+ "preview": {
908
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-400-513dddb1c1f05975c2c6c802e3c67d87.jpeg",
909
+ "height": 247,
910
+ "width": 400
911
+ },
912
+ "slide": {
913
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-750-b6fddd233ac24eb0ed6fa200d2124dc6.jpeg",
914
+ "height": 464,
915
+ "width": 750
916
+ },
917
+ "thumb": {
918
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-128-d64323dcd11bf246140e84fb59b68c9b.jpeg",
919
+ "height": 79,
920
+ "width": 128
921
+ },
922
+ "tile": {
923
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-64-4474ea0f2a0f6ac3dd0a9de56172762a.jpeg",
924
+ "height": 39,
925
+ "width": 64
926
+ },
927
+ "vignette": {
928
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image-390-ee2e6f8f45bcd40d93512e55ed2642de.jpeg",
929
+ "height": 241,
930
+ "width": 390
931
+ }
932
+ },
933
+ "size": 100703,
934
+ "width": 1100
935
+ },
936
+ "is_folderish": false,
937
+ "layout": "image_view",
938
+ "lock": {},
939
+ "modified": "2023-05-22T08:51:58+00:00",
940
+ "next_item": {
941
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/view",
942
+ "@type": "Image",
943
+ "description": "",
944
+ "title": "126943166_1066889483753074_4142117401221264770_n.jpg"
945
+ },
946
+ "parent": {
947
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6",
948
+ "@type": "imio.events.Event",
949
+ "UID": "9fb8faf6c9ff40538fbf34e5925292a6",
950
+ "category": "conference_debate",
951
+ "description": "",
952
+ "end": "2023-05-26T00:00:00+00:00",
953
+ "first_end": null,
954
+ "first_start": null,
955
+ "has_leadimage": null,
956
+ "image_field": null,
957
+ "image_scales": null,
958
+ "open_end": false,
959
+ "recurrence": null,
960
+ "review_state": "published",
961
+ "start": "2023-05-23T00:00:00+00:00",
962
+ "title": "Sprint iMio",
963
+ "topics": ["education"],
964
+ "whole_day": true
965
+ },
966
+ "previous_item": {
967
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126934071_1066889590419730_8277756273354493333_n.jpg/view",
968
+ "@type": "Image",
969
+ "description": "",
970
+ "title": "126934071_1066889590419730_8277756273354493333_n.jpg"
971
+ },
972
+ "review_state": null,
973
+ "searchwords": [],
974
+ "showinsearch": true,
975
+ "title": "126942168_1066889087086447_5301599170552935330_o.jpg",
976
+ "version": "current",
977
+ "working_copy": null,
978
+ "working_copy_of": null,
979
+ "image_preview_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image/preview?cache_key=40fa65c721966e10faa9e8c95f6b68f0",
980
+ "image_extralarge_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image/extralarge?cache_key=40fa65c721966e10faa9e8c95f6b68f0",
981
+ "image_affiche_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/@@images/image/affiche?cache_key=40fa65c721966e10faa9e8c95f6b68f0"
982
+ },
983
+ {
984
+ "@components": {
985
+ "actions": {
986
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@actions"
987
+ },
988
+ "aliases": {
989
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@aliases"
990
+ },
991
+ "breadcrumbs": {
992
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@breadcrumbs"
993
+ },
994
+ "contextnavigation": {
995
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@contextnavigation"
996
+ },
997
+ "navigation": {
998
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@navigation"
999
+ },
1000
+ "types": {
1001
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@types"
1002
+ },
1003
+ "workflow": {
1004
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@workflow"
1005
+ }
1006
+ },
1007
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg",
1008
+ "@type": "Image",
1009
+ "UID": "9b5d292010774af2ab1e2f6569aba279",
1010
+ "allow_discussion": false,
1011
+ "created": "2023-05-22T08:51:58+00:00",
1012
+ "description": "",
1013
+ "id": "126943166_1066889483753074_4142117401221264770_n.jpg",
1014
+ "image": {
1015
+ "content-type": "image/jpeg",
1016
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-653-76dcf28bb1f8319cec9d3197251d3ec4.jpeg",
1017
+ "filename": "126943166_1066889483753074_4142117401221264770_n.jpg",
1018
+ "height": 385,
1019
+ "scales": {
1020
+ "affiche": {
1021
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-1320-06f523e45c77b6c05fd702e903145437.jpeg",
1022
+ "height": 385,
1023
+ "width": 653
1024
+ },
1025
+ "banner": {
1026
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-1920-6c2949d05256614e7e53ad8ad108db55.jpeg",
1027
+ "height": 385,
1028
+ "width": 653
1029
+ },
1030
+ "extralarge": {
1031
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-1320-188cc62ce0448ecc82dec43efb2ac3e7.jpeg",
1032
+ "height": 385,
1033
+ "width": 653
1034
+ },
1035
+ "icon": {
1036
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-32-0f7bf8bb760bda10d723d44a2da9b37d.jpeg",
1037
+ "height": 18,
1038
+ "width": 32
1039
+ },
1040
+ "large": {
1041
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-768-33f4a4560865f792fce7daa9f22084b1.jpeg",
1042
+ "height": 385,
1043
+ "width": 653
1044
+ },
1045
+ "liste": {
1046
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-150-7b6db2750ad2602e63421371f1593047.jpeg",
1047
+ "height": 88,
1048
+ "width": 150
1049
+ },
1050
+ "listing": {
1051
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-16-0ca662873ef360d74b003806c5f862d0.jpeg",
1052
+ "height": 9,
1053
+ "width": 16
1054
+ },
1055
+ "medium": {
1056
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-600-3eea37493f1c3c00432723338d8e293c.jpeg",
1057
+ "height": 353,
1058
+ "width": 600
1059
+ },
1060
+ "mini": {
1061
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-200-5a5f9b3d47602a22a3c9a6ef66508f96.jpeg",
1062
+ "height": 117,
1063
+ "width": 200
1064
+ },
1065
+ "preview": {
1066
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-400-e10ffbfd9d96d8128cded850164da132.jpeg",
1067
+ "height": 235,
1068
+ "width": 400
1069
+ },
1070
+ "slide": {
1071
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-750-3ecc62fcfd9c9e5483b45b8e52bd7eca.jpeg",
1072
+ "height": 385,
1073
+ "width": 653
1074
+ },
1075
+ "thumb": {
1076
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-128-f61697f3c068d5a0b9e69131cafa6a51.jpeg",
1077
+ "height": 75,
1078
+ "width": 128
1079
+ },
1080
+ "tile": {
1081
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-64-9d9a0b55e16a39e055bcd15986fbd32c.jpeg",
1082
+ "height": 37,
1083
+ "width": 64
1084
+ },
1085
+ "vignette": {
1086
+ "download": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image-390-6f56a20de66edcfdbb20fb13cf24c12b.jpeg",
1087
+ "height": 229,
1088
+ "width": 390
1089
+ }
1090
+ },
1091
+ "size": 21862,
1092
+ "width": 653
1093
+ },
1094
+ "is_folderish": false,
1095
+ "layout": "image_view",
1096
+ "lock": {},
1097
+ "modified": "2023-05-22T08:51:58+00:00",
1098
+ "next_item": {},
1099
+ "parent": {
1100
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6",
1101
+ "@type": "imio.events.Event",
1102
+ "UID": "9fb8faf6c9ff40538fbf34e5925292a6",
1103
+ "category": "conference_debate",
1104
+ "description": "",
1105
+ "end": "2023-05-26T00:00:00+00:00",
1106
+ "first_end": null,
1107
+ "first_start": null,
1108
+ "has_leadimage": null,
1109
+ "image_field": null,
1110
+ "image_scales": null,
1111
+ "open_end": false,
1112
+ "recurrence": null,
1113
+ "review_state": "published",
1114
+ "start": "2023-05-23T00:00:00+00:00",
1115
+ "title": "Sprint iMio",
1116
+ "topics": ["education"],
1117
+ "whole_day": true
1118
+ },
1119
+ "previous_item": {
1120
+ "@id": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126942168_1066889087086447_5301599170552935330_o.jpg/view",
1121
+ "@type": "Image",
1122
+ "description": "",
1123
+ "title": "126942168_1066889087086447_5301599170552935330_o.jpg"
1124
+ },
1125
+ "review_state": null,
1126
+ "searchwords": [],
1127
+ "showinsearch": true,
1128
+ "title": "126943166_1066889483753074_4142117401221264770_n.jpg",
1129
+ "version": "current",
1130
+ "working_copy": null,
1131
+ "working_copy_of": null,
1132
+ "image_preview_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image/preview?cache_key=40fa65c721966e10faa9e8c95f6b68f0",
1133
+ "image_extralarge_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image/extralarge?cache_key=40fa65c721966e10faa9e8c95f6b68f0",
1134
+ "image_affiche_scale": "https://actualites.enwallonie.be/belleville/communal/9fb8faf6c9ff40538fbf34e5925292a6/126943166_1066889483753074_4142117401221264770_n.jpg/@@images/image/affiche?cache_key=40fa65c721966e10faa9e8c95f6b68f0"
1135
+ }
1136
+ ],
1137
+ "items_total": 7,
39
1138
  "modified": "2021-05-11T13:31:00",
40
1139
  "review_state": "published",
41
1140
  "title": "Première actualité",