@net7/components 4.0.0 → 4.1.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.
@@ -125,15 +125,36 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
125
125
  class BubbleChartComponent {
126
126
  constructor() {
127
127
  this._loaded = false;
128
+ /**
129
+ * Reference for much of the new text scaling code comes from:
130
+ * https://observablehq.com/@mbostock/fit-text-to-circle
131
+ */
132
+ this.measureWidth = (text) => {
133
+ var _a, _b, _c, _d, _e, _f;
134
+ const context = document.createElement('canvas').getContext('2d');
135
+ // measure text with the correct font family and weight
136
+ if (((_c = (_b = (_a = this.data) === null || _a === void 0 ? void 0 : _a.fontRendering) === null || _b === void 0 ? void 0 : _b.label) === null || _c === void 0 ? void 0 : _c.family) && ((_f = (_e = (_d = this.data) === null || _d === void 0 ? void 0 : _d.fontRendering) === null || _e === void 0 ? void 0 : _e.label) === null || _f === void 0 ? void 0 : _f.weight)) {
137
+ context.font = `${this.data.fontRendering.label.weight} ${this.data.fontRendering.label.family}`;
138
+ }
139
+ // calculated width + padding
140
+ return context.measureText(text).width * 1.15;
141
+ };
142
+ this.isValidNumber = (value) => !Number.isNaN(Number.parseFloat(value));
128
143
  this.draw = () => {
129
144
  const { d3 } = this;
130
145
  const { containerId, data, height, width, selected, transition, colorMatch, shuffle, fontRendering } = this.data;
146
+ // SVG shape path for the close icon
131
147
  const closeIconPath = 'M -50,40 L-40,50 0,10 40,50 50,40 10,0 50,-40 40,-50 0,-10 -40,-50 -50,-40 -10,0 -50,40';
148
+ const defaultLineHeight = 13;
149
+ // word count before truncating with ellipsis
150
+ const ellipsisThreshold = 4;
151
+ const textScalingFactor = 1;
132
152
  if (!Array.isArray(data)) {
133
153
  // Check if it is possible to draw with the current dataset
134
154
  console.warn('(n7-bubble-chart) The data object is not in the expected format!');
135
155
  return;
136
156
  }
157
+ // animation settings used to render changes in the chart
137
158
  let t = d3
138
159
  .transition()
139
160
  .duration(0);
@@ -143,17 +164,23 @@ class BubbleChartComponent {
143
164
  .duration(transition)
144
165
  .ease(d3.easeCubicInOut);
145
166
  }
167
+ // calculate the bubble background color from it's type (domain)
146
168
  const colorMap = d3.scaleOrdinal()
147
169
  .domain(colorMatch ? colorMatch.domain : ['persona', 'luogo', 'organizzazione', 'cosa notevole'])
148
170
  .range(colorMatch ? colorMatch.range : d3.schemeTableau10);
171
+ // calculate how big the radius of the bubble should be
149
172
  const sizeScale = d3 // map entity count to bubble size
150
173
  .scaleLinear()
151
174
  .domain([0, d3.max(data, (d) => +d.count)])
152
175
  .range([3, d3.max(data, (d) => +d.count)]);
176
+ // pack is a d3js method which calculates the bubble's x & y position in the chart
177
+ // circle packing reference: https://observablehq.com/@d3/pack
153
178
  const pack = (children) => d3
154
179
  .pack()
155
180
  .size([width - 2, height - 2])
156
181
  .padding(1.5)(d3.hierarchy({ children }).sum((d) => sizeScale(d.count)));
182
+ // the bubbles are packed in a single level tree, this is the root
183
+ // see circle packing reference: https://observablehq.com/@d3/pack
157
184
  const root = () => {
158
185
  if (typeof shuffle === 'undefined' || shuffle) {
159
186
  const shuffData = data.slice(); // do not modify the source data!
@@ -161,25 +188,33 @@ class BubbleChartComponent {
161
188
  } // if shuffle is set to false, skip the data shuffle
162
189
  return pack(data);
163
190
  };
191
+ // svg canvas where all the bubbles are drawn
164
192
  const svg = d3
165
193
  .select(`#${containerId}`)
166
194
  .attr('viewBox', [0, 0, width, height])
167
- .attr('font-family', 'Verdana, Geneva, sans-serif')
195
+ // .attr('font-family', 'Verdana, Geneva, sans-serif')
196
+ // .attr('font-size', '10px')
197
+ .style('font', '10px Verdana, Geneva, sans-serif')
198
+ .style('height', 'auto')
199
+ .style('max-width', '100%')
168
200
  .attr('text-anchor', 'middle');
201
+ this.removeUnneededNodes(svg);
202
+ // a leaf of the "pack tree" corresponds to a bubble
169
203
  const leaf = svg.selectAll('g').data(root().leaves(), (d) => d.data.entity.id);
170
204
  leaf
171
205
  .transition(t) // update transition on <g>
172
206
  .attr('fill-opacity', 1)
173
- .attr('transform', (d) => `translate(${d.x + 1},${d.y + 1})`)
174
- .attr('font-size', (d) => {
175
- let size = d.r / 5.5;
176
- size *= 1;
177
- size += 1;
178
- return `${Math.round(size)}px`;
179
- });
180
- leaf.selectAll('.close-icon').remove(); // clear all existing close icons
207
+ .attr('transform', (d) => `translate(${d.x + 1},${d.y + 1})`);
208
+ // .attr('font-size', (d) => {
209
+ // let size = d.r / 5.5;
210
+ // size *= 1;
211
+ // size += 1;
212
+ // return `${Math.round(size)}px`;
213
+ // });
214
+ // clear all existing close icons from the bubbles
215
+ leaf.selectAll('.close-icon').remove();
181
216
  if (selected) {
182
- leaf // render necessary close icons
217
+ leaf // render only the necessary close icons
183
218
  .filter((d) => selected.includes(d.data.entity.id))
184
219
  .append('path')
185
220
  .attr('class', 'close-icon')
@@ -197,86 +232,10 @@ class BubbleChartComponent {
197
232
  .transition(t) // update transition on <circle>
198
233
  .attr('fill-opacity', 1)
199
234
  .attr('r', (d) => d.r);
200
- leaf
201
- .select('text')
202
- .attr('font-family', () => {
203
- if (fontRendering && fontRendering.label && fontRendering.label.family) {
204
- return fontRendering.label.family;
205
- }
206
- return 'inherit';
207
- })
208
- .attr('font-weight', () => {
209
- if (fontRendering && fontRendering.label && fontRendering.label.weight) {
210
- return fontRendering.label.weight;
211
- }
212
- return 'inherit';
213
- })
214
- .selectAll('tspan')
215
- .data((d) => {
216
- if (d.r / 4 > 4.5) {
217
- // show text and number threshhold
218
- let label = (d.data.entity.label.charAt(0).toUpperCase()
219
- + d.data.entity.label.slice(1)).split(/ +/g);
220
- if (label.length > 3) {
221
- label = label.slice(0, 3);
222
- label[2] += '…';
223
- }
224
- return label;
225
- }
226
- if (d.r / 4 > 2.5) {
227
- // show text threshhold
228
- let label = (d.data.entity.label.charAt(0).toUpperCase()
229
- + d.data.entity.label.slice(1)).split(/ +/g);
230
- if (label.length > 3) {
231
- label = label.slice(0, 3);
232
- label[2] += '…';
233
- }
234
- return label;
235
- }
236
- return '';
237
- })
238
- .join('tspan')
239
- .attr('x', 0)
240
- .attr('y', (d, i, nodes) => `${i - (nodes.length + 1) / 2 + 0.97}em`)
241
- .attr('fill', 'white')
242
- .text((d) => d);
243
- leaf
244
- .select('.label-count')
245
- .attr('font-family', () => {
246
- if (fontRendering && fontRendering.counter && fontRendering.counter.family) {
247
- return fontRendering.counter.family;
248
- }
249
- return 'inherit';
250
- })
251
- .attr('font-weight', () => {
252
- if (fontRendering && fontRendering.counter && fontRendering.counter.weight) {
253
- return fontRendering.counter.weight;
254
- }
255
- return 'inherit';
256
- })
257
- .attr('fill', 'white')
258
- .text((d) => {
259
- if (d.r / 4 > 2.5) {
260
- // show text and number threshhold
261
- return d.data.count;
262
- }
263
- return '';
264
- })
265
- .attr('y', (d) => {
266
- let labelLength = d.data.entity.label.split(/ +/g);
267
- if (labelLength.length > 3) {
268
- labelLength = labelLength.slice(0, 3);
269
- }
270
- return `${labelLength.length - (labelLength.length + 1) / 2 + 0.97}em`;
271
- });
235
+ // g represents a "group of svg items"
236
+ // items grouped together can be added / removed / scaled together
272
237
  const g = leaf.enter().append('g');
273
238
  g.attr('transform', (d) => `translate(${d.x + 1},${d.y + 1})`)
274
- .attr('font-size', (d) => {
275
- let size = d.r / 5.5;
276
- size *= 1;
277
- size += 1;
278
- return `${Math.round(size)}px`;
279
- })
280
239
  .attr('cursor', 'pointer')
281
240
  .on('click', (event, d) => {
282
241
  this.onClick(d.data.entity.id);
@@ -289,10 +248,12 @@ class BubbleChartComponent {
289
248
  .attr('fill-opacity', 1)
290
249
  .attr('fill', (d) => colorMap(d.data.entity.typeOfEntity))
291
250
  .attr('r', (d) => d.r);
251
+ // prevents the text from overflowing the bubble
292
252
  g.append('clipPath')
293
253
  .attr('id', (d) => { d.clipUid = `Clip-${d.data.entity.id}`; })
294
254
  .append('use')
295
255
  .attr('xlink:href', (d) => d.leafUid.href);
256
+ /** NEW TEXT LOGIC */
296
257
  g.append('text')
297
258
  .attr('font-family', () => {
298
259
  if (fontRendering && fontRendering.label && fontRendering.label.family) {
@@ -306,40 +267,86 @@ class BubbleChartComponent {
306
267
  }
307
268
  return 'inherit';
308
269
  })
309
- .selectAll('tspan')
310
- .data((d) => {
311
- if (d.r / 4 > 4.5) {
312
- // show text and number threshhold
313
- let label = (d.data.entity.label.charAt(0).toUpperCase()
314
- + d.data.entity.label.slice(1)).split(/ +/g);
315
- if (label.length > 3) {
316
- label = label.slice(0, 3);
317
- label[2] += '…';
318
- }
319
- return label;
270
+ .attr('fill', 'white')
271
+ .each((d) => {
272
+ // Capitalize the first letter of the label
273
+ d.data.entity.label = d.data.entity
274
+ .label.charAt(0).toUpperCase()
275
+ + d.data.entity.label.slice(1);
276
+ // 1. initialize meta object
277
+ if (!d._meta || typeof d._meta !== 'object')
278
+ d._meta = {};
279
+ // 2. tokenize label & count into words
280
+ const words = d.data.entity.label.split(/[\s]+/g); // To hyphenate: /\s+|(?<=-)/
281
+ // Truncate with ellipsis if the label is longer than the threshold
282
+ if (words.length > ellipsisThreshold) {
283
+ words.splice(ellipsisThreshold, words.length - ellipsisThreshold);
284
+ words[ellipsisThreshold - 1] += '…';
320
285
  }
286
+ // add counter
321
287
  if (d.r / 4 > 2.5) {
322
- // show text threshhold
323
- let label = (d.data.entity.label.charAt(0).toUpperCase()
324
- + d.data.entity.label.slice(1)).split(/ +/g);
325
- if (label.length > 3) {
326
- label = label.slice(0, 3);
327
- label[2] += '…';
288
+ // show text threshold
289
+ if (!words[words.length - 1])
290
+ words.pop();
291
+ if (!words[0])
292
+ words.shift();
293
+ }
294
+ if (d.r / 4 > 4.5) {
295
+ // show number threshold
296
+ words.push(`${d.data.count}`);
297
+ }
298
+ d._meta.words = words;
299
+ d._meta.lineHeight = defaultLineHeight;
300
+ const targetWidth = Math.sqrt(this.measureWidth(d._meta.words.join(' ').trim()) * defaultLineHeight);
301
+ // 3. build lines of text
302
+ d._meta.lines = [];
303
+ let line;
304
+ let lineWidth0 = Infinity;
305
+ for (let i = 0, n = d._meta.words.length; i < n; i += 1) {
306
+ const lineText1 = (line ? `${line.text} ` : '') + words[i];
307
+ const lineWidth1 = this.measureWidth(lineText1);
308
+ if ((lineWidth0 + lineWidth1) / 2 < targetWidth && i !== n - 1) {
309
+ line.width = lineWidth0;
310
+ lineWidth0 = lineWidth1;
311
+ line.text = lineText1;
328
312
  }
329
- return label;
313
+ else {
314
+ // if line is too long or this is the last line (counter), push to next line
315
+ lineWidth0 = this.measureWidth(words[i]);
316
+ line = { width: lineWidth0, text: words[i] };
317
+ d._meta.lines.push(line);
318
+ }
319
+ }
320
+ // 4. compute the bounding radius
321
+ let radius = 0;
322
+ for (let i = 0, n = d._meta.lines.length; i < n; i += 1) {
323
+ const dy = (Math.abs(i - n / 2) + 0.8) * d._meta.lineHeight;
324
+ const dx = d._meta.lines[i].width / 2;
325
+ radius = Math.max(radius, Math.sqrt(dx * dx + dy * dy));
330
326
  }
331
- return '';
327
+ d._meta.textRadius = radius;
328
+ return d;
332
329
  })
333
- .join('tspan')
330
+ .attr('transform', (d) => {
331
+ const scale = ((d.r * 0.8) / d._meta.textRadius) * textScalingFactor;
332
+ return `scale(${scale})`;
333
+ })
334
+ .filter((d) => (d.r / 4 > 2.5))
335
+ .selectAll('tspan')
336
+ .data((d) => d._meta.lines)
337
+ .enter()
338
+ .append('tspan')
334
339
  .attr('x', 0)
335
- .attr('y', (d, i, nodes) => `${i - (nodes.length + 1) / 2 + 0.97}em`)
336
- .attr('fill', 'white')
337
- .text((d) => d)
340
+ .attr('y', (d, i, n) => (i - n.length / 2 + 0.8) * defaultLineHeight)
341
+ .attr('class', (d, i, n) => (
342
+ // if it's the last label and a valid number, mark as counter
343
+ i === n.length - 1 && this.isValidNumber(d.text) ? 'label-counter' : 'label-text'))
344
+ .text((d) => d.text)
338
345
  .attr('fill-opacity', 0)
339
346
  .transition(t) // enter() transition on <tspan>
340
347
  .attr('fill-opacity', 1);
341
- g.append('text') // Count label
342
- .attr('class', 'label-count')
348
+ // custom style for the counter
349
+ g.selectAll('tspan.label-counter')
343
350
  .attr('font-family', () => {
344
351
  if (fontRendering && fontRendering.counter && fontRendering.counter.family) {
345
352
  return fontRendering.counter.family;
@@ -351,25 +358,7 @@ class BubbleChartComponent {
351
358
  return fontRendering.counter.weight;
352
359
  }
353
360
  return 'inherit';
354
- })
355
- .attr('fill', 'white')
356
- .text((d) => {
357
- if (d.r / 4 > 2.5) {
358
- // show text and number threshhold
359
- return d.data.count;
360
- }
361
- return '';
362
- })
363
- .attr('y', (d) => {
364
- let labelLength = d.data.entity.label.split(/ +/g);
365
- if (labelLength.length > 3) {
366
- labelLength = labelLength.slice(0, 3);
367
- }
368
- return `${labelLength.length - (labelLength.length + 1) / 2 + 0.97}em`;
369
- })
370
- .attr('fill-opacity', 0)
371
- .transition(t) // enter() transition on <text>
372
- .attr('fill-opacity', 1);
361
+ });
373
362
  leaf
374
363
  .exit() // EXIT CYCLE
375
364
  .remove();
@@ -391,7 +380,8 @@ class BubbleChartComponent {
391
380
  return 'scale(.08)';
392
381
  });
393
382
  }
394
- this.emit('d3end', data); // communicate end of draw
383
+ // communicate end of draw
384
+ this.emit('d3end', data);
395
385
  };
396
386
  }
397
387
  ngAfterContentChecked() {
@@ -419,6 +409,13 @@ class BubbleChartComponent {
419
409
  return;
420
410
  this.emit('click', payload);
421
411
  }
412
+ removeUnneededNodes(svg) {
413
+ // select all nodes and rejoin data
414
+ const nodes = svg.selectAll('g')
415
+ .data(this.data);
416
+ // remove excess nodes
417
+ nodes.exit().remove();
418
+ }
422
419
  }
423
420
  BubbleChartComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: BubbleChartComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
424
421
  BubbleChartComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: BubbleChartComponent, selector: "n7-bubble-chart", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data\" class=\"n7-bubble-chart {{ data.classes || '' }}\">\n <svg #bubbleChart id=\"{{data.containerId}}\"></svg>\n</div>", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
@@ -754,6 +751,40 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
754
751
  type: Input
755
752
  }] } });
756
753
 
754
+ //---------------------------
755
+ class FileSelectorComponent {
756
+ onFileSelected(eventTarget) {
757
+ if (!this.emit)
758
+ return;
759
+ const input = eventTarget;
760
+ const iterableFiles = Array.from(input.files);
761
+ Promise
762
+ .all(iterableFiles.map((file) => this.toBase64(file)))
763
+ .then((base64list) => {
764
+ this.emit('change', { target: eventTarget, files: input.files, base64: base64list });
765
+ });
766
+ }
767
+ /** Obtain base64 string for upload and storage */
768
+ toBase64(file) {
769
+ return new Promise((resolve, reject) => {
770
+ const reader = new FileReader();
771
+ reader.onerror = (err) => reject(err);
772
+ reader.onload = () => resolve(reader.result);
773
+ reader.readAsDataURL(file);
774
+ });
775
+ }
776
+ }
777
+ FileSelectorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FileSelectorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
778
+ FileSelectorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: FileSelectorComponent, selector: "n7-file-selector", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<ng-container *ngIf=\"data\">\n <!-- HIDDEN NATIVE INPUT ELEMENT -->\n <input type=\"file\"\n class=\"file-input\"\n [accept]=\"data.accept\"\n [multiple]=\"data.multiple\"\n (change)=\"onFileSelected($event.target)\"\n [ngStyle]=\"{'display': 'none'}\"\n #fileUpload>\n \n <!-- CAPTURES THE CLICKS ON THE INNER CONTENT -->\n <div class=\"n7-file-selector\"\n (click)=\"fileUpload.click()\">\n <ng-content>\n <!-- UI ELEMENTS FOR IMAGE UPLOAD -->\n </ng-content>\n </div>\n</ng-container>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }] });
779
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: FileSelectorComponent, decorators: [{
780
+ type: Component,
781
+ args: [{ selector: 'n7-file-selector', template: "<ng-container *ngIf=\"data\">\n <!-- HIDDEN NATIVE INPUT ELEMENT -->\n <input type=\"file\"\n class=\"file-input\"\n [accept]=\"data.accept\"\n [multiple]=\"data.multiple\"\n (change)=\"onFileSelected($event.target)\"\n [ngStyle]=\"{'display': 'none'}\"\n #fileUpload>\n \n <!-- CAPTURES THE CLICKS ON THE INNER CONTENT -->\n <div class=\"n7-file-selector\"\n (click)=\"fileUpload.click()\">\n <ng-content>\n <!-- UI ELEMENTS FOR IMAGE UPLOAD -->\n </ng-content>\n </div>\n</ng-container>\n" }]
782
+ }], propDecorators: { data: [{
783
+ type: Input
784
+ }], emit: [{
785
+ type: Input
786
+ }] } });
787
+
757
788
  //---------------------------
758
789
  class InputSelectComponent {
759
790
  onChange(inputPayload, value) {
@@ -1416,12 +1447,22 @@ class InputTextComponent {
1416
1447
  return;
1417
1448
  this.emit('change', { inputPayload, value });
1418
1449
  }
1450
+ onBlur() {
1451
+ if (!this.emit)
1452
+ return;
1453
+ this.emit('blur');
1454
+ }
1455
+ onFocus() {
1456
+ if (!this.emit)
1457
+ return;
1458
+ this.emit('focus');
1459
+ }
1419
1460
  }
1420
1461
  InputTextComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: InputTextComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
1421
- InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: InputTextComponent, selector: "n7-input-text", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.min]=\"input.type === 'number' && (input.min || input.min === 0) ? input.min : ''\"\n [attr.max]=\"input.type === 'number' && (input.max || input.max === 0) ? input.max : ''\"\n [attr.maxlength]=\"input.maxlength\"\n [attr.minlength]=\"input.minlength\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1462
+ InputTextComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: InputTextComponent, selector: "n7-input-text", inputs: { data: "data", emit: "emit" }, ngImport: i0, template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [attr.autocomplete]=\"input.autocomplete\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.max]=\"input.max\"\n [attr.min]=\"input.min\"\n [attr.maxlength]=\"input.maxlength\"\n [attr.minlength]=\"input.minlength\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }] });
1422
1463
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: InputTextComponent, decorators: [{
1423
1464
  type: Component,
1424
- args: [{ selector: 'n7-input-text', template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.min]=\"input.type === 'number' && (input.min || input.min === 0) ? input.min : ''\"\n [attr.max]=\"input.type === 'number' && (input.max || input.max === 0) ? input.max : ''\"\n [attr.maxlength]=\"input.maxlength\"\n [attr.minlength]=\"input.minlength\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span>\n </div>\n</div>\n" }]
1465
+ args: [{ selector: 'n7-input-text', template: "<div *ngIf=\"data as input\"\n class=\"n7-input-text\">\n <label *ngIf=\"input.label\"\n class=\"n7-input-text__label\"\n for=\"{{ input.id }}\"\n [innerHTML]=\"input.label\">\n </label>\n <div class=\"n7-input-text__wrapper\"\n [ngClass]=\"{\n 'has-icon': !!input.icon\n }\">\n <input id=\"{{ input.id }}\"\n class=\"n7-input-text__text\"\n [ngClass]=\"input.classes\"\n [type]=\"input.type ? input.type : 'text'\"\n [attr.name]=\"input.name\"\n [value]=\"input.value || null\"\n [attr.placeholder]=\"input.placeholder\"\n [attr.autocomplete]=\"input.autocomplete\"\n [disabled]=\"input.disabled\"\n [required]=\"input.required\"\n [attr.max]=\"input.max\"\n [attr.min]=\"input.min\"\n [attr.maxlength]=\"input.maxlength\"\n [attr.minlength]=\"input.minlength\"\n (focus)=\"onFocus()\"\n (blur)=\"onBlur()\"\n (input)=\"onChange(input.inputPayload, $event.target.value)\"\n (keyup.enter)=\"onChange(input.enterPayload, $event.target.value)\">\n <span *ngIf=\"input.icon\"\n class=\"n7-input-text__icon {{input.icon || ''}}\"\n (click)=\"onChange(input.iconPayload)\">\n </span>\n </div>\n</div>\n" }]
1425
1466
  }], propDecorators: { data: [{
1426
1467
  type: Input
1427
1468
  }], emit: [{
@@ -1893,6 +1934,7 @@ const COMPONENTS = [
1893
1934
  FacetComponent,
1894
1935
  FacetHeaderComponent,
1895
1936
  FacetYearRangeComponent,
1937
+ FileSelectorComponent,
1896
1938
  FooterComponent,
1897
1939
  HeaderComponent,
1898
1940
  HeroComponent,
@@ -1943,6 +1985,7 @@ DvComponentsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", v
1943
1985
  FacetComponent,
1944
1986
  FacetHeaderComponent,
1945
1987
  FacetYearRangeComponent,
1988
+ FileSelectorComponent,
1946
1989
  FooterComponent,
1947
1990
  HeaderComponent,
1948
1991
  HeroComponent,
@@ -1988,6 +2031,7 @@ DvComponentsLibModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", v
1988
2031
  FacetComponent,
1989
2032
  FacetHeaderComponent,
1990
2033
  FacetYearRangeComponent,
2034
+ FileSelectorComponent,
1991
2035
  FooterComponent,
1992
2036
  HeaderComponent,
1993
2037
  HeroComponent,
@@ -2206,4003 +2250,979 @@ const BUBBLECHART_MOCK = {
2206
2250
  data: [
2207
2251
  {
2208
2252
  entity: {
2209
- id: '0263a407-d0dd-4647-98e2-109b0b0c05f3',
2210
- label: 'Giunta regionale',
2211
- typeOfEntity: 'organizzazione'
2253
+ id: '8b7329a1-832c-4b81-b6c7-6714c0a932cd',
2254
+ label: 'design',
2255
+ typeOfEntity: 'cosa notevole'
2212
2256
  },
2213
- count: 2072
2257
+ count: 3266
2214
2258
  },
2215
2259
  {
2216
2260
  entity: {
2217
- id: '9e550a50-933b-40f8-b51f-a5eb01d6769a',
2218
- label: 'Assessorato alle finanze',
2219
- typeOfEntity: 'organizzazione'
2261
+ id: 'a1071c15-12ad-4e9f-ae78-d82ff8da9de3',
2262
+ label: 'Elio Mari',
2263
+ typeOfEntity: 'persona'
2220
2264
  },
2221
- count: 1253
2265
+ count: 1948
2222
2266
  },
2223
2267
  {
2224
2268
  entity: {
2225
- id: 'f33c446e-67a2-4e85-a19a-81d8f7acf10a',
2226
- label: 'Presidente della giunta regionale',
2269
+ id: 'f88c0695-d48d-4299-b3f7-15dfa62d64eb',
2270
+ label: 'Danese',
2227
2271
  typeOfEntity: 'organizzazione'
2228
2272
  },
2229
- count: 1106
2273
+ count: 1826
2230
2274
  },
2231
2275
  {
2232
2276
  entity: {
2233
- id: '6e5b61ff-ef6d-4883-ac4c-d992de276b7c',
2234
- label: "Assessorato all'igiene, sanità e pubblica istruzione",
2277
+ id: '9d69e9ab-5e62-420d-817d-a5a399a835d4',
2278
+ label: 'Artemide',
2235
2279
  typeOfEntity: 'organizzazione'
2236
2280
  },
2237
- count: 765
2281
+ count: 628
2238
2282
  },
2239
2283
  {
2240
2284
  entity: {
2241
- id: '60253741-6c64-488e-95d5-09e1f8daedcb',
2242
- label: "Assessorato all'industria e commercio",
2285
+ id: 'c5b2436c-ed74-49b7-9fb0-7bd1a3bd1d09',
2286
+ label: 'Driade',
2243
2287
  typeOfEntity: 'organizzazione'
2244
2288
  },
2245
2289
  count: 577
2246
2290
  },
2247
2291
  {
2248
2292
  entity: {
2249
- id: '1e64a8de-6d25-404a-b0ee-e80b82c06e82',
2250
- label: "Assessorato all'agricoltura e foreste",
2251
- typeOfEntity: 'organizzazione'
2293
+ id: 'ec84b4d9-b811-4bb5-b42e-f9978f7a547b',
2294
+ label: 'design per bambini',
2295
+ typeOfEntity: 'cosa notevole'
2252
2296
  },
2253
- count: 513
2297
+ count: 556
2254
2298
  },
2255
2299
  {
2256
2300
  entity: {
2257
- id: 'b3c16d91-7680-4b0e-a06b-fff6820752bd',
2258
- label: 'finanze',
2301
+ id: 'afbdae39-adf5-4fc8-805f-712a39955372',
2302
+ label: 'allegorie',
2259
2303
  typeOfEntity: 'cosa notevole'
2260
2304
  },
2261
- count: 467
2305
+ count: 517
2262
2306
  },
2263
2307
  {
2264
2308
  entity: {
2265
- id: 'ce1abc82-0caa-498f-a4dd-15416662ac8f',
2266
- label: 'Brotzu, Giuseppe',
2267
- typeOfEntity: 'persona'
2309
+ id: 'ae8ae452-18b5-4999-a3d9-2b4f9c174ae9',
2310
+ label: 'Sistema di illuminazione Sistema aggregato',
2311
+ typeOfEntity: 'cosa notevole'
2268
2312
  },
2269
- count: 452
2313
+ count: 466
2270
2314
  },
2271
2315
  {
2272
2316
  entity: {
2273
- id: 'd547a393-874b-4950-b088-16f103a27541',
2274
- label: 'Assessorato ai lavori pubblici',
2275
- typeOfEntity: 'organizzazione'
2317
+ id: 'dd7cd2bd-3f98-488c-acff-d5a71f3c1638',
2318
+ label: 'Sistema aggregato',
2319
+ typeOfEntity: 'cosa notevole'
2276
2320
  },
2277
- count: 439
2321
+ count: 466
2278
2322
  },
2279
2323
  {
2280
2324
  entity: {
2281
- id: '53c5c845-126b-4cf9-8ead-2424f817794b',
2282
- label: 'lavori pubblici',
2283
- typeOfEntity: 'cosa notevole'
2325
+ id: '9c308ce3-5cf5-4bdd-b4a8-52a656929fcc',
2326
+ label: 'Giancarlo Fassina',
2327
+ typeOfEntity: 'persona'
2284
2328
  },
2285
- count: 356
2329
+ count: 466
2286
2330
  },
2287
2331
  {
2288
2332
  entity: {
2289
- id: '56487abe-9496-4924-9412-b20cdc2dcc73',
2290
- label: 'Assessorato ai trasporti',
2291
- typeOfEntity: 'organizzazione'
2333
+ id: '02ae7008-2b2d-4c91-b033-9aecdf051be0',
2334
+ label: 'Daynight',
2335
+ typeOfEntity: 'cosa notevole'
2292
2336
  },
2293
- count: 330
2337
+ count: 444
2294
2338
  },
2295
2339
  {
2296
2340
  entity: {
2297
- id: '21174849-6b5c-489b-b550-56c541a936df',
2298
- label: 'contributi',
2341
+ id: '82c0e881-a81c-4dd4-b784-1be81a074559',
2342
+ label: 'Divano letto Day-night',
2299
2343
  typeOfEntity: 'cosa notevole'
2300
2344
  },
2301
- count: 323
2345
+ count: 444
2302
2346
  },
2303
2347
  {
2304
2348
  entity: {
2305
- id: '4bd649c2-9935-4786-8af9-c94512703d14',
2306
- label: 'agricoltura',
2349
+ id: 'ecc2552e-f2db-4ff1-86de-5a7ea0296c5f',
2350
+ label: 'Letto divano',
2307
2351
  typeOfEntity: 'cosa notevole'
2308
2352
  },
2309
- count: 303
2353
+ count: 444
2310
2354
  },
2311
2355
  {
2312
2356
  entity: {
2313
- id: '31150310-e51f-4e95-855f-781c0d00813d',
2314
- label: 'igiene, sanità e pubblica istruzione',
2357
+ id: 'c826129c-6373-402e-9a56-8e7121e2851e',
2358
+ label: 'arte',
2315
2359
  typeOfEntity: 'cosa notevole'
2316
2360
  },
2317
- count: 299
2361
+ count: 358
2318
2362
  },
2319
2363
  {
2320
2364
  entity: {
2321
- id: 'd75e1079-faf6-492e-adff-9f0573b2e8e6',
2322
- label: 'Ufficio tecnico regionale per la conservazione dei monumenti della Sardegna',
2323
- typeOfEntity: 'organizzazione'
2365
+ id: 'ba0c6441-277c-4139-8da7-c60624038726',
2366
+ label: 'grafica editoriale',
2367
+ typeOfEntity: 'cosa notevole'
2324
2368
  },
2325
- count: 272
2369
+ count: 330
2326
2370
  },
2327
2371
  {
2328
2372
  entity: {
2329
- id: 'd427cf8c-3b8f-48f9-90d2-a25677c10219',
2330
- label: 'personale',
2373
+ id: '158a2ad8-88a2-4352-82a6-a8f3d998e6a1',
2374
+ label: "Proposta per un'autoprogettazione di mobili",
2331
2375
  typeOfEntity: 'cosa notevole'
2332
2376
  },
2333
- count: 271
2377
+ count: 281
2334
2378
  },
2335
2379
  {
2336
2380
  entity: {
2337
- id: 'f2e5a35d-d8c5-4c7f-8477-c873ef0668d6',
2338
- label: 'Vivanet, Filippo',
2339
- typeOfEntity: 'persona'
2381
+ id: 'd78b4701-6ce9-4bb5-a9ed-3de3aebabcd2',
2382
+ label: 'Mobili inchiodati',
2383
+ typeOfEntity: 'cosa notevole'
2340
2384
  },
2341
- count: 269
2385
+ count: 281
2342
2386
  },
2343
2387
  {
2344
2388
  entity: {
2345
- id: '0c69c2aa-d240-46e0-b29a-973d604865a7',
2346
- label: 'Stara, Salvatore',
2347
- typeOfEntity: 'persona'
2389
+ id: 'e2922713-222d-4a02-9891-ef503fdde811',
2390
+ label: "Proposta per un'autoprogettazione",
2391
+ typeOfEntity: 'cosa notevole'
2348
2392
  },
2349
- count: 258
2393
+ count: 281
2350
2394
  },
2351
2395
  {
2352
2396
  entity: {
2353
- id: '795b9266-85ce-4bd3-b06c-992ebd6a16a9',
2354
- label: 'Murgia, Giuseppe',
2355
- typeOfEntity: 'persona'
2397
+ id: '7a64fd39-e99b-4630-a5fe-096002befcf2',
2398
+ label: 'Simon international',
2399
+ typeOfEntity: 'organizzazione'
2356
2400
  },
2357
- count: 256
2401
+ count: 281
2358
2402
  },
2359
2403
  {
2360
2404
  entity: {
2361
- id: '0dc394db-9cfb-407d-b1c8-a61a0ebe3b8d',
2362
- label: 'compensi ad estranei per servizi alla regione',
2363
- typeOfEntity: 'cosa notevole'
2405
+ id: '50cbfc53-0654-4056-9569-d7c0ba2195ee',
2406
+ label: 'Boringhieri',
2407
+ typeOfEntity: 'organizzazione'
2364
2408
  },
2365
- count: 251
2409
+ count: 257
2366
2410
  },
2367
2411
  {
2368
2412
  entity: {
2369
- id: 'b8b246f4-b52d-4f21-981b-51a7c17f3147',
2370
- label: 'Ufficio tecnico regionale per la conservazione dei monumenti della Sardegna',
2371
- typeOfEntity: 'organizzazione'
2413
+ id: 'c3ac744e-fa96-434c-87df-c894ad829726',
2414
+ label: 'Esperanza Nunez',
2415
+ typeOfEntity: 'persona'
2372
2416
  },
2373
- count: 247
2417
+ count: 216
2374
2418
  },
2375
2419
  {
2376
2420
  entity: {
2377
- id: 'a5dd1dab-2072-473b-8a5a-7c17ed60fbfe',
2378
- label: 'Vivanet, Filippo',
2379
- typeOfEntity: 'persona'
2421
+ id: '81f9c089-8e50-46dc-b79d-4958fab77d13',
2422
+ label: 'Gavina',
2423
+ typeOfEntity: 'organizzazione'
2380
2424
  },
2381
- count: 245
2425
+ count: 215
2382
2426
  },
2383
2427
  {
2384
2428
  entity: {
2385
- id: 'bdfd8529-c6a0-4781-827f-8bd8323f10be',
2386
- label: 'Deriu, Francesco',
2387
- typeOfEntity: 'persona'
2429
+ id: '0351e100-6b64-41dc-932c-d76c4e965b69',
2430
+ label: 'mostre',
2431
+ typeOfEntity: 'cosa notevole'
2388
2432
  },
2389
- count: 240
2433
+ count: 206
2390
2434
  },
2391
2435
  {
2392
2436
  entity: {
2393
- id: 'cf1cb828-5032-4bbc-8a88-02a81dd6799d',
2394
- label: 'contributi e sussidi',
2437
+ id: '47b9fc50-f27a-4bb2-bc12-e4abacd94e6d',
2438
+ label: 'Copertine della collana Universale Scientifica',
2395
2439
  typeOfEntity: 'cosa notevole'
2396
2440
  },
2397
- count: 234
2441
+ count: 199
2398
2442
  },
2399
2443
  {
2400
2444
  entity: {
2401
- id: '2f07e607-4363-4402-957b-e60db96a1e13',
2402
- label: 'Ballero, Francesco',
2403
- typeOfEntity: 'persona'
2445
+ id: '3fdf0dd4-fec1-487f-944f-c5d4a5d0e8c8',
2446
+ label: 'Centro Studi e Archivio della Comunicazione (CSAC)',
2447
+ typeOfEntity: 'organizzazione'
2404
2448
  },
2405
- count: 226
2449
+ count: 198
2406
2450
  },
2407
2451
  {
2408
2452
  entity: {
2409
- id: '2b0e005f-ee3d-440b-99b9-5fccecdd9a1f',
2410
- label: 'Crespellani, Luigi',
2453
+ id: '66876e19-2885-4fc7-b2a9-61a66f4dae86',
2454
+ label: 'Enzo Mari',
2411
2455
  typeOfEntity: 'persona'
2412
2456
  },
2413
- count: 219
2457
+ count: 198
2414
2458
  },
2415
2459
  {
2416
2460
  entity: {
2417
- id: 'c3223169-2712-4483-88c6-50c74528ed24',
2418
- label: 'Assessorato al lavoro',
2419
- typeOfEntity: 'organizzazione'
2461
+ id: '23f43960-aee3-44d6-9ee1-5a1e7be2c024',
2462
+ label: 'Design e design, progetto della mostra e catalogo',
2463
+ typeOfEntity: 'cosa notevole'
2420
2464
  },
2421
- count: 217
2465
+ count: 197
2422
2466
  },
2423
2467
  {
2424
2468
  entity: {
2425
- id: '78d61b78-3505-4695-a9d9-3099742a708a',
2426
- label: 'giunta regionale',
2469
+ id: 'f63fa61b-1915-4518-8236-3844f4bd4fbd',
2470
+ label: 'Design e design',
2427
2471
  typeOfEntity: 'cosa notevole'
2428
2472
  },
2429
- count: 202
2473
+ count: 197
2430
2474
  },
2431
2475
  {
2432
2476
  entity: {
2433
- id: '7c9e29f3-60bc-4b43-8167-4ab7218539f4',
2434
- label: 'Costa, Gervasio',
2435
- typeOfEntity: 'persona'
2477
+ id: '96f3344e-324c-4df3-8a46-811b0732d2c4',
2478
+ label: 'Atlante secondo Lenin',
2479
+ typeOfEntity: 'cosa notevole'
2436
2480
  },
2437
- count: 202
2481
+ count: 174
2438
2482
  },
2439
2483
  {
2440
2484
  entity: {
2441
- id: 'f4efad81-6ce3-4253-a426-d4dce4fe8ff7',
2442
- label: 'Corrias, Efisio',
2443
- typeOfEntity: 'persona'
2485
+ id: 'f480886a-dbf1-4eeb-adaf-4cfaa7aeeaa2',
2486
+ label: 'Processi rivoluzionari',
2487
+ typeOfEntity: 'cosa notevole'
2444
2488
  },
2445
- count: 199
2489
+ count: 174
2446
2490
  },
2447
2491
  {
2448
2492
  entity: {
2449
- id: '63f4b749-de98-44d5-a287-2ae8eaff0104',
2450
- label: "Assessorato all'igiene e sanità",
2493
+ id: '02081f1d-82a4-4bf9-969a-10747e39badf',
2494
+ label: "Edizioni L'Erba Voglio, Milano",
2451
2495
  typeOfEntity: 'organizzazione'
2452
2496
  },
2453
- count: 187
2497
+ count: 174
2454
2498
  },
2455
2499
  {
2456
2500
  entity: {
2457
- id: 'adb694a7-0b19-44b3-94d9-d124072c8575',
2458
- label: 'Casu, Giangiorgio',
2501
+ id: 'd28644e4-6e1e-4cb9-b798-b3a3935929a0',
2502
+ label: 'Francesco Leonetti',
2459
2503
  typeOfEntity: 'persona'
2460
2504
  },
2461
- count: 181
2505
+ count: 174
2462
2506
  },
2463
2507
  {
2464
2508
  entity: {
2465
- id: '45ebda7a-2ebd-4ff1-b250-571d6fd02e6b',
2466
- label: 'varie, spese rappresentanza, avvenimenti eccezionali',
2509
+ id: 'dd8c1f47-d061-4b76-b61e-199d3f703266',
2510
+ label: 'Divano continuo semirigido',
2467
2511
  typeOfEntity: 'cosa notevole'
2468
2512
  },
2469
- count: 160
2513
+ count: 162
2470
2514
  },
2471
2515
  {
2472
2516
  entity: {
2473
- id: '5fdc986b-0c40-40d3-8a3f-af50bff7bbaa',
2474
- label: 'industria e commercio',
2517
+ id: '71f4c1c9-3fa0-48d7-8da6-f766072e5d95',
2518
+ label: '16 pesci',
2475
2519
  typeOfEntity: 'cosa notevole'
2476
2520
  },
2477
- count: 154
2478
- },
2479
- {
2480
- entity: {
2481
- id: '84c46d7d-449a-486d-9320-b6defc9390d5',
2482
- label: 'Presidente del consiglio regionale',
2483
- typeOfEntity: 'organizzazione'
2484
- },
2485
- count: 152
2486
- },
2487
- {
2488
- entity: {
2489
- id: 'd06b5c00-b902-4f26-b0de-b3d85d656c3b',
2490
- label: 'Corrias, Alfredo',
2491
- typeOfEntity: 'persona'
2492
- },
2493
- count: 152
2521
+ count: 149
2494
2522
  },
2495
2523
  {
2496
2524
  entity: {
2497
- id: '65ca4105-dcbb-46c8-b852-d5d86eeada8c',
2498
- label: 'locali - uffici',
2525
+ id: '43ef411c-1d1e-4ae8-acd6-dfc0abccdb55',
2526
+ label: 'Portacenere a griglia bilanciata',
2499
2527
  typeOfEntity: 'cosa notevole'
2500
2528
  },
2501
- count: 151
2529
+ count: 131
2502
2530
  },
2503
2531
  {
2504
2532
  entity: {
2505
- id: 'e116b3a2-b8be-4adb-b0b8-85f0d6ca6e7d',
2506
- label: 'Giua, Giuseppe',
2507
- typeOfEntity: 'persona'
2533
+ id: '630786d3-bce1-4c20-8a3b-00f1bdade87b',
2534
+ label: 'Portacenere Griglia – da tavolo, da muro, da terra',
2535
+ typeOfEntity: 'cosa notevole'
2508
2536
  },
2509
- count: 146
2537
+ count: 131
2510
2538
  },
2511
2539
  {
2512
2540
  entity: {
2513
- id: 'a3c0f6d4-755d-4ac7-8d9d-0f17547424c5',
2514
- label: 'uffici (arredamento, ecc)',
2541
+ id: 'ffbca81e-5d67-47f7-a2d8-4564de32e857',
2542
+ label: 'Portacenere da tavolo, da muro, da terra Griglia',
2515
2543
  typeOfEntity: 'cosa notevole'
2516
2544
  },
2517
2545
  count: 131
2518
2546
  },
2519
2547
  {
2520
2548
  entity: {
2521
- id: 'cf5bd073-47be-4da2-a4fe-4d804a629f89',
2522
- label: 'Assessorato agli interni',
2523
- typeOfEntity: 'organizzazione'
2549
+ id: '3cb26fd8-6997-410a-82d4-d9c4f124681a',
2550
+ label: 'Libreria componibile Glifo in plastica',
2551
+ typeOfEntity: 'cosa notevole'
2524
2552
  },
2525
- count: 127
2553
+ count: 121
2526
2554
  },
2527
2555
  {
2528
2556
  entity: {
2529
- id: 'fc786dec-fc9b-46ed-85d8-d00b26b9eed5',
2530
- label: 'Assessorato agli affari generali e enti locali',
2531
- typeOfEntity: 'organizzazione'
2557
+ id: '69c99a94-1aa7-47a7-aaab-3e732c406b80',
2558
+ label: 'Libreria Glifo',
2559
+ typeOfEntity: 'cosa notevole'
2532
2560
  },
2533
- count: 127
2561
+ count: 121
2534
2562
  },
2535
2563
  {
2536
2564
  entity: {
2537
- id: 'ab27c5f7-3013-4044-b3a4-a9b6f468ff57',
2538
- label: 'Del Rio, Giovanni',
2539
- typeOfEntity: 'persona'
2565
+ id: 'c651e4cf-a9d2-4439-bde0-5912a47a3293',
2566
+ label: 'Glifo',
2567
+ typeOfEntity: 'cosa notevole'
2540
2568
  },
2541
- count: 120
2569
+ count: 121
2542
2570
  },
2543
2571
  {
2544
2572
  entity: {
2545
- id: 'b0bc1ab6-3407-460a-9ab6-4db8f6236130',
2546
- label: "Assessorato all'istruzione, assistenza e beneficenza",
2547
- typeOfEntity: 'organizzazione'
2573
+ id: '1e060082-b317-4f82-9d35-a14cacb63afe',
2574
+ label: 'Libri bambini',
2575
+ typeOfEntity: 'cosa notevole'
2548
2576
  },
2549
- count: 119
2577
+ count: 118
2550
2578
  },
2551
2579
  {
2552
2580
  entity: {
2553
- id: 'c1c35117-ea45-4183-9542-07f1c6697d47',
2554
- label: 'progetti di legge - leggi',
2581
+ id: '49b37899-6d9f-4075-a2e1-cc0ab5b0a3d0',
2582
+ label: 'Carte da disegno 1, 2, 3, 4, 5',
2555
2583
  typeOfEntity: 'cosa notevole'
2556
2584
  },
2557
- count: 119
2585
+ count: 118
2558
2586
  },
2559
2587
  {
2560
2588
  entity: {
2561
- id: '52fbff4c-02ae-400a-acc6-a704476b1265',
2562
- label: 'Soggiu, Piero',
2563
- typeOfEntity: 'persona'
2589
+ id: '9130a6c0-9159-4121-a87d-fbd211833407',
2590
+ label: 'Album da disegno',
2591
+ typeOfEntity: 'cosa notevole'
2564
2592
  },
2565
- count: 115
2593
+ count: 118
2566
2594
  },
2567
2595
  {
2568
2596
  entity: {
2569
- id: '12fbdc45-fcd8-4946-aea9-591bdcd8b87e',
2570
- label: 'sussidi',
2597
+ id: '70279330-5514-4f72-bf5d-babccf8e4f97',
2598
+ label: 'Sedia Sof-Sof con struttura in tondino di ferro',
2571
2599
  typeOfEntity: 'cosa notevole'
2572
2600
  },
2573
- count: 114
2601
+ count: 108
2574
2602
  },
2575
2603
  {
2576
2604
  entity: {
2577
- id: 'b0eb45ea-01fb-4ec4-b24c-d9e1d319d2e1',
2578
- label: 'trasporti viabilità e turismo',
2605
+ id: '96c34848-fde2-4423-bdc8-da96b0d00a63',
2606
+ label: 'Sof-Sof-Chair',
2579
2607
  typeOfEntity: 'cosa notevole'
2580
2608
  },
2581
- count: 111
2609
+ count: 108
2582
2610
  },
2583
2611
  {
2584
2612
  entity: {
2585
- id: 'b1cb6d8e-4fa6-4e5e-a40c-e33dd41df5b7',
2586
- label: 'Masia, Giuseppe',
2587
- typeOfEntity: 'persona'
2613
+ id: '137882b0-756e-451c-8042-dd33dc61bcc6',
2614
+ label: 'Il posto dei giochi',
2615
+ typeOfEntity: 'cosa notevole'
2588
2616
  },
2589
- count: 111
2617
+ count: 103
2590
2618
  },
2591
2619
  {
2592
2620
  entity: {
2593
- id: '027d1818-1050-43da-9229-00ff1495e1ea',
2594
- label: 'automobili - autorimessa',
2621
+ id: '141f0d49-7b28-45bb-a00b-e2983f25bdd6',
2622
+ label: 'Pannelli componibili',
2595
2623
  typeOfEntity: 'cosa notevole'
2596
2624
  },
2597
- count: 107
2625
+ count: 103
2598
2626
  },
2599
2627
  {
2600
2628
  entity: {
2601
- id: '1270750e-cd93-449d-8f2c-9e55a48fb9b7',
2602
- label: 'Stangoni, Alberto Mario',
2603
- typeOfEntity: 'persona'
2629
+ id: '65b1991e-0c00-4109-b25a-4da18762c0aa',
2630
+ label: 'Il posto dei giochi, gioco didattico costituito da pannelli piegabili in cartone fustellato',
2631
+ typeOfEntity: 'cosa notevole'
2604
2632
  },
2605
- count: 101
2633
+ count: 103
2606
2634
  },
2607
2635
  {
2608
2636
  entity: {
2609
- id: 'bf05f872-6100-4ded-9c02-dbf9ad7252f7',
2610
- label: 'Musio, Luigi',
2611
- typeOfEntity: 'persona'
2637
+ id: '3789efa3-6de1-4f51-af78-f94f4646977d',
2638
+ label: 'Divano in poliuretano tagliato e poltrona con telaio in lamiera stampata',
2639
+ typeOfEntity: 'cosa notevole'
2612
2640
  },
2613
- count: 93
2641
+ count: 94
2614
2642
  },
2615
2643
  {
2616
2644
  entity: {
2617
- id: '0f31d10e-99d1-400b-8617-c82d13151407',
2618
- label: 'Melis, Pietro',
2619
- typeOfEntity: 'persona'
2645
+ id: 'd547e543-6203-47f9-9436-efc4fc296466',
2646
+ label: 'Divano e poltrona',
2647
+ typeOfEntity: 'cosa notevole'
2620
2648
  },
2621
- count: 92
2649
+ count: 94
2622
2650
  },
2623
2651
  {
2624
2652
  entity: {
2625
- id: '1a4d57f4-79d8-4424-b13e-068a8c90acc8',
2626
- label: 'Carta, Mario',
2627
- typeOfEntity: 'persona'
2653
+ id: 'c434a6d1-523b-40c0-b8df-08766e3a9c6d',
2654
+ label: 'Fiorio',
2655
+ typeOfEntity: 'organizzazione'
2628
2656
  },
2629
- count: 92
2657
+ count: 93
2630
2658
  },
2631
2659
  {
2632
2660
  entity: {
2633
- id: 'cee21219-1765-41dc-923f-ab5288c0a39c',
2634
- label: 'Falchi, Pierina',
2635
- typeOfEntity: 'persona'
2661
+ id: 'c362437a-4a0d-4474-99f8-1a8829819bb3',
2662
+ label: 'allestimenti',
2663
+ typeOfEntity: 'cosa notevole'
2636
2664
  },
2637
2665
  count: 92
2638
2666
  },
2639
2667
  {
2640
2668
  entity: {
2641
- id: 'cd7e52cb-d9bd-45f2-845e-3525181d52cf',
2642
- label: 'Serra, Ignazio',
2643
- typeOfEntity: 'persona'
2644
- },
2645
- count: 91
2646
- },
2647
- {
2648
- entity: {
2649
- id: '0255d72b-9f79-4ca1-a23a-6fae27b92f06',
2650
- label: 'Cerioni, Agostino',
2651
- typeOfEntity: 'persona'
2669
+ id: 'b6ed3006-b857-401e-b85b-402451be011d',
2670
+ label: 'Olivetti',
2671
+ typeOfEntity: 'organizzazione'
2652
2672
  },
2653
- count: 89
2673
+ count: 90
2654
2674
  },
2655
2675
  {
2656
2676
  entity: {
2657
- id: '8ac48673-a5e0-4a80-b26a-ac1379f72042',
2658
- label: 'Gardu, Antonio',
2659
- typeOfEntity: 'persona'
2677
+ id: 'c5b25adc-6bba-4863-a5c0-0d2a226d1a55',
2678
+ label: 'Anonima Castelli',
2679
+ typeOfEntity: 'organizzazione'
2660
2680
  },
2661
- count: 80
2681
+ count: 90
2662
2682
  },
2663
2683
  {
2664
2684
  entity: {
2665
- id: '7018d307-1886-414f-92e1-a5b580925a99',
2666
- label: 'industria, commercio e rinascita',
2685
+ id: 'b2283dd3-19c6-45e9-ae8d-7df896cf0917',
2686
+ label: 'Serie della natura n. 9: cephalantus occidentalis',
2667
2687
  typeOfEntity: 'cosa notevole'
2668
2688
  },
2669
- count: 78
2689
+ count: 87
2670
2690
  },
2671
2691
  {
2672
2692
  entity: {
2673
- id: '033b4b5e-eb93-4519-ad72-f0d3a857f195',
2674
- label: 'presidenza (varie)',
2693
+ id: '3ffbd23c-b66d-4b0c-bdb3-a2647fb22c93',
2694
+ label: 'Samos',
2675
2695
  typeOfEntity: 'cosa notevole'
2676
2696
  },
2677
- count: 66
2697
+ count: 85
2678
2698
  },
2679
2699
  {
2680
2700
  entity: {
2681
- id: '1cf07350-a744-4784-a909-bf52f4d02ff4',
2682
- label: 'Princivalle, Senio',
2683
- typeOfEntity: 'persona'
2701
+ id: '4188fa2a-b59a-4000-9bd7-f8dbabf1bfc7',
2702
+ label: 'Sedia Box in plastica',
2703
+ typeOfEntity: 'cosa notevole'
2684
2704
  },
2685
- count: 56
2705
+ count: 85
2686
2706
  },
2687
2707
  {
2688
2708
  entity: {
2689
- id: '4502a950-dfd2-4bda-a4b1-caaaf0a4ab53',
2690
- label: 'Salinas, Renato',
2691
- typeOfEntity: 'persona'
2709
+ id: '463ab430-469b-4c86-8fb3-213cb0e3a490',
2710
+ label: 'Una proposta per la lavorazione a mano della porcellana Samos',
2711
+ typeOfEntity: 'cosa notevole'
2692
2712
  },
2693
- count: 56
2713
+ count: 85
2694
2714
  },
2695
2715
  {
2696
2716
  entity: {
2697
- id: '6eeeafd7-d831-4c78-b02a-0e5d09f00d09',
2698
- label: 'igiene e sanità',
2717
+ id: '57aa2828-ad56-4169-a27d-75bf895af2a7',
2718
+ label: 'Sedia Box',
2699
2719
  typeOfEntity: 'cosa notevole'
2700
2720
  },
2701
- count: 56
2721
+ count: 85
2702
2722
  },
2703
2723
  {
2704
2724
  entity: {
2705
- id: '6a813eba-91ce-40bf-b1cf-27a6d08cec4f',
2706
- label: 'lavoro',
2725
+ id: 'd3a054ac-e566-416d-ad38-7752145b7651',
2726
+ label: 'Sedia smontabile',
2707
2727
  typeOfEntity: 'cosa notevole'
2708
2728
  },
2709
- count: 52
2729
+ count: 85
2710
2730
  },
2711
2731
  {
2712
2732
  entity: {
2713
- id: '51980671-9dc3-46ab-bd35-b2586a74b28e',
2714
- label: 'indennità consiglieri - assessori commissioni',
2733
+ id: '9651c1a6-6393-435e-9ab2-0eff6892e497',
2734
+ label: '2 copertine Universale Scientifica',
2715
2735
  typeOfEntity: 'cosa notevole'
2716
2736
  },
2717
- count: 50
2737
+ count: 84
2718
2738
  },
2719
2739
  {
2720
2740
  entity: {
2721
- id: 'f9ead111-c3ae-494f-bd5b-9e61ef4a8d92',
2722
- label: 'cancelleria',
2741
+ id: 'cd5aff30-f40a-4524-a11e-bb9912cfdaa3',
2742
+ label: 'Vaso da fiori doppio Pago Pago',
2723
2743
  typeOfEntity: 'cosa notevole'
2724
2744
  },
2725
- count: 50
2745
+ count: 77
2726
2746
  },
2727
2747
  {
2728
2748
  entity: {
2729
- id: 'accf83e6-95c7-46c9-bd16-ca50fec52b14',
2730
- label: 'turismo',
2749
+ id: 'edc0aa7f-e3d6-44ab-b80c-1180e5e794d5',
2750
+ label: 'Vaso doppio Pago-Pago',
2731
2751
  typeOfEntity: 'cosa notevole'
2732
2752
  },
2733
- count: 46
2753
+ count: 77
2734
2754
  },
2735
2755
  {
2736
2756
  entity: {
2737
- id: '531d272a-e16c-447d-a4ce-25f986c54926',
2738
- label: 'Diaz, Luigi',
2739
- typeOfEntity: 'persona'
2757
+ id: '9b233fa7-c4f3-4326-a24c-91878be9fbe0',
2758
+ label: 'Driade',
2759
+ typeOfEntity: 'organizzazione'
2740
2760
  },
2741
- count: 44
2761
+ count: 74
2742
2762
  },
2743
2763
  {
2744
2764
  entity: {
2745
- id: '756d9def-a457-4df6-9626-a0b8379099ec',
2746
- label: 'istruzione assistenza e beneficenza',
2765
+ id: 'b90d0fb1-3e58-4b98-a162-fc5ce7b6dddd',
2766
+ label: 'Portaghiaccio Dulband in plastica e acciaio inossidabile',
2747
2767
  typeOfEntity: 'cosa notevole'
2748
2768
  },
2749
- count: 44
2769
+ count: 64
2750
2770
  },
2751
2771
  {
2752
2772
  entity: {
2753
- id: '3eec7479-8041-45be-b3e2-49f66c55cfbc',
2754
- label: 'locali',
2773
+ id: 'f9b5a245-798d-4ee7-8e5d-3aa02b9ad7a0',
2774
+ label: 'Portaghiaccio Dulband',
2755
2775
  typeOfEntity: 'cosa notevole'
2756
2776
  },
2757
- count: 42
2777
+ count: 64
2758
2778
  },
2759
2779
  {
2760
2780
  entity: {
2761
- id: '8551ab5c-fd20-4a21-a606-f001dee0996b',
2762
- label: 'presidenza - enti locali - (varie)',
2781
+ id: '588b7018-07cf-4e0b-9df2-80435e656342',
2782
+ label: 'Il gioco delle favole, gioco didattico',
2763
2783
  typeOfEntity: 'cosa notevole'
2764
2784
  },
2765
- count: 42
2785
+ count: 58
2766
2786
  },
2767
2787
  {
2768
2788
  entity: {
2769
- id: '48646ba0-12c6-4f8e-ad76-30b510a37ea8',
2770
- label: 'turismo - affari generali',
2771
- typeOfEntity: 'cosa notevole'
2789
+ id: '059f386c-2e76-4c47-a238-9024eb8e962b',
2790
+ label: 'Mario Ballocco',
2791
+ typeOfEntity: 'persona'
2772
2792
  },
2773
- count: 41
2793
+ count: 55
2774
2794
  },
2775
2795
  {
2776
2796
  entity: {
2777
- id: '2d84f78c-8cfe-4de9-afb8-4dfeccbf880c',
2778
- label: 'bollettino ufficiale - pubblicazioni e atti regionali',
2779
- typeOfEntity: 'cosa notevole'
2797
+ id: 'f1c48d9d-9269-403e-b7d4-ee4772cc6d55',
2798
+ label: 'Emme Edizioni',
2799
+ typeOfEntity: 'organizzazione'
2780
2800
  },
2781
- count: 37
2801
+ count: 54
2782
2802
  },
2783
2803
  {
2784
2804
  entity: {
2785
- id: '9045cf87-c73f-43b3-a515-eff8c6c643a4',
2786
- label: 'bollettino ufficiale',
2787
- typeOfEntity: 'cosa notevole'
2805
+ id: 'e094bd13-4f1d-4a84-a5d1-4415aa7ef191',
2806
+ label: 'Bonifica',
2807
+ typeOfEntity: 'organizzazione'
2788
2808
  },
2789
- count: 35
2809
+ count: 51
2790
2810
  },
2791
2811
  {
2792
2812
  entity: {
2793
- id: '8bd3478e-90b9-4041-a2fe-d06086c6fb83',
2794
- label: 'Pais, Domenico',
2813
+ id: 'b58e6f7f-17eb-4405-b25e-b797dbdaa2a5',
2814
+ label: 'Andrea Rovatti',
2795
2815
  typeOfEntity: 'persona'
2796
2816
  },
2797
- count: 34
2817
+ count: 48
2798
2818
  },
2799
2819
  {
2800
2820
  entity: {
2801
- id: '9e55c3c1-02f2-4b19-9ae1-dbbda2167aae',
2802
- label: 'mostre e fiere',
2803
- typeOfEntity: 'cosa notevole'
2821
+ id: '9de62a57-3a8c-4bb1-859e-1fc2acc21ecb',
2822
+ label: 'Vicom casa',
2823
+ typeOfEntity: 'organizzazione'
2804
2824
  },
2805
- count: 34
2825
+ count: 47
2806
2826
  },
2807
2827
  {
2808
2828
  entity: {
2809
- id: 'c74bc02b-0ed2-469d-bbbb-b6286fc5e33f',
2810
- label: "compensi ad estranei all'amministrazione regionale",
2811
- typeOfEntity: 'cosa notevole'
2829
+ id: '8aa84057-504a-4bd8-86f2-34c358979e65',
2830
+ label: 'Bompiani',
2831
+ typeOfEntity: 'organizzazione'
2812
2832
  },
2813
- count: 34
2833
+ count: 44
2814
2834
  },
2815
2835
  {
2816
2836
  entity: {
2817
- id: '6b368a77-ebe8-4015-9d08-8b763336355b',
2818
- label: 'Comune di Cagliari',
2837
+ id: '652207ac-eb13-4a1a-a21a-d9e8a387d3e9',
2838
+ label: 'Monteshell/Montecatini',
2819
2839
  typeOfEntity: 'organizzazione'
2820
2840
  },
2821
- count: 32
2841
+ count: 35
2822
2842
  },
2823
2843
  {
2824
2844
  entity: {
2825
- id: 'edf188db-1ec0-4e5a-a2e4-d6fffdac1e9e',
2826
- label: 'spese rappresentanza - avvenimenti eccezionali - varie',
2827
- typeOfEntity: 'cosa notevole'
2845
+ id: 'f2d3d9ee-9cd8-4547-88e2-f9f45dd5f8be',
2846
+ label: 'Roche',
2847
+ typeOfEntity: 'organizzazione'
2828
2848
  },
2829
- count: 32
2849
+ count: 33
2830
2850
  },
2831
2851
  {
2832
2852
  entity: {
2833
- id: 'ef0d3627-b417-49bc-8d0a-1a77055a3474',
2834
- label: 'Filigheddu, Giovanni',
2853
+ id: 'd7784f67-9c63-4af6-91db-014c85d43bf8',
2854
+ label: 'Iela Mari',
2835
2855
  typeOfEntity: 'persona'
2836
2856
  },
2837
- count: 32
2857
+ count: 33
2838
2858
  },
2839
2859
  {
2840
2860
  entity: {
2841
- id: '40e56d61-0ede-4df0-b3b9-0cdc2f55c317',
2842
- label: 'Salinas, Renato',
2843
- typeOfEntity: 'persona'
2861
+ id: 'bad4afbb-0500-449b-9ce8-81e383178bfb',
2862
+ label: 'Plura Edizioni',
2863
+ typeOfEntity: 'organizzazione'
2844
2864
  },
2845
- count: 30
2865
+ count: 32
2846
2866
  },
2847
2867
  {
2848
2868
  entity: {
2849
- id: '62966c20-e1b1-435e-a25c-82fd15160abc',
2850
- label: 'interni',
2851
- typeOfEntity: 'cosa notevole'
2869
+ id: '501bc267-8ade-4d1d-b2d9-002b01004d86',
2870
+ label: 'Denbo AB',
2871
+ typeOfEntity: 'organizzazione'
2852
2872
  },
2853
- count: 30
2873
+ count: 31
2854
2874
  },
2855
2875
  {
2856
2876
  entity: {
2857
- id: '4d738647-f2eb-41b2-8da0-726a39f1a720',
2858
- label: 'Azzena, Mario',
2859
- typeOfEntity: 'persona'
2877
+ id: 'eda59d98-0ee7-414f-b440-d3f0fcf07bbb',
2878
+ label: 'Italo Cremona',
2879
+ typeOfEntity: 'organizzazione'
2860
2880
  },
2861
- count: 29
2881
+ count: 30
2862
2882
  },
2863
2883
  {
2864
2884
  entity: {
2865
- id: '2816ea94-8cdf-478e-a9cb-df5dd6ddf411',
2866
- label: 'lavoro e artigianato',
2867
- typeOfEntity: 'cosa notevole'
2885
+ id: 'd9db05e1-df6e-47e5-80ed-6e078ae670ea',
2886
+ label: 'XVI Triennale',
2887
+ typeOfEntity: 'organizzazione'
2868
2888
  },
2869
- count: 25
2889
+ count: 29
2870
2890
  },
2871
2891
  {
2872
2892
  entity: {
2873
- id: '3401b977-d2c8-450a-883f-62c3b7b2a989',
2874
- label: 'Ufficio del genio civile di Cagliari',
2893
+ id: '11cb9572-e96b-499e-9ab4-d636678b30bf',
2894
+ label: 'Adelphi',
2875
2895
  typeOfEntity: 'organizzazione'
2876
2896
  },
2877
2897
  count: 25
2878
2898
  },
2879
2899
  {
2880
2900
  entity: {
2881
- id: '8824dd3f-d065-48b5-924b-9aabfbeabbfe',
2882
- label: 'Ufficio del genio civile di Cagliari',
2901
+ id: 'dd8c1ac5-897b-40b2-aa60-fedb76661fb5',
2902
+ label: 'III Mostra del Marmo di Carrara',
2883
2903
  typeOfEntity: 'organizzazione'
2884
2904
  },
2885
2905
  count: 25
2886
2906
  },
2887
2907
  {
2888
2908
  entity: {
2889
- id: 'a8ad1d33-06c8-4f6f-9c1e-c31a21ad80c0',
2890
- label: 'trasporti - enti locali',
2891
- typeOfEntity: 'cosa notevole'
2909
+ id: 'f3227a70-8cac-41d1-8f29-b94be58f9843',
2910
+ label: 'Monteshell',
2911
+ typeOfEntity: 'organizzazione'
2892
2912
  },
2893
- count: 25
2913
+ count: 24
2894
2914
  },
2895
2915
  {
2896
2916
  entity: {
2897
- id: '49b17b76-5207-4e63-bb54-b3d2970b7c43',
2898
- label: 'cassa mezzogiorno',
2899
- typeOfEntity: 'cosa notevole'
2917
+ id: '28dbd742-91df-444a-bdcd-dee5e3bbca4b',
2918
+ label: 'Tesint',
2919
+ typeOfEntity: 'organizzazione'
2900
2920
  },
2901
- count: 24
2921
+ count: 23
2902
2922
  },
2903
2923
  {
2904
2924
  entity: {
2905
- id: '1a8b5468-99b4-42b8-bda5-6c33a9abeb72',
2906
- label: 'mostre e fiere - convegni e congressi',
2907
- typeOfEntity: 'cosa notevole'
2925
+ id: 'bd2254ce-3b69-4833-a412-4b1e329b45eb',
2926
+ label: 'ICF De Padova',
2927
+ typeOfEntity: 'organizzazione'
2908
2928
  },
2909
2929
  count: 23
2910
2930
  },
2911
2931
  {
2912
2932
  entity: {
2913
- id: '52cc99d1-016b-4c6f-bcbd-a6ef11e1c06a',
2914
- label: 'trasporti',
2915
- typeOfEntity: 'cosa notevole'
2933
+ id: '1d23fa2b-3d20-4af7-993f-084c9d347d15',
2934
+ label: 'Gabbianelli',
2935
+ typeOfEntity: 'organizzazione'
2916
2936
  },
2917
- count: 23
2937
+ count: 22
2918
2938
  },
2919
2939
  {
2920
2940
  entity: {
2921
- id: '9840613f-0166-4272-b66a-23d113690a24',
2922
- label: 'Asso, Margherita',
2923
- typeOfEntity: 'persona'
2941
+ id: '45f8fc1c-198a-4cad-bc6e-91bc037bc9da',
2942
+ label: 'Le Creuset',
2943
+ typeOfEntity: 'organizzazione'
2924
2944
  },
2925
- count: 23
2945
+ count: 20
2926
2946
  },
2927
2947
  {
2928
2948
  entity: {
2929
- id: 'c652ff1a-2e05-42d0-b389-63996480d440',
2930
- label: 'Asso, Margherita',
2931
- typeOfEntity: 'persona'
2949
+ id: '55c62ee8-99e7-4587-bba5-5bcf3ffd79b8',
2950
+ label: 'XIV Triennale',
2951
+ typeOfEntity: 'organizzazione'
2932
2952
  },
2933
- count: 22
2953
+ count: 20
2934
2954
  },
2935
2955
  {
2936
2956
  entity: {
2937
- id: '311d10e8-defd-4b63-b420-5ddb87e04fac',
2938
- label: 'Costa, S.',
2939
- typeOfEntity: 'persona'
2957
+ id: 'ac361155-402a-48cf-aa65-957c79813c4a',
2958
+ label: 'Galleria Milano',
2959
+ typeOfEntity: 'organizzazione'
2940
2960
  },
2941
2961
  count: 19
2942
2962
  },
2943
2963
  {
2944
2964
  entity: {
2945
- id: '804d48cf-89aa-4a50-b0bc-4a9284ad3f25',
2946
- label: 'Costa, S.',
2965
+ id: '3acdce2a-ca21-4a9f-ae2f-a6c70224610c',
2966
+ label: 'Davide Boriani',
2947
2967
  typeOfEntity: 'persona'
2948
2968
  },
2949
- count: 19
2969
+ count: 13
2950
2970
  },
2951
2971
  {
2952
2972
  entity: {
2953
- id: '892ea47e-9f65-4fc6-ad2e-c85e69ae5ac3',
2954
- label: 'Aru, Carlo',
2973
+ id: 'f619a681-7b29-4dbb-b2d2-a66887b683a9',
2974
+ label: 'Gianni Colombo',
2955
2975
  typeOfEntity: 'persona'
2956
2976
  },
2957
- count: 17
2977
+ count: 13
2958
2978
  },
2959
2979
  {
2960
2980
  entity: {
2961
- id: 'ef9a6b08-bdab-4827-835e-47df891aac0b',
2962
- label: 'banche, istituti assicurazione ecc',
2963
- typeOfEntity: 'cosa notevole'
2981
+ id: 'fa0df465-d26a-4505-aaeb-393414107783',
2982
+ label: 'Marelli-Lenkurt',
2983
+ typeOfEntity: 'organizzazione'
2964
2984
  },
2965
- count: 17
2985
+ count: 11
2966
2986
  },
2967
2987
  {
2968
2988
  entity: {
2969
- id: '7e8d5830-3a5c-4aca-9a82-67c5556a5d61',
2970
- label: 'Ufficio concessioni e servitù',
2989
+ id: '040fe91c-9314-4159-971a-32289da1472f',
2990
+ label: 'VI Biennale di San Marino',
2971
2991
  typeOfEntity: 'organizzazione'
2972
2992
  },
2973
- count: 16
2993
+ count: 10
2974
2994
  },
2975
2995
  {
2976
2996
  entity: {
2977
- id: 'a23b3839-d0a5-4c52-9b36-a762f422d221',
2978
- label: 'Ufficio concessioni e servitù',
2997
+ id: 'f583823a-0839-45de-80aa-ecee8ee86381',
2998
+ label: 'Peri',
2979
2999
  typeOfEntity: 'organizzazione'
2980
3000
  },
2981
- count: 16
3001
+ count: 10
2982
3002
  },
2983
3003
  {
2984
3004
  entity: {
2985
- id: '3c64bf6d-8299-4b95-bdbe-8fcdead2705e',
2986
- label: 'Sezione Demanio marittimo',
3005
+ id: '3845161a-773c-4386-b1a7-c11ba68875f0',
3006
+ label: 'Triennale',
2987
3007
  typeOfEntity: 'organizzazione'
2988
3008
  },
2989
- count: 13
3009
+ count: 8
2990
3010
  },
2991
3011
  {
2992
3012
  entity: {
2993
- id: '47d308d2-86f5-4ca3-bda3-6d6d745c42ff',
2994
- label: 'Sezione Demanio marittimo',
3013
+ id: '78cabc71-d86e-48e8-a9bd-9ebde2cdf025',
3014
+ label: 'Bellasich e Bossi Editore',
2995
3015
  typeOfEntity: 'organizzazione'
2996
3016
  },
2997
- count: 13
3017
+ count: 8
2998
3018
  },
2999
3019
  {
3000
3020
  entity: {
3001
- id: 'c24d928d-604d-4f18-8ccf-db8b348c265f',
3002
- label: 'Ministero della pubblica istruzione',
3021
+ id: '8375e4ff-e4a1-46ae-abdf-e1ef40a45146',
3022
+ label: 'Dedalo',
3003
3023
  typeOfEntity: 'organizzazione'
3004
3024
  },
3005
- count: 13
3025
+ count: 8
3006
3026
  },
3007
3027
  {
3008
3028
  entity: {
3009
- id: '77397bb8-f1ea-4e34-b56a-3b251f8cbd38',
3010
- label: 'sport',
3011
- typeOfEntity: 'cosa notevole'
3012
- },
3013
- count: 11
3014
- },
3015
- {
3016
- entity: {
3017
- id: '16f082dc-1aa8-4800-bee0-a4f62b5c7d63',
3018
- label: 'Scano, Dionigi',
3019
- typeOfEntity: 'persona'
3020
- },
3021
- count: 10
3022
- },
3023
- {
3024
- entity: {
3025
- id: '90c0b77f-be07-49d3-8489-fd59f42a7b2b',
3026
- label: 'Soprintendenza ai monumenti e gallerie di Cagliari',
3027
- typeOfEntity: 'organizzazione'
3028
- },
3029
- count: 10
3030
- },
3031
- {
3032
- entity: {
3033
- id: 'b5d1fd8f-5149-4629-8b21-b3f754abd05d',
3034
- label: 'banche, istituti di credito e assicurazione',
3035
- typeOfEntity: 'cosa notevole'
3036
- },
3037
- count: 10
3038
- },
3039
- {
3040
- entity: {
3041
- id: '55c395c6-3721-4d06-950d-d7de52cb7f5a',
3042
- label: 'banche',
3043
- typeOfEntity: 'cosa notevole'
3044
- },
3045
- count: 9
3046
- },
3047
- {
3048
- entity: {
3049
- id: '0a380f9f-e7e2-441e-860e-52ebe49d139c',
3050
- label: 'Santadi',
3051
- typeOfEntity: 'luogo'
3052
- },
3053
- count: 7
3054
- },
3055
- {
3056
- entity: {
3057
- id: '2b1dbb20-9fea-4715-ae2f-1049ede12534',
3058
- label: 'Taramelli, Antonio',
3059
- typeOfEntity: 'persona'
3060
- },
3061
- count: 7
3062
- },
3063
- {
3064
- entity: {
3065
- id: '2ab14e10-e680-4a96-b7db-12ac1dc19fe8',
3066
- label: 'presidenza - (varie)',
3067
- typeOfEntity: 'cosa notevole'
3068
- },
3069
- count: 6
3070
- },
3071
- {
3072
- entity: {
3073
- id: '807877b3-f8cf-4a21-b4b6-860d62278aad',
3074
- label: 'Commissione provinciale dei monumenti',
3075
- typeOfEntity: 'organizzazione'
3076
- },
3077
- count: 6
3078
- },
3079
- {
3080
- entity: {
3081
- id: 'bd83d08d-446c-4ad9-8863-ef9991436f79',
3082
- label: 'Santadi',
3083
- typeOfEntity: 'luogo'
3084
- },
3085
- count: 6
3086
- },
3087
- {
3088
- entity: {
3089
- id: '0069b0b2-8df4-4aca-97c6-35eaaeb92a6a',
3090
- label: 'Riola',
3091
- typeOfEntity: 'luogo'
3092
- },
3093
- count: 5
3094
- },
3095
- {
3096
- entity: {
3097
- id: '18288c99-6089-4212-8c3a-4011c659c8c7',
3098
- label: 'Cannas, Emanuele',
3099
- typeOfEntity: 'persona'
3100
- },
3101
- count: 5
3102
- },
3103
- {
3104
- entity: {
3105
- id: '3b46618e-df7b-4158-88f2-50d9230c1243',
3106
- label: 'Baratili San Pietro',
3107
- typeOfEntity: 'luogo'
3108
- },
3109
- count: 5
3110
- },
3111
- {
3112
- entity: {
3113
- id: '3efa04ea-23f6-4214-b498-fdc2e893dba0',
3114
- label: 'Salaris, Mario',
3115
- typeOfEntity: 'persona'
3116
- },
3117
- count: 5
3118
- },
3119
- {
3120
- entity: {
3121
- id: '5290a3b0-7838-4fa2-9a18-6f38d9368df4',
3122
- label: 'Studio tecnico PRO.CE.A.',
3123
- typeOfEntity: 'organizzazione'
3124
- },
3125
- count: 5
3126
- },
3127
- {
3128
- entity: {
3129
- id: '69f302ee-eb39-41f3-88f5-f4ff7a9684f3',
3130
- label: 'Zeddiani',
3131
- typeOfEntity: 'luogo'
3132
- },
3133
- count: 5
3134
- },
3135
- {
3136
- entity: {
3137
- id: '6bef4caf-2494-47b4-8636-694d198ae6fd',
3138
- label: 'Cannas, Emanuele',
3139
- typeOfEntity: 'persona'
3140
- },
3141
- count: 5
3142
- },
3143
- {
3144
- entity: {
3145
- id: '74f46161-4340-4ca7-9c31-36cd78583d3f',
3146
- label: 'Comune di Santadi',
3147
- typeOfEntity: 'organizzazione'
3148
- },
3149
- count: 5
3150
- },
3151
- {
3152
- entity: {
3153
- id: 'b74347b3-318e-4c27-8403-d011074d89ee',
3154
- label: 'Nurachi',
3155
- typeOfEntity: 'luogo'
3156
- },
3157
- count: 5
3158
- },
3159
- {
3160
- entity: {
3161
- id: 'fee7a21b-e559-4b6e-8a29-15f4cbd9e70d',
3162
- label: 'Salaris, Mario',
3163
- typeOfEntity: 'persona'
3164
- },
3165
- count: 5
3166
- },
3167
- {
3168
- entity: {
3169
- id: '0a89a7c9-7e96-457b-a686-1b9d71e7b2c0',
3170
- label: 'Simaxis',
3171
- typeOfEntity: 'luogo'
3172
- },
3173
- count: 4
3174
- },
3175
- {
3176
- entity: {
3177
- id: '0cbb4c6d-044d-41b7-8518-ec2502c241d2',
3178
- label: 'Senorbì',
3179
- typeOfEntity: 'luogo'
3180
- },
3181
- count: 4
3182
- },
3183
- {
3184
- entity: {
3185
- id: '11f877c7-a16a-4dd1-beaa-a7bce80cd3c8',
3186
- label: 'Comune di Bauladu',
3187
- typeOfEntity: 'organizzazione'
3188
- },
3189
- count: 4
3190
- },
3191
- {
3192
- entity: {
3193
- id: '136c0d5d-7cde-4a17-a48d-4fb095ebdd35',
3194
- label: 'Cagliari',
3195
- typeOfEntity: 'luogo'
3196
- },
3197
- count: 4
3198
- },
3199
- {
3200
- entity: {
3201
- id: '16c902bd-cd0f-4801-a62b-d0a1f35d8b44',
3202
- label: 'Siurgus Donigala',
3203
- typeOfEntity: 'luogo'
3204
- },
3205
- count: 4
3206
- },
3207
- {
3208
- entity: {
3209
- id: '1f08231b-e098-494c-bdc7-1e69f4f74d5b',
3210
- label: 'Narbolia',
3211
- typeOfEntity: 'luogo'
3212
- },
3213
- count: 4
3214
- },
3215
- {
3216
- entity: {
3217
- id: '28a87a68-405f-4ec8-990b-0abdb11a3589',
3218
- label: "Quartu Sant'Elena",
3219
- typeOfEntity: 'luogo'
3220
- },
3221
- count: 4
3222
- },
3223
- {
3224
- entity: {
3225
- id: '2db7d117-6a2a-4fd7-ac18-5a8a51997799',
3226
- label: 'Antonetti, Nicolino',
3227
- typeOfEntity: 'persona'
3228
- },
3229
- count: 4
3230
- },
3231
- {
3232
- entity: {
3233
- id: '30243eba-457e-49c6-a61d-a73d40454533',
3234
- label: 'Gonnesa',
3235
- typeOfEntity: 'luogo'
3236
- },
3237
- count: 4
3238
- },
3239
- {
3240
- entity: {
3241
- id: '48aa7c4f-767a-459b-a359-2f0230d8db56',
3242
- label: 'Antonetti, Nicolino',
3243
- typeOfEntity: 'persona'
3244
- },
3245
- count: 4
3246
- },
3247
- {
3248
- entity: {
3249
- id: '51f61af8-d547-4030-b352-6ea2a6fd1ae3',
3250
- label: 'Comune di Selargius',
3251
- typeOfEntity: 'organizzazione'
3252
- },
3253
- count: 4
3254
- },
3255
- {
3256
- entity: {
3257
- id: '57cee9a8-cda8-483b-afc5-036472a0a98a',
3258
- label: 'Comune di Senorbì',
3259
- typeOfEntity: 'organizzazione'
3260
- },
3261
- count: 4
3262
- },
3263
- {
3264
- entity: {
3265
- id: '67d7519b-c3eb-43da-b920-a4fdb2f4721c',
3266
- label: 'Scano, Dionigi',
3267
- typeOfEntity: 'persona'
3268
- },
3269
- count: 4
3270
- },
3271
- {
3272
- entity: {
3273
- id: '68ce0fa6-5f1b-4a16-8ec3-5e59af2721b4',
3274
- label: 'Bauladu',
3275
- typeOfEntity: 'luogo'
3276
- },
3277
- count: 4
3278
- },
3279
- {
3280
- entity: {
3281
- id: '694c25ce-f443-4cf0-ae58-bf067582f4dc',
3282
- label: 'Villaperuccio (Santadi)',
3283
- typeOfEntity: 'luogo'
3284
- },
3285
- count: 4
3286
- },
3287
- {
3288
- entity: {
3289
- id: '73b0fd04-8ee7-4136-b7b1-e56f10c0c16c',
3290
- label: 'Sarroch',
3291
- typeOfEntity: 'luogo'
3292
- },
3293
- count: 4
3294
- },
3295
- {
3296
- entity: {
3297
- id: '7a543836-46d6-4581-8acf-2908e204a4a9',
3298
- label: 'Garau, Emilio Stefano',
3299
- typeOfEntity: 'persona'
3300
- },
3301
- count: 4
3302
- },
3303
- {
3304
- entity: {
3305
- id: '8228fb86-178c-4ada-8001-3ea64a954333',
3306
- label: 'Comune di Siurgus Donigala',
3307
- typeOfEntity: 'organizzazione'
3308
- },
3309
- count: 4
3310
- },
3311
- {
3312
- entity: {
3313
- id: '842aa0e0-53fc-4907-b0ed-8eac1357f7db',
3314
- label: 'Fluminimaggiore',
3315
- typeOfEntity: 'luogo'
3316
- },
3317
- count: 4
3318
- },
3319
- {
3320
- entity: {
3321
- id: '923d1a87-1230-4147-bc57-36475b70106d',
3322
- label: 'Selargius',
3323
- typeOfEntity: 'luogo'
3324
- },
3325
- count: 4
3326
- },
3327
- {
3328
- entity: {
3329
- id: '97fbd797-8c6d-44d0-a903-57d50874909d',
3330
- label: 'Villaperuccio (Santadi)',
3331
- typeOfEntity: 'luogo'
3332
- },
3333
- count: 4
3334
- },
3335
- {
3336
- entity: {
3337
- id: '9869b481-5289-4346-862b-0aea5012290c',
3338
- label: 'San Giovanni Suergiu',
3339
- typeOfEntity: 'luogo'
3340
- },
3341
- count: 4
3342
- },
3343
- {
3344
- entity: {
3345
- id: '9cc62ed9-4fd0-44fc-b26f-bdf8948856c1',
3346
- label: 'Portoscuso',
3347
- typeOfEntity: 'luogo'
3348
- },
3349
- count: 4
3350
- },
3351
- {
3352
- entity: {
3353
- id: 'aed54207-2b50-4648-aed2-726f1c052234',
3354
- label: 'Sinnai',
3355
- typeOfEntity: 'luogo'
3356
- },
3357
- count: 4
3358
- },
3359
- {
3360
- entity: {
3361
- id: 'b3a3fc0b-e974-4b36-bfdc-39597e9c5b9f',
3362
- label: 'Endrich, Enrico',
3363
- typeOfEntity: 'persona'
3364
- },
3365
- count: 4
3366
- },
3367
- {
3368
- entity: {
3369
- id: 'd7bd3519-994f-497d-9d56-9bfdbf638966',
3370
- label: 'Provveditorato alle opere pubbliche per la Sardegna',
3371
- typeOfEntity: 'organizzazione'
3372
- },
3373
- count: 4
3374
- },
3375
- {
3376
- entity: {
3377
- id: 'dd9c6882-66bb-45f8-9251-12955e45499a',
3378
- label: 'Comune di Santadi',
3379
- typeOfEntity: 'organizzazione'
3380
- },
3381
- count: 4
3382
- },
3383
- {
3384
- entity: {
3385
- id: 'df510cd9-a86d-48e5-95cd-66fc79877c79',
3386
- label: 'Burcei',
3387
- typeOfEntity: 'luogo'
3388
- },
3389
- count: 4
3390
- },
3391
- {
3392
- entity: {
3393
- id: 'f98f6705-1a75-4da3-8e22-bd867b851259',
3394
- label: 'Comune di Baratili San Pietro',
3395
- typeOfEntity: 'organizzazione'
3396
- },
3397
- count: 4
3398
- },
3399
- {
3400
- entity: {
3401
- id: 'ff0794d2-ba63-4d44-9f44-ef40a5c9c871',
3402
- label: 'locali e uffici',
3403
- typeOfEntity: 'cosa notevole'
3404
- },
3405
- count: 4
3406
- },
3407
- {
3408
- entity: {
3409
- id: '0020ea54-8bad-4793-bd86-505b93edd908',
3410
- label: 'Comune di Fluminimaggiore',
3411
- typeOfEntity: 'organizzazione'
3412
- },
3413
- count: 3
3414
- },
3415
- {
3416
- entity: {
3417
- id: '04c8ef1e-7073-4de6-8b4e-580630ee9b4c',
3418
- label: 'Comune di Riola',
3419
- typeOfEntity: 'organizzazione'
3420
- },
3421
- count: 3
3422
- },
3423
- {
3424
- entity: {
3425
- id: '05d6c519-d7a5-42ca-b7f0-24a1f5ae3f0e',
3426
- label: 'Portoscuso',
3427
- typeOfEntity: 'luogo'
3428
- },
3429
- count: 3
3430
- },
3431
- {
3432
- entity: {
3433
- id: '0f3586be-e640-44f1-b7fb-d2d3640e4d65',
3434
- label: 'Zuri (Ghilarza)',
3435
- typeOfEntity: 'luogo'
3436
- },
3437
- count: 3
3438
- },
3439
- {
3440
- entity: {
3441
- id: '11ac451f-e356-4452-b57b-3b3e9f3fa671',
3442
- label: 'Virdis, Bruno',
3443
- typeOfEntity: 'persona'
3444
- },
3445
- count: 3
3446
- },
3447
- {
3448
- entity: {
3449
- id: '190c2e42-50e0-49fe-83d0-bb476b6054cd',
3450
- label: 'Comune di Bosa',
3451
- typeOfEntity: 'organizzazione'
3452
- },
3453
- count: 3
3454
- },
3455
- {
3456
- entity: {
3457
- id: '1d10dd6e-5481-492b-9930-51e4099273ea',
3458
- label: 'Comune di Zuri',
3459
- typeOfEntity: 'organizzazione'
3460
- },
3461
- count: 3
3462
- },
3463
- {
3464
- entity: {
3465
- id: '1fe3c661-6d56-4c58-9807-0fbbb56cc943',
3466
- label: 'Comune di Gonnesa',
3467
- typeOfEntity: 'organizzazione'
3468
- },
3469
- count: 3
3470
- },
3471
- {
3472
- entity: {
3473
- id: '22c06541-f0e2-43c5-824f-fee86c49e79d',
3474
- label: 'Comune di Sarroch',
3475
- typeOfEntity: 'organizzazione'
3476
- },
3477
- count: 3
3478
- },
3479
- {
3480
- entity: {
3481
- id: '2a94bf3f-bfb3-4f03-bfae-64d61d893099',
3482
- label: 'Serramanna',
3483
- typeOfEntity: 'luogo'
3484
- },
3485
- count: 3
3486
- },
3487
- {
3488
- entity: {
3489
- id: '2b61a8fe-2dc6-4535-8143-e16956a4ca81',
3490
- label: "San Nicolò D'Arcidano",
3491
- typeOfEntity: 'luogo'
3492
- },
3493
- count: 3
3494
- },
3495
- {
3496
- entity: {
3497
- id: '2ddeedd0-aaa7-4a23-8076-2f764293ad2b',
3498
- label: 'Comune di Gesturi',
3499
- typeOfEntity: 'organizzazione'
3500
- },
3501
- count: 3
3502
- },
3503
- {
3504
- entity: {
3505
- id: '304b37fb-3827-4c51-9733-0788ff4c638b',
3506
- label: 'Sisini (Senorbì)',
3507
- typeOfEntity: 'luogo'
3508
- },
3509
- count: 3
3510
- },
3511
- {
3512
- entity: {
3513
- id: '33627771-897b-4c0a-910f-cc2221427e45',
3514
- label: 'Calasetta',
3515
- typeOfEntity: 'luogo'
3516
- },
3517
- count: 3
3518
- },
3519
- {
3520
- entity: {
3521
- id: '34d2a2ae-9b7e-41db-b664-43a57e389e9c',
3522
- label: 'Maracalagonis',
3523
- typeOfEntity: 'luogo'
3524
- },
3525
- count: 3
3526
- },
3527
- {
3528
- entity: {
3529
- id: '3cdfe3cd-2f64-4c8b-92ca-bc2b468cf2f0',
3530
- label: 'Ghilarza',
3531
- typeOfEntity: 'luogo'
3532
- },
3533
- count: 3
3534
- },
3535
- {
3536
- entity: {
3537
- id: '3d567c83-9949-4294-9c86-a35e96a5fcc5',
3538
- label: 'Comune di Oristano',
3539
- typeOfEntity: 'organizzazione'
3540
- },
3541
- count: 3
3542
- },
3543
- {
3544
- entity: {
3545
- id: '41c8527c-3bf7-4a0b-8f80-0b120738a7f4',
3546
- label: 'Comune di Narcao',
3547
- typeOfEntity: 'organizzazione'
3548
- },
3549
- count: 3
3550
- },
3551
- {
3552
- entity: {
3553
- id: '44b59bbb-994e-487e-a291-eefc21e62f5a',
3554
- label: 'Gonnoscodina',
3555
- typeOfEntity: 'luogo'
3556
- },
3557
- count: 3
3558
- },
3559
- {
3560
- entity: {
3561
- id: '45b98a6a-3717-4946-8235-d79c1dc877a7',
3562
- label: 'Domusnovas',
3563
- typeOfEntity: 'luogo'
3564
- },
3565
- count: 3
3566
- },
3567
- {
3568
- entity: {
3569
- id: '4771e4ef-d72c-41b6-a650-f6e4f192399a',
3570
- label: 'Cagliari',
3571
- typeOfEntity: 'luogo'
3572
- },
3573
- count: 3
3574
- },
3575
- {
3576
- entity: {
3577
- id: '4c9ae5a8-f3ae-42cc-896d-7c57ebd047c4',
3578
- label: 'Garau, Augusto',
3579
- typeOfEntity: 'persona'
3580
- },
3581
- count: 3
3582
- },
3583
- {
3584
- entity: {
3585
- id: '542224c9-9723-4066-babc-c1e667ef8dab',
3586
- label: 'Comune di Senorbì',
3587
- typeOfEntity: 'organizzazione'
3588
- },
3589
- count: 3
3590
- },
3591
- {
3592
- entity: {
3593
- id: '598571b7-44db-44e8-9533-57405594a39d',
3594
- label: 'Siliqua',
3595
- typeOfEntity: 'luogo'
3596
- },
3597
- count: 3
3598
- },
3599
- {
3600
- entity: {
3601
- id: '5c0743f4-4ddd-44cc-bd37-e52ebc5a6af9',
3602
- label: 'Comune di Monastir',
3603
- typeOfEntity: 'organizzazione'
3604
- },
3605
- count: 3
3606
- },
3607
- {
3608
- entity: {
3609
- id: '6c0c77fb-c820-4b70-8a45-530374064900',
3610
- label: 'Comune di Assemini',
3611
- typeOfEntity: 'organizzazione'
3612
- },
3613
- count: 3
3614
- },
3615
- {
3616
- entity: {
3617
- id: '71f2a7ec-64ac-49ae-b961-3ede9e77c17c',
3618
- label: 'Comune di Gonnoscodina',
3619
- typeOfEntity: 'organizzazione'
3620
- },
3621
- count: 3
3622
- },
3623
- {
3624
- entity: {
3625
- id: '72f2bb62-c84d-406a-9c60-1ef73c4a6284',
3626
- label: 'Comune di Selargius',
3627
- typeOfEntity: 'organizzazione'
3628
- },
3629
- count: 3
3630
- },
3631
- {
3632
- entity: {
3633
- id: '75cfc0bb-fc08-464a-b140-1d12359ce1b2',
3634
- label: 'Baratili San Pietro',
3635
- typeOfEntity: 'luogo'
3636
- },
3637
- count: 3
3638
- },
3639
- {
3640
- entity: {
3641
- id: '79a3a477-ec3a-4417-ace6-a9842062544d',
3642
- label: 'Gesturi',
3643
- typeOfEntity: 'luogo'
3644
- },
3645
- count: 3
3646
- },
3647
- {
3648
- entity: {
3649
- id: '7bf6a69e-193c-402e-ab52-3c7e4420a3e7',
3650
- label: 'Comune di San Giovanni Suergiu',
3651
- typeOfEntity: 'organizzazione'
3652
- },
3653
- count: 3
3654
- },
3655
- {
3656
- entity: {
3657
- id: '81312e6b-b0d9-4ecc-a537-48e1e4557eaf',
3658
- label: 'Comune di Simaxis',
3659
- typeOfEntity: 'organizzazione'
3660
- },
3661
- count: 3
3662
- },
3663
- {
3664
- entity: {
3665
- id: '8417fe93-109a-4c84-8c59-3ef90deab825',
3666
- label: 'Porto Vesme (Portoscuso)',
3667
- typeOfEntity: 'luogo'
3668
- },
3669
- count: 3
3670
- },
3671
- {
3672
- entity: {
3673
- id: '88f8519a-66bc-4d99-a00d-3f6ab487d9e8',
3674
- label: 'Capoterra',
3675
- typeOfEntity: 'luogo'
3676
- },
3677
- count: 3
3678
- },
3679
- {
3680
- entity: {
3681
- id: '8ac13f32-ed1c-48fd-ad25-4de753c7a439',
3682
- label: 'Muravera',
3683
- typeOfEntity: 'luogo'
3684
- },
3685
- count: 3
3686
- },
3687
- {
3688
- entity: {
3689
- id: '8cf9841d-d13b-4556-ad39-aed38d86a326',
3690
- label: "Comune di San Nicolò D'Arcidano",
3691
- typeOfEntity: 'organizzazione'
3692
- },
3693
- count: 3
3694
- },
3695
- {
3696
- entity: {
3697
- id: '905ced42-6223-4a6f-a9b0-0ff00f2ccc59',
3698
- label: 'Carbonia',
3699
- typeOfEntity: 'luogo'
3700
- },
3701
- count: 3
3702
- },
3703
- {
3704
- entity: {
3705
- id: '9ba9b303-b3cf-4cdc-9139-a843036225f2',
3706
- label: 'Senorbì',
3707
- typeOfEntity: 'luogo'
3708
- },
3709
- count: 3
3710
- },
3711
- {
3712
- entity: {
3713
- id: '9d464d00-fb9a-422e-a3ff-e3dedca8f099',
3714
- label: 'Comune di Villa San Pietro',
3715
- typeOfEntity: 'organizzazione'
3716
- },
3717
- count: 3
3718
- },
3719
- {
3720
- entity: {
3721
- id: '9dc7b1a5-902d-402c-adb4-9067714e03ec',
3722
- label: 'Pedemonte, Pietro',
3723
- typeOfEntity: 'persona'
3724
- },
3725
- count: 3
3726
- },
3727
- {
3728
- entity: {
3729
- id: 'a591b6a8-ada4-4d59-8024-ce05283a94cb',
3730
- label: 'Comune di Ghilarza',
3731
- typeOfEntity: 'organizzazione'
3732
- },
3733
- count: 3
3734
- },
3735
- {
3736
- entity: {
3737
- id: 'b17e83e9-73d7-4c8c-988c-07c821414e8c',
3738
- label: 'Narcao',
3739
- typeOfEntity: 'luogo'
3740
- },
3741
- count: 3
3742
- },
3743
- {
3744
- entity: {
3745
- id: 'b3c2c0a7-8026-4559-b5f7-af497da4b165',
3746
- label: 'Quartucciu',
3747
- typeOfEntity: 'luogo'
3748
- },
3749
- count: 3
3750
- },
3751
- {
3752
- entity: {
3753
- id: 'bea0edf4-52af-4c18-8d0e-4bd4cd8138ce',
3754
- label: 'Burcei',
3755
- typeOfEntity: 'luogo'
3756
- },
3757
- count: 3
3758
- },
3759
- {
3760
- entity: {
3761
- id: 'c0858051-ead6-4d55-a46d-edf9510a8460',
3762
- label: 'Teulada',
3763
- typeOfEntity: 'luogo'
3764
- },
3765
- count: 3
3766
- },
3767
- {
3768
- entity: {
3769
- id: 'c1dd9b99-0a4d-4b20-9ab8-26aa320e35f4',
3770
- label: 'Oristano',
3771
- typeOfEntity: 'luogo'
3772
- },
3773
- count: 3
3774
- },
3775
- {
3776
- entity: {
3777
- id: 'c27eac89-8122-426a-bdc4-2070648d755c',
3778
- label: 'Carbonia',
3779
- typeOfEntity: 'luogo'
3780
- },
3781
- count: 3
3782
- },
3783
- {
3784
- entity: {
3785
- id: 'c29063a0-01d5-4ecb-b6ac-093489589f0d',
3786
- label: 'Simonetti, Riccardo',
3787
- typeOfEntity: 'persona'
3788
- },
3789
- count: 3
3790
- },
3791
- {
3792
- entity: {
3793
- id: 'c427374b-97da-4e0d-8403-3a8e830a599b',
3794
- label: 'Comune di Zeddiani',
3795
- typeOfEntity: 'organizzazione'
3796
- },
3797
- count: 3
3798
- },
3799
- {
3800
- entity: {
3801
- id: 'c53d8f62-6ba4-459a-9001-99413ca7bafd',
3802
- label: 'Comune di Nurachi',
3803
- typeOfEntity: 'organizzazione'
3804
- },
3805
- count: 3
3806
- },
3807
- {
3808
- entity: {
3809
- id: 'c5b826dd-f6c0-4f65-a392-af8cabdcca83',
3810
- label: 'Comune di Siamaggiore',
3811
- typeOfEntity: 'organizzazione'
3812
- },
3813
- count: 3
3814
- },
3815
- {
3816
- entity: {
3817
- id: 'c614b687-69fd-4b51-a511-ba1202be5692',
3818
- label: 'Monastir',
3819
- typeOfEntity: 'luogo'
3820
- },
3821
- count: 3
3822
- },
3823
- {
3824
- entity: {
3825
- id: 'c8475e9c-ac5d-4c5f-8a56-6d08cb3d3ebb',
3826
- label: 'Garau, Augusto',
3827
- typeOfEntity: 'persona'
3828
- },
3829
- count: 3
3830
- },
3831
- {
3832
- entity: {
3833
- id: 'c85c6ac9-6ea7-446e-a909-28f2e750561c',
3834
- label: 'Assemini',
3835
- typeOfEntity: 'luogo'
3836
- },
3837
- count: 3
3838
- },
3839
- {
3840
- entity: {
3841
- id: 'c8afd4d5-abfb-46d1-8ca6-c48e3a8e0a99',
3842
- label: 'Villa San Pietro',
3843
- typeOfEntity: 'luogo'
3844
- },
3845
- count: 3
3846
- },
3847
- {
3848
- entity: {
3849
- id: 'c98524d9-fbbe-4d4e-8435-309658927b65',
3850
- label: 'Nurachi',
3851
- typeOfEntity: 'luogo'
3852
- },
3853
- count: 3
3854
- },
3855
- {
3856
- entity: {
3857
- id: 'c9cee1d7-a956-4599-a4e3-89a6cd8af7b6',
3858
- label: 'Comune di Iglesias',
3859
- typeOfEntity: 'organizzazione'
3860
- },
3861
- count: 3
3862
- },
3863
- {
3864
- entity: {
3865
- id: 'cbc7ba52-ff31-46f6-92f1-df03c8ae1da0',
3866
- label: 'Gonnesa',
3867
- typeOfEntity: 'luogo'
3868
- },
3869
- count: 3
3870
- },
3871
- {
3872
- entity: {
3873
- id: 'cce39d1d-395c-4fe7-8d82-669a116adcae',
3874
- label: 'Teulada',
3875
- typeOfEntity: 'luogo'
3876
- },
3877
- count: 3
3878
- },
3879
- {
3880
- entity: {
3881
- id: 'cfb2cc9b-f712-4a70-993f-d07906a06163',
3882
- label: 'Fluminimaggiore',
3883
- typeOfEntity: 'luogo'
3884
- },
3885
- count: 3
3886
- },
3887
- {
3888
- entity: {
3889
- id: 'cfb898a9-067b-47f5-bfdb-80d7f2273c0f',
3890
- label: 'Comune di Ortacesus',
3891
- typeOfEntity: 'organizzazione'
3892
- },
3893
- count: 3
3894
- },
3895
- {
3896
- entity: {
3897
- id: 'd4edfd52-89e9-4d41-b5c2-5191cf2701f4',
3898
- label: 'Comune di Serramanna',
3899
- typeOfEntity: 'organizzazione'
3900
- },
3901
- count: 3
3902
- },
3903
- {
3904
- entity: {
3905
- id: 'd580025e-e859-4bd6-96f9-d187692b0836',
3906
- label: 'Arbus',
3907
- typeOfEntity: 'luogo'
3908
- },
3909
- count: 3
3910
- },
3911
- {
3912
- entity: {
3913
- id: 'db4a5db2-b40e-4096-86b5-b3a529a489f6',
3914
- label: 'Pula',
3915
- typeOfEntity: 'luogo'
3916
- },
3917
- count: 3
3918
- },
3919
- {
3920
- entity: {
3921
- id: 'de1a142f-6a2c-4306-9a12-92371afff7bb',
3922
- label: 'Comune di Narbolia',
3923
- typeOfEntity: 'organizzazione'
3924
- },
3925
- count: 3
3926
- },
3927
- {
3928
- entity: {
3929
- id: 'e2a3e125-1681-4e84-914d-3717f28fb51c',
3930
- label: 'Selargius',
3931
- typeOfEntity: 'luogo'
3932
- },
3933
- count: 3
3934
- },
3935
- {
3936
- entity: {
3937
- id: 'e470a75c-d5b6-4704-85e6-06e49b76f820',
3938
- label: 'Bari Sardo',
3939
- typeOfEntity: 'luogo'
3940
- },
3941
- count: 3
3942
- },
3943
- {
3944
- entity: {
3945
- id: 'e52aee65-8dd0-456a-8bac-c8ac507142f7',
3946
- label: 'Tuili',
3947
- typeOfEntity: 'luogo'
3948
- },
3949
- count: 3
3950
- },
3951
- {
3952
- entity: {
3953
- id: 'e9c3be10-377a-4a8d-b22e-cb778f7f63a1',
3954
- label: 'Endrich, Enrico',
3955
- typeOfEntity: 'organizzazione'
3956
- },
3957
- count: 3
3958
- },
3959
- {
3960
- entity: {
3961
- id: 'ebf97992-5552-4bd4-8d86-57bdc4fdd5d3',
3962
- label: 'Siamaggiore',
3963
- typeOfEntity: 'luogo'
3964
- },
3965
- count: 3
3966
- },
3967
- {
3968
- entity: {
3969
- id: 'fa8e5936-49a5-41df-b71a-fa26cc6addeb',
3970
- label: 'Ortacesus',
3971
- typeOfEntity: 'luogo'
3972
- },
3973
- count: 3
3974
- },
3975
- {
3976
- entity: {
3977
- id: 'ff53023e-4afc-4404-a0e1-a1c308c42da6',
3978
- label: "Sant'Antioco",
3979
- typeOfEntity: 'luogo'
3980
- },
3981
- count: 3
3982
- },
3983
- {
3984
- entity: {
3985
- id: '002e5810-7176-440d-9e80-3c68c94d12bd',
3986
- label: 'Tadasuni',
3987
- typeOfEntity: 'luogo'
3988
- },
3989
- count: 2
3990
- },
3991
- {
3992
- entity: {
3993
- id: '0131948b-efe5-4976-a62b-3f81276adb2a',
3994
- label: 'Monastir',
3995
- typeOfEntity: 'luogo'
3996
- },
3997
- count: 2
3998
- },
3999
- {
4000
- entity: {
4001
- id: '01987640-f917-4973-98f1-884c17099ea5',
4002
- label: 'Pirri',
4003
- typeOfEntity: 'luogo'
4004
- },
4005
- count: 2
4006
- },
4007
- {
4008
- entity: {
4009
- id: '027e1290-9dbb-44ca-96ab-97ee0fdea10e',
4010
- label: 'Sestu',
4011
- typeOfEntity: 'luogo'
4012
- },
4013
- count: 2
4014
- },
4015
- {
4016
- entity: {
4017
- id: '04befe5d-790c-40fb-bb91-47ebca9361a5',
4018
- label: 'Pula',
4019
- typeOfEntity: 'luogo'
4020
- },
4021
- count: 2
4022
- },
4023
- {
4024
- entity: {
4025
- id: '062ff654-b153-476c-83f2-cbeb16e3afbb',
4026
- label: 'Morgongiori',
4027
- typeOfEntity: 'luogo'
4028
- },
4029
- count: 2
4030
- },
4031
- {
4032
- entity: {
4033
- id: '06c6c30f-ab75-474a-960b-2da225b760a6',
4034
- label: 'Ussaramanna',
4035
- typeOfEntity: 'luogo'
4036
- },
4037
- count: 2
4038
- },
4039
- {
4040
- entity: {
4041
- id: '085a5167-ff32-4631-8082-be2986f5a12d',
4042
- label: 'Impresa Oppo - Sitzia',
4043
- typeOfEntity: 'organizzazione'
4044
- },
4045
- count: 2
4046
- },
4047
- {
4048
- entity: {
4049
- id: '0cfe891d-35ca-443a-985b-6aa32ccccb96',
4050
- label: 'Comune di Villacidro',
4051
- typeOfEntity: 'organizzazione'
4052
- },
4053
- count: 2
4054
- },
4055
- {
4056
- entity: {
4057
- id: '0e296152-dfd5-465c-9d68-8aaa6a19f86d',
4058
- label: 'Villacidro',
4059
- typeOfEntity: 'luogo'
4060
- },
4061
- count: 2
4062
- },
4063
- {
4064
- entity: {
4065
- id: '0ee8df8a-04a9-4c7d-9a57-f3b0cc4aadaa',
4066
- label: 'Comune di Pompu',
4067
- typeOfEntity: 'organizzazione'
4068
- },
4069
- count: 2
4070
- },
4071
- {
4072
- entity: {
4073
- id: '0fc240bd-7392-4e48-9a76-56715941a9a6',
4074
- label: 'SNIA Viscosa spa',
4075
- typeOfEntity: 'organizzazione'
4076
- },
4077
- count: 2
4078
- },
4079
- {
4080
- entity: {
4081
- id: '1134f71d-bdce-44cc-a283-10ccf0779d7f',
4082
- label: 'Comune di Villasimius',
4083
- typeOfEntity: 'organizzazione'
4084
- },
4085
- count: 2
4086
- },
4087
- {
4088
- entity: {
4089
- id: '1138e0bb-3767-45af-a356-6b712d09ea54',
4090
- label: 'Comune di Baressa',
4091
- typeOfEntity: 'organizzazione'
4092
- },
4093
- count: 2
4094
- },
4095
- {
4096
- entity: {
4097
- id: '1160ea4e-6376-43f3-a9f9-1feed3ce1ae7',
4098
- label: 'Comune di Tiana',
4099
- typeOfEntity: 'organizzazione'
4100
- },
4101
- count: 2
4102
- },
4103
- {
4104
- entity: {
4105
- id: '139a15f8-a311-48c1-89e7-484b1cd40241',
4106
- label: 'Merli Gallino, Anna',
4107
- typeOfEntity: 'persona'
4108
- },
4109
- count: 2
4110
- },
4111
- {
4112
- entity: {
4113
- id: '13c14701-cdf4-469b-97a1-63f1ba119b93',
4114
- label: 'Schinardi, Giuseppe',
4115
- typeOfEntity: 'persona'
4116
- },
4117
- count: 2
4118
- },
4119
- {
4120
- entity: {
4121
- id: '13cc968f-9e6c-4323-92d3-9ccfb025935b',
4122
- label: 'Comune di Sanluri',
4123
- typeOfEntity: 'organizzazione'
4124
- },
4125
- count: 2
4126
- },
4127
- {
4128
- entity: {
4129
- id: '1420a2ac-b681-447c-a764-e2972f3b9f94',
4130
- label: 'Comune di Pau',
4131
- typeOfEntity: 'organizzazione'
4132
- },
4133
- count: 2
4134
- },
4135
- {
4136
- entity: {
4137
- id: '147b0d85-c924-474f-876a-59fd2d4e6278',
4138
- label: "Ente nazionale per l'energia elettrica - ENEL di Cagliari",
4139
- typeOfEntity: 'organizzazione'
4140
- },
4141
- count: 2
4142
- },
4143
- {
4144
- entity: {
4145
- id: '15039e16-67c9-43bf-a143-9c9a17848a97',
4146
- label: 'Tortolì',
4147
- typeOfEntity: 'luogo'
4148
- },
4149
- count: 2
4150
- },
4151
- {
4152
- entity: {
4153
- id: '153b8d59-07e6-4273-a20f-1f395c217dd4',
4154
- label: 'Sini',
4155
- typeOfEntity: 'luogo'
4156
- },
4157
- count: 2
4158
- },
4159
- {
4160
- entity: {
4161
- id: '162e5540-f15a-482a-91f0-b0e57117f9c3',
4162
- label: 'Comune di Bauladu',
4163
- typeOfEntity: 'organizzazione'
4164
- },
4165
- count: 2
4166
- },
4167
- {
4168
- entity: {
4169
- id: '17822165-bad5-40f1-aeae-dfe2ed115ab0',
4170
- label: 'Sardara',
4171
- typeOfEntity: 'luogo'
4172
- },
4173
- count: 2
4174
- },
4175
- {
4176
- entity: {
4177
- id: '17db64d3-207a-4717-80a6-4046ab6e729d',
4178
- label: 'Comune di Masullas',
4179
- typeOfEntity: 'organizzazione'
4180
- },
4181
- count: 2
4182
- },
4183
- {
4184
- entity: {
4185
- id: '19199ef1-16f6-4ae2-a948-08f89e8dddd5',
4186
- label: 'Comune di Sarroch',
4187
- typeOfEntity: 'organizzazione'
4188
- },
4189
- count: 2
4190
- },
4191
- {
4192
- entity: {
4193
- id: '19d4a374-8589-436e-9ac1-c3a7128241ee',
4194
- label: 'Comune di Serbariu',
4195
- typeOfEntity: 'organizzazione'
4196
- },
4197
- count: 2
4198
- },
4199
- {
4200
- entity: {
4201
- id: '1a37bde7-64f4-4864-a231-731a9537414e',
4202
- label: 'Guamaggiore',
4203
- typeOfEntity: 'luogo'
4204
- },
4205
- count: 2
4206
- },
4207
- {
4208
- entity: {
4209
- id: '1a5c81cf-dd08-46bc-8f2b-9f9d36e26d23',
4210
- label: 'Comune di Furtei',
4211
- typeOfEntity: 'organizzazione'
4212
- },
4213
- count: 2
4214
- },
4215
- {
4216
- entity: {
4217
- id: '1aafe693-66d5-47a8-8a7a-cab61738872f',
4218
- label: 'Contu, Anselmo',
4219
- typeOfEntity: 'persona'
4220
- },
4221
- count: 2
4222
- },
4223
- {
4224
- entity: {
4225
- id: '1b18acb6-9c63-4c58-a9d2-dc6756f16a9f',
4226
- label: 'Comune di Gergei',
4227
- typeOfEntity: 'organizzazione'
4228
- },
4229
- count: 2
4230
- },
4231
- {
4232
- entity: {
4233
- id: '1b6d9a5f-dec2-4872-972c-caccded3ff1d',
4234
- label: 'Comune di Soddì',
4235
- typeOfEntity: 'organizzazione'
4236
- },
4237
- count: 2
4238
- },
4239
- {
4240
- entity: {
4241
- id: '1c4867ba-c633-4be9-a1d0-1038cd82bf79',
4242
- label: 'Comune di Pauli Arbarei',
4243
- typeOfEntity: 'organizzazione'
4244
- },
4245
- count: 2
4246
- },
4247
- {
4248
- entity: {
4249
- id: '1c8a172f-de43-4157-b5d5-33524c060a5f',
4250
- label: 'Gonnoscodina',
4251
- typeOfEntity: 'luogo'
4252
- },
4253
- count: 2
4254
- },
4255
- {
4256
- entity: {
4257
- id: '1ca62339-b976-44c4-a38f-eabb321600e9',
4258
- label: 'Comune di Arbus',
4259
- typeOfEntity: 'organizzazione'
4260
- },
4261
- count: 2
4262
- },
4263
- {
4264
- entity: {
4265
- id: '1e16f325-67a1-41c5-8c24-af41c4381224',
4266
- label: 'San Basilio',
4267
- typeOfEntity: 'luogo'
4268
- },
4269
- count: 2
4270
- },
4271
- {
4272
- entity: {
4273
- id: '1eaf8142-0f76-418d-9316-13915b74414b',
4274
- label: 'Bulzi',
4275
- typeOfEntity: 'luogo'
4276
- },
4277
- count: 2
4278
- },
4279
- {
4280
- entity: {
4281
- id: '1ff3d08b-2562-4b28-ba83-3e4918730e36',
4282
- label: 'Segariu',
4283
- typeOfEntity: 'luogo'
4284
- },
4285
- count: 2
4286
- },
4287
- {
4288
- entity: {
4289
- id: '201ef2d3-ae2b-4ec4-981d-41d9b6e506c4',
4290
- label: 'Comune di Ussaramanna',
4291
- typeOfEntity: 'organizzazione'
4292
- },
4293
- count: 2
4294
- },
4295
- {
4296
- entity: {
4297
- id: '219f3078-a570-41c3-8b2a-a77c93e31b26',
4298
- label: 'Serbariu',
4299
- typeOfEntity: 'luogo'
4300
- },
4301
- count: 2
4302
- },
4303
- {
4304
- entity: {
4305
- id: '21f1cb91-1912-4955-9405-459aee61c5dc',
4306
- label: 'Comune di Ussana',
4307
- typeOfEntity: 'organizzazione'
4308
- },
4309
- count: 2
4310
- },
4311
- {
4312
- entity: {
4313
- id: '22335ba8-d58d-46e8-bb77-555ddd48cf25',
4314
- label: 'Comune di Belvì',
4315
- typeOfEntity: 'organizzazione'
4316
- },
4317
- count: 2
4318
- },
4319
- {
4320
- entity: {
4321
- id: '228b675c-fab8-4959-b257-dc96c64decd4',
4322
- label: 'Comune di Bortigiadas',
4323
- typeOfEntity: 'organizzazione'
4324
- },
4325
- count: 2
4326
- },
4327
- {
4328
- entity: {
4329
- id: '237e2cea-3950-4627-89b3-70e86c0c8879',
4330
- label: 'Cara Mereu, Giulia',
4331
- typeOfEntity: 'persona'
4332
- },
4333
- count: 2
4334
- },
4335
- {
4336
- entity: {
4337
- id: '245150e0-4d2d-46a2-b790-fea5cf3c5055',
4338
- label: 'Villasimius',
4339
- typeOfEntity: 'luogo'
4340
- },
4341
- count: 2
4342
- },
4343
- {
4344
- entity: {
4345
- id: '24d13e0e-1174-4461-9721-74c1085ae633',
4346
- label: 'Tiana',
4347
- typeOfEntity: 'luogo'
4348
- },
4349
- count: 2
4350
- },
4351
- {
4352
- entity: {
4353
- id: '25a59c4f-51ce-424e-91a0-0a4a606333fb',
4354
- label: 'Portovesme (Portoscuso)',
4355
- typeOfEntity: 'luogo'
4356
- },
4357
- count: 2
4358
- },
4359
- {
4360
- entity: {
4361
- id: '25b3d99b-d412-4b8e-9889-9f7ede13c4d8',
4362
- label: 'Comune di Orroli',
4363
- typeOfEntity: 'organizzazione'
4364
- },
4365
- count: 2
4366
- },
4367
- {
4368
- entity: {
4369
- id: '26806d17-6261-428d-80c2-b9e89e58902a',
4370
- label: 'Comune di Alghero',
4371
- typeOfEntity: 'organizzazione'
4372
- },
4373
- count: 2
4374
- },
4375
- {
4376
- entity: {
4377
- id: '26e86c98-c8b4-4534-a819-0e698a92447a',
4378
- label: 'Villanovaforru',
4379
- typeOfEntity: 'luogo'
4380
- },
4381
- count: 2
4382
- },
4383
- {
4384
- entity: {
4385
- id: '295fe8b8-f241-447b-a3c0-4d27f8de2783',
4386
- label: 'Comune di Nuraminis',
4387
- typeOfEntity: 'organizzazione'
4388
- },
4389
- count: 2
4390
- },
4391
- {
4392
- entity: {
4393
- id: '2adde0fb-af5c-4aee-a5a0-1c5b0a9b2f55',
4394
- label: 'San Vero Milis',
4395
- typeOfEntity: 'luogo'
4396
- },
4397
- count: 2
4398
- },
4399
- {
4400
- entity: {
4401
- id: '2d1aa574-280e-459d-807d-6b2bbcd25708',
4402
- label: 'Silì (Oristano)',
4403
- typeOfEntity: 'luogo'
4404
- },
4405
- count: 2
4406
- },
4407
- {
4408
- entity: {
4409
- id: '2d9d67c5-0ba0-4bcd-af58-8d60aca990da',
4410
- label: 'Loi, Attilio',
4411
- typeOfEntity: 'persona'
4412
- },
4413
- count: 2
4414
- },
4415
- {
4416
- entity: {
4417
- id: '2dc7b480-b021-44f8-b1eb-84f8f1b2be1d',
4418
- label: 'Nonnoi, Francesco',
4419
- typeOfEntity: 'persona'
4420
- },
4421
- count: 2
4422
- },
4423
- {
4424
- entity: {
4425
- id: '3001f08c-96a2-4ac2-9842-46fdcec99f43',
4426
- label: 'Comune di Silì',
4427
- typeOfEntity: 'organizzazione'
4428
- },
4429
- count: 2
4430
- },
4431
- {
4432
- entity: {
4433
- id: '309d5edc-7ab3-488c-8ca3-95b834c01a34',
4434
- label: 'Halen, Louis',
4435
- typeOfEntity: 'persona'
4436
- },
4437
- count: 2
4438
- },
4439
- {
4440
- entity: {
4441
- id: '3135a633-9a62-4f2f-bb0b-d6f666f50d74',
4442
- label: 'Società ORMUS Residenziale spa',
4443
- typeOfEntity: 'organizzazione'
4444
- },
4445
- count: 2
4446
- },
4447
- {
4448
- entity: {
4449
- id: '31573df9-5a83-42b5-9b3b-42d303450ffd',
4450
- label: 'Comune di Aidomaggiore',
4451
- typeOfEntity: 'organizzazione'
4452
- },
4453
- count: 2
4454
- },
4455
- {
4456
- entity: {
4457
- id: '317eb949-cd92-445b-a05c-b5c6fc70ea86',
4458
- label: 'Comune di Gonnoscodina',
4459
- typeOfEntity: 'organizzazione'
4460
- },
4461
- count: 2
4462
- },
4463
- {
4464
- entity: {
4465
- id: '320e52bf-a8a9-4745-8884-3aaa15f76126',
4466
- label: 'Comune di Pula',
4467
- typeOfEntity: 'organizzazione'
4468
- },
4469
- count: 2
4470
- },
4471
- {
4472
- entity: {
4473
- id: '327e8d73-00b3-4c91-9c81-cca6754f2fc2',
4474
- label: 'San Pantaleo (Dolianova)',
4475
- typeOfEntity: 'luogo'
4476
- },
4477
- count: 2
4478
- },
4479
- {
4480
- entity: {
4481
- id: '32943a84-75be-42cb-92ac-3fea5a72667c',
4482
- label: 'Comune di Siris',
4483
- typeOfEntity: 'organizzazione'
4484
- },
4485
- count: 2
4486
- },
4487
- {
4488
- entity: {
4489
- id: '32c0e727-1e1e-461b-b4ad-cc1068bd8a37',
4490
- label: 'Bidonì',
4491
- typeOfEntity: 'luogo'
4492
- },
4493
- count: 2
4494
- },
4495
- {
4496
- entity: {
4497
- id: '331a496b-cc11-4118-b359-2a5ce06e957d',
4498
- label: 'Comune di Muravera',
4499
- typeOfEntity: 'organizzazione'
4500
- },
4501
- count: 2
4502
- },
4503
- {
4504
- entity: {
4505
- id: '334d1723-8bfe-4a70-a18e-51cca716ec6d',
4506
- label: 'Sinnai',
4507
- typeOfEntity: 'luogo'
4508
- },
4509
- count: 2
4510
- },
4511
- {
4512
- entity: {
4513
- id: '34513a78-efa7-4d89-87d0-5144d185db3d',
4514
- label: 'Riola',
4515
- typeOfEntity: 'luogo'
4516
- },
4517
- count: 2
4518
- },
4519
- {
4520
- entity: {
4521
- id: '35517805-678d-47f5-8f02-92dcdd7471c4',
4522
- label: 'Ballao',
4523
- typeOfEntity: 'luogo'
4524
- },
4525
- count: 2
4526
- },
4527
- {
4528
- entity: {
4529
- id: '36182ea5-9d5f-4ffc-98a4-bd68d2e08903',
4530
- label: 'Ardauli',
4531
- typeOfEntity: 'luogo'
4532
- },
4533
- count: 2
4534
- },
4535
- {
4536
- entity: {
4537
- id: '379d9597-6727-4f89-8940-15ee3126e250',
4538
- label: 'Comune di Tratalias',
4539
- typeOfEntity: 'organizzazione'
4540
- },
4541
- count: 2
4542
- },
4543
- {
4544
- entity: {
4545
- id: '37d67103-b6d8-44ed-a96a-a44bb9e86bbb',
4546
- label: "Ente nazionale per l'energia elettrica - ENEL di Cagliari",
4547
- typeOfEntity: 'organizzazione'
4548
- },
4549
- count: 2
4550
- },
4551
- {
4552
- entity: {
4553
- id: '39382dc9-81e1-413c-a251-32f522f34473',
4554
- label: 'Comune di Ardauli',
4555
- typeOfEntity: 'organizzazione'
4556
- },
4557
- count: 2
4558
- },
4559
- {
4560
- entity: {
4561
- id: '39c3715b-8532-4d43-a6d9-709b6ae33d6d',
4562
- label: 'Figu',
4563
- typeOfEntity: 'luogo'
4564
- },
4565
- count: 2
4566
- },
4567
- {
4568
- entity: {
4569
- id: '3b72153f-7a66-4fd4-a875-8b9c2dd29137',
4570
- label: 'Comune di Ardauli',
4571
- typeOfEntity: 'organizzazione'
4572
- },
4573
- count: 2
4574
- },
4575
- {
4576
- entity: {
4577
- id: '3cdd42e6-cce8-4cd3-b1c4-2c828847159a',
4578
- label: 'Villaputzu',
4579
- typeOfEntity: 'luogo'
4580
- },
4581
- count: 2
4582
- },
4583
- {
4584
- entity: {
4585
- id: '3d15a7c8-0044-494b-9efd-6a102c0b0e15',
4586
- label: 'Comune di Teulada',
4587
- typeOfEntity: 'organizzazione'
4588
- },
4589
- count: 2
4590
- },
4591
- {
4592
- entity: {
4593
- id: '3d330aa1-a2e5-46f6-8aac-92a8bbf42747',
4594
- label: 'Comune di Sisini',
4595
- typeOfEntity: 'organizzazione'
4596
- },
4597
- count: 2
4598
- },
4599
- {
4600
- entity: {
4601
- id: '3d4b3171-4d73-4b11-a5a4-a92943977185',
4602
- label: 'Comune di Lotzorai',
4603
- typeOfEntity: 'organizzazione'
4604
- },
4605
- count: 2
4606
- },
4607
- {
4608
- entity: {
4609
- id: '3e5a08ed-ae81-444e-8f14-83800540104a',
4610
- label: 'Modolo',
4611
- typeOfEntity: 'luogo'
4612
- },
4613
- count: 2
4614
- },
4615
- {
4616
- entity: {
4617
- id: '4228815a-b000-4368-96fc-7cdceb296443',
4618
- label: 'Giba',
4619
- typeOfEntity: 'luogo'
4620
- },
4621
- count: 2
4622
- },
4623
- {
4624
- entity: {
4625
- id: '437171ac-cb47-4cc9-944f-4222e54203c7',
4626
- label: 'Erby, Onorino',
4627
- typeOfEntity: 'persona'
4628
- },
4629
- count: 2
4630
- },
4631
- {
4632
- entity: {
4633
- id: '445c41eb-6759-4598-a8bd-a13c483a0598',
4634
- label: 'Comune di Morgongiori',
4635
- typeOfEntity: 'organizzazione'
4636
- },
4637
- count: 2
4638
- },
4639
- {
4640
- entity: {
4641
- id: '45c8683b-24d6-471b-b772-f04476c097a8',
4642
- label: 'Cappai Randaccio, Francesco',
4643
- typeOfEntity: 'persona'
4644
- },
4645
- count: 2
4646
- },
4647
- {
4648
- entity: {
4649
- id: '460591fe-9cf5-43bd-98a8-f64a61677a8d',
4650
- label: 'La Plaia (Cagliari)',
4651
- typeOfEntity: 'luogo'
4652
- },
4653
- count: 2
4654
- },
4655
- {
4656
- entity: {
4657
- id: '46de2315-21ca-4ef5-bca0-e29659cbe149',
4658
- label: 'Oristano',
4659
- typeOfEntity: 'luogo'
4660
- },
4661
- count: 2
4662
- },
4663
- {
4664
- entity: {
4665
- id: '472f3817-8943-4afd-b481-f98b96746590',
4666
- label: 'Comune di Lanusei',
4667
- typeOfEntity: 'organizzazione'
4668
- },
4669
- count: 2
4670
- },
4671
- {
4672
- entity: {
4673
- id: '477c0546-ed56-4db0-921f-bdd22d571c9d',
4674
- label: 'Comune di Serramanna',
4675
- typeOfEntity: 'organizzazione'
4676
- },
4677
- count: 2
4678
- },
4679
- {
4680
- entity: {
4681
- id: '49383e9d-2d14-4c51-bcd1-9ff23fe8b96c',
4682
- label: 'San Gregorio (Sinnai)',
4683
- typeOfEntity: 'luogo'
4684
- },
4685
- count: 2
4686
- },
4687
- {
4688
- entity: {
4689
- id: '498501f4-151e-4f30-9606-35fc558444d2',
4690
- label: 'Las Plassas',
4691
- typeOfEntity: 'luogo'
4692
- },
4693
- count: 2
4694
- },
4695
- {
4696
- entity: {
4697
- id: '498d0454-999a-44b2-91e5-2cea2a3ea961',
4698
- label: 'Bonnanaro',
4699
- typeOfEntity: 'luogo'
4700
- },
4701
- count: 2
4702
- },
4703
- {
4704
- entity: {
4705
- id: '4a894a75-7a2f-49f2-a8f8-cf635acb8e33',
4706
- label: 'Comune di Modolo',
4707
- typeOfEntity: 'organizzazione'
4708
- },
4709
- count: 2
4710
- },
4711
- {
4712
- entity: {
4713
- id: '4a9939f4-7afc-4895-80e6-df64968b8369',
4714
- label: 'Portisceddu (Fluminimaggiore)',
4715
- typeOfEntity: 'luogo'
4716
- },
4717
- count: 2
4718
- },
4719
- {
4720
- entity: {
4721
- id: '4b6c325d-667e-4727-a8dd-4335ed3a1c35',
4722
- label: 'Simala',
4723
- typeOfEntity: 'luogo'
4724
- },
4725
- count: 2
4726
- },
4727
- {
4728
- entity: {
4729
- id: '4c6f00c4-58d5-4659-bf25-c5721d114100',
4730
- label: 'Murgia, Giovanni',
4731
- typeOfEntity: 'organizzazione'
4732
- },
4733
- count: 2
4734
- },
4735
- {
4736
- entity: {
4737
- id: '4d628c6c-2422-4b70-ae05-db65e0aabe6a',
4738
- label: 'Guasila',
4739
- typeOfEntity: 'luogo'
4740
- },
4741
- count: 2
4742
- },
4743
- {
4744
- entity: {
4745
- id: '4de77e75-7410-4b3c-8f84-b63476851bf0',
4746
- label: "Comune di Sant'Antioco",
4747
- typeOfEntity: 'organizzazione'
4748
- },
4749
- count: 2
4750
- },
4751
- {
4752
- entity: {
4753
- id: '4e3473a9-c62b-4bc1-88d5-62bbcaabbe60',
4754
- label: 'Orroli',
4755
- typeOfEntity: 'luogo'
4756
- },
4757
- count: 2
4758
- },
4759
- {
4760
- entity: {
4761
- id: '4e77174d-a776-4fcd-a45f-37159ee3cb7a',
4762
- label: "Casa di cura Sant'Anna",
4763
- typeOfEntity: 'organizzazione'
4764
- },
4765
- count: 2
4766
- },
4767
- {
4768
- entity: {
4769
- id: '4e83a62f-54e8-4415-9a44-05f49279395b',
4770
- label: 'Gallino, Paolo',
4771
- typeOfEntity: 'persona'
4772
- },
4773
- count: 2
4774
- },
4775
- {
4776
- entity: {
4777
- id: '4ea23bbd-f00f-495e-8bb3-1edcd3dc9205',
4778
- label: 'Comune di Baunei',
4779
- typeOfEntity: 'organizzazione'
4780
- },
4781
- count: 2
4782
- },
4783
- {
4784
- entity: {
4785
- id: '4ee9dd1a-df3b-4e9f-9091-a3f55aaf72ee',
4786
- label: 'Comune di Baratili San Pietro',
4787
- typeOfEntity: 'organizzazione'
4788
- },
4789
- count: 2
4790
- },
4791
- {
4792
- entity: {
4793
- id: '4fadfd54-bfdf-48c7-b216-b1d8c6efd0c4',
4794
- label: 'Fercia, Giorgio',
4795
- typeOfEntity: 'persona'
4796
- },
4797
- count: 2
4798
- },
4799
- {
4800
- entity: {
4801
- id: '50e52bc5-577d-4f72-9f7c-0e9b2c5bbffc',
4802
- label: 'Villaspeciosa',
4803
- typeOfEntity: 'luogo'
4804
- },
4805
- count: 2
4806
- },
4807
- {
4808
- entity: {
4809
- id: '5122cd7a-f40d-4a28-a832-556467e49faa',
4810
- label: 'Casu, Carlo',
4811
- typeOfEntity: 'persona'
4812
- },
4813
- count: 2
4814
- },
4815
- {
4816
- entity: {
4817
- id: '513f7c58-ea50-40e5-be00-ad2180d8e346',
4818
- label: 'Comune di Bonnanaro',
4819
- typeOfEntity: 'organizzazione'
4820
- },
4821
- count: 2
4822
- },
4823
- {
4824
- entity: {
4825
- id: '5243f5e0-f763-493d-a38b-7c60a6753475',
4826
- label: 'Comune di Segariu',
4827
- typeOfEntity: 'organizzazione'
4828
- },
4829
- count: 2
4830
- },
4831
- {
4832
- entity: {
4833
- id: '524e7e8d-5e65-4935-9885-fb247fcf3cb0',
4834
- label: 'Consorzio per il nucleo di industrializzazione del Sulcis Iglesiente',
4835
- typeOfEntity: 'organizzazione'
4836
- },
4837
- count: 2
4838
- },
4839
- {
4840
- entity: {
4841
- id: '52982af8-321c-4af8-922e-91783726df90',
4842
- label: 'Comune di Villanova Tulo',
4843
- typeOfEntity: 'organizzazione'
4844
- },
4845
- count: 2
4846
- },
4847
- {
4848
- entity: {
4849
- id: '52984f23-1481-49d4-b56d-ee6ad2095392',
4850
- label: 'Comune di Serrenti',
4851
- typeOfEntity: 'organizzazione'
4852
- },
4853
- count: 2
4854
- },
4855
- {
4856
- entity: {
4857
- id: '52f0e561-80d7-4d0b-bcf9-303fb2d4c8ad',
4858
- label: 'San Giovanni Suergiu',
4859
- typeOfEntity: 'luogo'
4860
- },
4861
- count: 2
4862
- },
4863
- {
4864
- entity: {
4865
- id: '5377fa3e-8819-48b6-93df-411da288d921',
4866
- label: 'Comune di Neoneli',
4867
- typeOfEntity: 'organizzazione'
4868
- },
4869
- count: 2
4870
- },
4871
- {
4872
- entity: {
4873
- id: '552f772c-7993-4a7a-804e-ff6944e3b277',
4874
- label: 'Serpeddì',
4875
- typeOfEntity: 'luogo'
4876
- },
4877
- count: 2
4878
- },
4879
- {
4880
- entity: {
4881
- id: '55f897df-a9e7-4771-9060-8fa4dfbeb510',
4882
- label: 'Pompu',
4883
- typeOfEntity: 'luogo'
4884
- },
4885
- count: 2
4886
- },
4887
- {
4888
- entity: {
4889
- id: '56490b34-d0c4-4e40-ab61-f746cd332656',
4890
- label: 'Tonara',
4891
- typeOfEntity: 'luogo'
4892
- },
4893
- count: 2
4894
- },
4895
- {
4896
- entity: {
4897
- id: '57fb1ad0-258c-44c9-9e20-bc5a820688bc',
4898
- label: 'Valentino, Luigi',
4899
- typeOfEntity: 'persona'
4900
- },
4901
- count: 2
4902
- },
4903
- {
4904
- entity: {
4905
- id: '583e09d2-0837-4979-af13-bcdc24f60d46',
4906
- label: 'Birori',
4907
- typeOfEntity: 'luogo'
4908
- },
4909
- count: 2
4910
- },
4911
- {
4912
- entity: {
4913
- id: '5ac96198-3f46-4c7d-9c93-06b42c29cce1',
4914
- label: 'Abbasanta',
4915
- typeOfEntity: 'luogo'
4916
- },
4917
- count: 2
4918
- },
4919
- {
4920
- entity: {
4921
- id: '5b01130d-531d-4a02-96e7-fab352e7873f',
4922
- label: 'Serpeddì',
4923
- typeOfEntity: 'luogo'
4924
- },
4925
- count: 2
4926
- },
4927
- {
4928
- entity: {
4929
- id: '5c9a1588-523a-419b-84d6-4f484468c710',
4930
- label: 'Sicci San Biagio (Dolianova)',
4931
- typeOfEntity: 'luogo'
4932
- },
4933
- count: 2
4934
- },
4935
- {
4936
- entity: {
4937
- id: '5cdb4ee1-59f0-47da-b2dc-c49090ca9fac',
4938
- label: 'Comune di Setzu',
4939
- typeOfEntity: 'organizzazione'
4940
- },
4941
- count: 2
4942
- },
4943
- {
4944
- entity: {
4945
- id: '5e9ed26e-205f-4344-9c45-d75300894d4f',
4946
- label: 'Simaxis',
4947
- typeOfEntity: 'luogo'
4948
- },
4949
- count: 2
4950
- },
4951
- {
4952
- entity: {
4953
- id: '5ebcb08a-5865-4060-9429-815525d9aaed',
4954
- label: 'Samatzai',
4955
- typeOfEntity: 'luogo'
4956
- },
4957
- count: 2
4958
- },
4959
- {
4960
- entity: {
4961
- id: '5f6c7eaa-c752-4d01-ad45-8dde4420a3c9',
4962
- label: 'Serrenti',
4963
- typeOfEntity: 'luogo'
4964
- },
4965
- count: 2
4966
- },
4967
- {
4968
- entity: {
4969
- id: '5ff2c322-cfbc-48bb-88aa-ee7b0cf6c9dd',
4970
- label: 'Comune di Samatzai',
4971
- typeOfEntity: 'organizzazione'
4972
- },
4973
- count: 2
4974
- },
4975
- {
4976
- entity: {
4977
- id: '6085d982-6131-4c75-bd45-e2a3a01ed064',
4978
- label: 'Murgia, Giovanni',
4979
- typeOfEntity: 'organizzazione'
4980
- },
4981
- count: 2
4982
- },
4983
- {
4984
- entity: {
4985
- id: '623ff899-4816-4e49-ac49-d6ae5d9f67b3',
4986
- label: 'Comune di Nuraxinieddu',
4987
- typeOfEntity: 'organizzazione'
4988
- },
4989
- count: 2
4990
- },
4991
- {
4992
- entity: {
4993
- id: '6290628c-ce81-484b-b529-73f0b1806f7e',
4994
- label: 'Comune di Siddi',
4995
- typeOfEntity: 'organizzazione'
4996
- },
4997
- count: 2
4998
- },
4999
- {
5000
- entity: {
5001
- id: '63637dcf-446e-40d5-8a91-b4b6b4c31222',
5002
- label: 'Comune di Teulada',
5003
- typeOfEntity: 'organizzazione'
5004
- },
5005
- count: 2
5006
- },
5007
- {
5008
- entity: {
5009
- id: '65821616-426d-485c-bb83-4ea60c863b92',
5010
- label: 'Alghero',
5011
- typeOfEntity: 'luogo'
5012
- },
5013
- count: 2
5014
- },
5015
- {
5016
- entity: {
5017
- id: '6652b537-0da7-4625-b7ba-9b32316bfde6',
5018
- label: 'Uras',
5019
- typeOfEntity: 'luogo'
5020
- },
5021
- count: 2
5022
- },
5023
- {
5024
- entity: {
5025
- id: '66f22d8e-9250-4c26-b7e1-4924d73440cb',
5026
- label: 'Comune di Sinnai',
5027
- typeOfEntity: 'organizzazione'
5028
- },
5029
- count: 2
5030
- },
5031
- {
5032
- entity: {
5033
- id: '6771a870-74c9-4fba-808a-82a0d2e3eeac',
5034
- label: 'Comune di Tadasuni',
5035
- typeOfEntity: 'organizzazione'
5036
- },
5037
- count: 2
5038
- },
5039
- {
5040
- entity: {
5041
- id: '6771f596-634b-4c80-a293-2955101f1c8c',
5042
- label: 'Tresnuraghes',
5043
- typeOfEntity: 'luogo'
5044
- },
5045
- count: 2
5046
- },
5047
- {
5048
- entity: {
5049
- id: '67becabc-31d4-4822-9884-978c049b512a',
5050
- label: 'Nuraxinieddu',
5051
- typeOfEntity: 'luogo'
5052
- },
5053
- count: 2
5054
- },
5055
- {
5056
- entity: {
5057
- id: '6a17130c-5053-470d-8fbf-f22be634393a',
5058
- label: 'Comune di Borore',
5059
- typeOfEntity: 'organizzazione'
5060
- },
5061
- count: 2
5062
- },
5063
- {
5064
- entity: {
5065
- id: '6a32b986-9db7-4cef-b99e-fe1357f89262',
5066
- label: 'Donadio, Enrico',
5067
- typeOfEntity: 'persona'
5068
- },
5069
- count: 2
5070
- },
5071
- {
5072
- entity: {
5073
- id: '6a43d18f-8389-4406-b74e-10be02a74f49',
5074
- label: 'Comune di Pabillonis',
5075
- typeOfEntity: 'organizzazione'
5076
- },
5077
- count: 2
5078
- },
5079
- {
5080
- entity: {
5081
- id: '6b762694-d597-4114-8e27-7dc2b150fb45',
5082
- label: 'Comune di Girasole',
5083
- typeOfEntity: 'organizzazione'
5084
- },
5085
- count: 2
5086
- },
5087
- {
5088
- entity: {
5089
- id: '6bcfc45b-b4f2-4ba2-bc3e-2cc8e929b896',
5090
- label: 'Comune di Tuili',
5091
- typeOfEntity: 'organizzazione'
5092
- },
5093
- count: 2
5094
- },
5095
- {
5096
- entity: {
5097
- id: '6bd0d5f1-69f2-47c4-98d8-a5621e13f508',
5098
- label: 'Comune di Serdiana',
5099
- typeOfEntity: 'organizzazione'
5100
- },
5101
- count: 2
5102
- },
5103
- {
5104
- entity: {
5105
- id: '6cba0dcf-be96-4a8d-9a62-480eada41b42',
5106
- label: 'Comune di Tonara',
5107
- typeOfEntity: 'organizzazione'
5108
- },
5109
- count: 2
5110
- },
5111
- {
5112
- entity: {
5113
- id: '6d235b87-e89b-404f-b5c2-12aefa94d41e',
5114
- label: 'Alghero',
5115
- typeOfEntity: 'luogo'
5116
- },
5117
- count: 2
5118
- },
5119
- {
5120
- entity: {
5121
- id: '6d48c548-0e38-493f-8f11-506cdc2c86c9',
5122
- label: 'La Plaia (Cagliari)',
5123
- typeOfEntity: 'luogo'
5124
- },
5125
- count: 2
5126
- },
5127
- {
5128
- entity: {
5129
- id: '6d4aca3b-abd4-412a-b859-9a3e746ffea9',
5130
- label: 'Settimo San Pietro',
5131
- typeOfEntity: 'luogo'
5132
- },
5133
- count: 2
5134
- },
5135
- {
5136
- entity: {
5137
- id: '6dcf2006-24f7-44fb-a547-10abffc387d2',
5138
- label: 'Sassu, Bruno',
5139
- typeOfEntity: 'persona'
5140
- },
5141
- count: 2
5142
- },
5143
- {
5144
- entity: {
5145
- id: '6e585e1c-a7de-4ec1-8cf8-cacb17548806',
5146
- label: 'Comune di Domusnovas',
5147
- typeOfEntity: 'organizzazione'
5148
- },
5149
- count: 2
5150
- },
5151
- {
5152
- entity: {
5153
- id: '6fa86799-6251-4fb9-9287-92c81523f0ee',
5154
- label: 'Comune di Isili',
5155
- typeOfEntity: 'organizzazione'
5156
- },
5157
- count: 2
5158
- },
5159
- {
5160
- entity: {
5161
- id: '700a1e3d-e7b3-4f4b-b468-c10c454f2e81',
5162
- label: 'Comune di Cuglieri',
5163
- typeOfEntity: 'organizzazione'
5164
- },
5165
- count: 2
5166
- },
5167
- {
5168
- entity: {
5169
- id: '7140b61d-11c3-420c-8450-7fc43c4e4e22',
5170
- label: 'Siliqua',
5171
- typeOfEntity: 'luogo'
5172
- },
5173
- count: 2
5174
- },
5175
- {
5176
- entity: {
5177
- id: '719966d1-423f-4f4a-8100-60af0465e98e',
5178
- label: 'Comune di Pirri',
5179
- typeOfEntity: 'organizzazione'
5180
- },
5181
- count: 2
5182
- },
5183
- {
5184
- entity: {
5185
- id: '72694706-f304-4191-bf21-a1dbe29b35bc',
5186
- label: 'Belvì',
5187
- typeOfEntity: 'luogo'
5188
- },
5189
- count: 2
5190
- },
5191
- {
5192
- entity: {
5193
- id: '731723b2-92ab-45f6-be93-333433c81a2e',
5194
- label: 'Domusnovas',
5195
- typeOfEntity: 'luogo'
5196
- },
5197
- count: 2
5198
- },
5199
- {
5200
- entity: {
5201
- id: '735164a7-829f-49ad-a50f-65973bebb87c',
5202
- label: "Sant'Antioco",
5203
- typeOfEntity: 'luogo'
5204
- },
5205
- count: 2
5206
- },
5207
- {
5208
- entity: {
5209
- id: '738a436a-216f-48e9-8ecc-7d4325418e07',
5210
- label: 'Sanluri',
5211
- typeOfEntity: 'luogo'
5212
- },
5213
- count: 2
5214
- },
5215
- {
5216
- entity: {
5217
- id: '739a71a0-4000-40a5-accf-d653fb10073f',
5218
- label: 'Comune di Ortacesus',
5219
- typeOfEntity: 'organizzazione'
5220
- },
5221
- count: 2
5222
- },
5223
- {
5224
- entity: {
5225
- id: '764e381b-4905-421c-b476-360b63e1fcd1',
5226
- label: 'Suelli',
5227
- typeOfEntity: 'luogo'
5228
- },
5229
- count: 2
5230
- },
5231
- {
5232
- entity: {
5233
- id: '77481267-96a9-46b0-a237-bc7a027aa695',
5234
- label: 'Collinas',
5235
- typeOfEntity: 'luogo'
5236
- },
5237
- count: 2
5238
- },
5239
- {
5240
- entity: {
5241
- id: '777d2ea8-4eba-46e4-92e1-4c7ef411aaf5',
5242
- label: 'Comune di Silius',
5243
- typeOfEntity: 'organizzazione'
5244
- },
5245
- count: 2
5246
- },
5247
- {
5248
- entity: {
5249
- id: '77a69de1-d3cf-48cf-aff7-6c30f02ad101',
5250
- label: 'Comune di Musei',
5251
- typeOfEntity: 'organizzazione'
5252
- },
5253
- count: 2
5254
- },
5255
- {
5256
- entity: {
5257
- id: '7830b5bc-b8f4-4773-82bb-54c7dcfd94c8',
5258
- label: 'Comune di Calasetta',
5259
- typeOfEntity: 'organizzazione'
5260
- },
5261
- count: 2
5262
- },
5263
- {
5264
- entity: {
5265
- id: '785bf0ad-2555-4863-8bdd-bf582cfefce3',
5266
- label: 'Comune di Samassi',
5267
- typeOfEntity: 'organizzazione'
5268
- },
5269
- count: 2
5270
- },
5271
- {
5272
- entity: {
5273
- id: '78f40c1f-1b8a-4e6b-ba2e-89cda0346ab5',
5274
- label: 'Comune di Suelli',
5275
- typeOfEntity: 'organizzazione'
5276
- },
5277
- count: 2
5278
- },
5279
- {
5280
- entity: {
5281
- id: '796bd77f-a6cb-49a9-8950-a27857170ea5',
5282
- label: 'Pabillonis',
5283
- typeOfEntity: 'luogo'
5284
- },
5285
- count: 2
5286
- },
5287
- {
5288
- entity: {
5289
- id: '79779c96-3196-490d-b132-54fca1004c0f',
5290
- label: 'Bortigiadas',
5291
- typeOfEntity: 'luogo'
5292
- },
5293
- count: 2
5294
- },
5295
- {
5296
- entity: {
5297
- id: '7a32e2bc-8568-4b6e-b4ba-7c99201f45c7',
5298
- label: 'Comune di Villamar',
5299
- typeOfEntity: 'organizzazione'
5300
- },
5301
- count: 2
5302
- },
5303
- {
5304
- entity: {
5305
- id: '7a51f255-0127-47f2-bb4a-4187ad887aac',
5306
- label: 'Comune di Bidonì',
5307
- typeOfEntity: 'organizzazione'
5308
- },
5309
- count: 2
5310
- },
5311
- {
5312
- entity: {
5313
- id: '7bdd45e1-a8e8-4bca-8af5-977d992f7661',
5314
- label: 'Mura, Telesforo',
5315
- typeOfEntity: 'persona'
5316
- },
5317
- count: 2
5318
- },
5319
- {
5320
- entity: {
5321
- id: '7d178e9e-3b7d-4ad7-8b48-3e0326c17eab',
5322
- label: 'Laconi',
5323
- typeOfEntity: 'luogo'
5324
- },
5325
- count: 2
5326
- },
5327
- {
5328
- entity: {
5329
- id: '7d616c07-8305-46ed-ab3a-ae3a922415cc',
5330
- label: 'Comune di Narcao',
5331
- typeOfEntity: 'organizzazione'
5332
- },
5333
- count: 2
5334
- },
5335
- {
5336
- entity: {
5337
- id: '7e250601-8e53-46aa-aa74-34e26135f117',
5338
- label: 'Turri',
5339
- typeOfEntity: 'luogo'
5340
- },
5341
- count: 2
5342
- },
5343
- {
5344
- entity: {
5345
- id: '7f49c6cc-6ede-46ad-a7f7-e9169994f000',
5346
- label: 'Comune di Sorradile',
5347
- typeOfEntity: 'organizzazione'
5348
- },
5349
- count: 2
5350
- },
5351
- {
5352
- entity: {
5353
- id: '807fedbb-d3a1-46b1-907b-3e842d1e4080',
5354
- label: 'Comune di Abbasanta',
5355
- typeOfEntity: 'organizzazione'
5356
- },
5357
- count: 2
5358
- },
5359
- {
5360
- entity: {
5361
- id: '80e5464b-3c2d-4c0e-81b8-11e1edf5185f',
5362
- label: 'Mereu, Salvatorangelo',
5363
- typeOfEntity: 'organizzazione'
5364
- },
5365
- count: 2
5366
- },
5367
- {
5368
- entity: {
5369
- id: '80fcc39d-38b3-4d85-81bd-5fea2823da9b',
5370
- label: 'Comune di Noragugume',
5371
- typeOfEntity: 'organizzazione'
5372
- },
5373
- count: 2
5374
- },
5375
- {
5376
- entity: {
5377
- id: '817a048b-753e-4e3b-b1c2-b8b4b07c338f',
5378
- label: 'Comune di Sestu',
5379
- typeOfEntity: 'organizzazione'
5380
- },
5381
- count: 2
5382
- },
5383
- {
5384
- entity: {
5385
- id: '8244ff5b-1015-4769-9685-05524358f17e',
5386
- label: 'Samassi',
5387
- typeOfEntity: 'luogo'
5388
- },
5389
- count: 2
5390
- },
5391
- {
5392
- entity: {
5393
- id: '84c8baf8-713a-42ec-9670-d50a11dde290',
5394
- label: 'Ardara',
5395
- typeOfEntity: 'luogo'
5396
- },
5397
- count: 2
5398
- },
5399
- {
5400
- entity: {
5401
- id: '8564c7f4-c239-4d73-b10b-300a428f8d9d',
5402
- label: 'Capoterra',
5403
- typeOfEntity: 'luogo'
5404
- },
5405
- count: 2
5406
- },
5407
- {
5408
- entity: {
5409
- id: '85fef45f-9fe9-4f5f-b8cd-26309fbb2501',
5410
- label: 'Sorgono',
5411
- typeOfEntity: 'luogo'
5412
- },
5413
- count: 2
5414
- },
5415
- {
5416
- entity: {
5417
- id: '8770b818-a8d3-4331-b896-730f857bd699',
5418
- label: 'Comune di Ballao',
5419
- typeOfEntity: 'organizzazione'
5420
- },
5421
- count: 2
5422
- },
5423
- {
5424
- entity: {
5425
- id: '88f1707f-fa15-4d2b-b135-aedf49c8b1ae',
5426
- label: 'Comune di Figu',
5427
- typeOfEntity: 'organizzazione'
5428
- },
5429
- count: 2
5430
- },
5431
- {
5432
- entity: {
5433
- id: '8a27c740-539d-49bf-84c7-43dbb2e24297',
5434
- label: 'Comune di Villaspeciosa',
5435
- typeOfEntity: 'organizzazione'
5436
- },
5437
- count: 2
5438
- },
5439
- {
5440
- entity: {
5441
- id: '8a87458f-f2c3-4da3-96d4-72bf02541f50',
5442
- label: 'Vallermosa',
5443
- typeOfEntity: 'luogo'
5444
- },
5445
- count: 2
5446
- },
5447
- {
5448
- entity: {
5449
- id: '8ad8d116-9fe0-4701-8064-444584e6e2d9',
5450
- label: 'Comune di Dualchi',
5451
- typeOfEntity: 'organizzazione'
5452
- },
5453
- count: 2
5454
- },
5455
- {
5456
- entity: {
5457
- id: '8b4fe3fb-8734-4375-ae8f-567b0124aa9e',
5458
- label: 'Genoni',
5459
- typeOfEntity: 'luogo'
5460
- },
5461
- count: 2
5462
- },
5463
- {
5464
- entity: {
5465
- id: '8c3e0ec8-9cdd-427e-9e7f-cb27670aefc1',
5466
- label: 'Comune di Laconi',
5467
- typeOfEntity: 'organizzazione'
5468
- },
5469
- count: 2
5470
- },
5471
- {
5472
- entity: {
5473
- id: '8d0f240c-b474-49c2-a83d-2414ce10d44c',
5474
- label: 'Villasor',
5475
- typeOfEntity: 'luogo'
5476
- },
5477
- count: 2
5478
- },
5479
- {
5480
- entity: {
5481
- id: '8d35055f-0b6b-4f77-8be3-aa82bdf70605',
5482
- label: 'Masala, Fiorenzo',
5483
- typeOfEntity: 'persona'
5484
- },
5485
- count: 2
5486
- },
5487
- {
5488
- entity: {
5489
- id: '8f84ca75-5b0f-4502-94be-a5f1c59041cc',
5490
- label: 'Siris',
5491
- typeOfEntity: 'luogo'
5492
- },
5493
- count: 2
5494
- },
5495
- {
5496
- entity: {
5497
- id: '9226a719-743e-4e16-ae61-fe7aaf3fe202',
5498
- label: 'Comune di Las Plassas',
5499
- typeOfEntity: 'organizzazione'
5500
- },
5501
- count: 2
5502
- },
5503
- {
5504
- entity: {
5505
- id: '9278adee-e6fc-4a40-b83c-bd4e909a237d',
5506
- label: 'IRC spa Soc Franki',
5507
- typeOfEntity: 'organizzazione'
5508
- },
5509
- count: 2
5510
- },
5511
- {
5512
- entity: {
5513
- id: '92842961-9d54-41fb-880c-99d316489bfa',
5514
- label: 'Comune di Simala',
5515
- typeOfEntity: 'organizzazione'
5516
- },
5517
- count: 2
5518
- },
5519
- {
5520
- entity: {
5521
- id: '931a4a94-ebf4-4b48-a489-253795bcf594',
5522
- label: 'Comune di Vallermosa',
5523
- typeOfEntity: 'organizzazione'
5524
- },
5525
- count: 2
5526
- },
5527
- {
5528
- entity: {
5529
- id: '932a792a-ce76-4ffc-904e-9c70960f2814',
5530
- label: 'Comune di Selegas',
5531
- typeOfEntity: 'organizzazione'
5532
- },
5533
- count: 2
5534
- },
5535
- {
5536
- entity: {
5537
- id: '94274509-c069-475f-98a0-21f8cb199f0d',
5538
- label: 'Comune di Elmas',
5539
- typeOfEntity: 'organizzazione'
5540
- },
5541
- count: 2
5542
- },
5543
- {
5544
- entity: {
5545
- id: '95c85d8e-a130-4a57-87c4-bed991c13047',
5546
- label: 'Caria, Francesco',
5547
- typeOfEntity: 'persona'
5548
- },
5549
- count: 2
5550
- },
5551
- {
5552
- entity: {
5553
- id: '95ee873e-a890-41b0-a6dc-276c709bcc54',
5554
- label: 'Selegas',
5555
- typeOfEntity: 'luogo'
5556
- },
5557
- count: 2
5558
- },
5559
- {
5560
- entity: {
5561
- id: '965b2c1e-4b4f-4e83-a1fc-1bf5234e29f9',
5562
- label: 'Atzara',
5563
- typeOfEntity: 'luogo'
5564
- },
5565
- count: 2
5566
- },
5567
- {
5568
- entity: {
5569
- id: '97295860-2ab9-4c7c-9d1b-dd0911e16f8d',
5570
- label: 'Setzu',
5571
- typeOfEntity: 'luogo'
5572
- },
5573
- count: 2
5574
- },
5575
- {
5576
- entity: {
5577
- id: '978b5d3a-96c8-4a28-87e9-4007b0926caa',
5578
- label: 'Maracalagonis',
5579
- typeOfEntity: 'luogo'
5580
- },
5581
- count: 2
5582
- },
5583
- {
5584
- entity: {
5585
- id: '97d5f929-cedf-46a7-b907-6bc6ca1414b3',
5586
- label: 'Assemini',
5587
- typeOfEntity: 'luogo'
5588
- },
5589
- count: 2
5590
- },
5591
- {
5592
- entity: {
5593
- id: '993a6b2c-a2df-45ea-bbb9-09d96c5d2f11',
5594
- label: 'Comune di Capoterra',
5595
- typeOfEntity: 'organizzazione'
5596
- },
5597
- count: 2
5598
- },
5599
- {
5600
- entity: {
5601
- id: '99c327ee-96c4-46a6-bbcf-7f4ebdbcf13a',
5602
- label: 'Garau, Giorgio',
5603
- typeOfEntity: 'persona'
5604
- },
5605
- count: 2
5606
- },
5607
- {
5608
- entity: {
5609
- id: '99d27a2b-347d-46c8-9113-a8be4a20a003',
5610
- label: 'Bosa',
5611
- typeOfEntity: 'luogo'
5612
- },
5613
- count: 2
5614
- },
5615
- {
5616
- entity: {
5617
- id: '9a2c2973-db7a-4ccc-bc17-31e4d1222308',
5618
- label: 'Halen Manca, Enrica',
5619
- typeOfEntity: 'persona'
5620
- },
5621
- count: 2
5622
- },
5623
- {
5624
- entity: {
5625
- id: '9b9366fb-8a41-4c5f-b0ee-c5c91e19aad4',
5626
- label: 'Comune di Sicci San Biagio',
5627
- typeOfEntity: 'organizzazione'
5628
- },
5629
- count: 2
5630
- },
5631
- {
5632
- entity: {
5633
- id: '9ce6c07a-b1e5-4b02-9204-d68b7241a1e8',
5634
- label: 'Paperoga',
5635
- typeOfEntity: 'persona'
5636
- },
5637
- count: 2
5638
- },
5639
- {
5640
- entity: {
5641
- id: '9d0e898b-7691-429d-9341-5ccdce50f1ad',
5642
- label: 'Comune di Villasalto',
5643
- typeOfEntity: 'organizzazione'
5644
- },
5645
- count: 2
5646
- },
5647
- {
5648
- entity: {
5649
- id: '9d607a5a-d7f4-440c-9694-642c7234733e',
5650
- label: 'Sassu, Bruno',
5651
- typeOfEntity: 'persona'
5652
- },
5653
- count: 2
5654
- },
5655
- {
5656
- entity: {
5657
- id: '9d6d32ea-cb23-4d63-9ade-523d26d5228f',
5658
- label: 'Silius',
5659
- typeOfEntity: 'luogo'
5660
- },
5661
- count: 2
5662
- },
5663
- {
5664
- entity: {
5665
- id: '9e7133f4-d5b8-4956-8352-f5e8bb631167',
5666
- label: 'Comune di Sorgono',
5667
- typeOfEntity: 'organizzazione'
5668
- },
5669
- count: 2
5670
- },
5671
- {
5672
- entity: {
5673
- id: '9e8c05e9-d61a-4b58-a1ad-a2e55da463c7',
5674
- label: 'Mogorella',
5675
- typeOfEntity: 'luogo'
5676
- },
5677
- count: 2
5678
- },
5679
- {
5680
- entity: {
5681
- id: '9f23de23-9ac3-428f-ae30-4688f80a1ef2',
5682
- label: 'Comune di Genoni',
5683
- typeOfEntity: 'organizzazione'
5684
- },
5685
- count: 2
5686
- },
5687
- {
5688
- entity: {
5689
- id: '9f8c2d1b-8618-4b97-ac80-5bbf6d8daae8',
5690
- label: 'Borore',
5691
- typeOfEntity: 'luogo'
5692
- },
5693
- count: 2
5694
- },
5695
- {
5696
- entity: {
5697
- id: '9fdb1731-1d60-49e9-8c27-0d59562bb2f2',
5698
- label: 'Comune di Escolca',
5699
- typeOfEntity: 'organizzazione'
5700
- },
5701
- count: 2
5702
- },
5703
- {
5704
- entity: {
5705
- id: '9fe3d6b7-b4aa-4fb6-aeb9-3dd71a3fa640',
5706
- label: 'Narcao',
5707
- typeOfEntity: 'luogo'
5708
- },
5709
- count: 2
5710
- },
5711
- {
5712
- entity: {
5713
- id: 'a07f6226-5315-42bf-9886-7a54141a04ad',
5714
- label: 'Comune di Baradili',
5715
- typeOfEntity: 'organizzazione'
5716
- },
5717
- count: 2
5718
- },
5719
- {
5720
- entity: {
5721
- id: 'a1a662ce-a547-44dc-80dd-34f75115789a',
5722
- label: 'Comune di Villagrande',
5723
- typeOfEntity: 'organizzazione'
5724
- },
5725
- count: 2
5726
- },
5727
- {
5728
- entity: {
5729
- id: 'a1bfc6d4-1299-43d3-b9da-e19e3c69c291',
5730
- label: 'Comune di Goni',
5731
- typeOfEntity: 'organizzazione'
5732
- },
5733
- count: 2
5734
- },
5735
- {
5736
- entity: {
5737
- id: 'a3d588ee-019e-48f7-afab-a6f4baf54cf4',
5738
- label: 'Baressa',
5739
- typeOfEntity: 'luogo'
5740
- },
5741
- count: 2
5742
- },
5743
- {
5744
- entity: {
5745
- id: 'a4fb47f5-ac6c-4aca-a483-2b8cfafb6fe4',
5746
- label: 'Baunei',
5747
- typeOfEntity: 'luogo'
5748
- },
5749
- count: 2
5750
- },
5751
- {
5752
- entity: {
5753
- id: 'a5818575-75e0-40ac-bd85-6758f979064e',
5754
- label: 'Ardara',
5755
- typeOfEntity: 'luogo'
5756
- },
5757
- count: 2
5758
- },
5759
- {
5760
- entity: {
5761
- id: 'a6638ef7-e851-4cf8-b3bc-194947caa6bb',
5762
- label: 'Mandas',
5763
- typeOfEntity: 'luogo'
5764
- },
5765
- count: 2
5766
- },
5767
- {
5768
- entity: {
5769
- id: 'a6b44a01-96cd-47f7-859d-ec034efb3fa2',
5770
- label: 'Comune di Guamaggiore',
5771
- typeOfEntity: 'organizzazione'
5772
- },
5773
- count: 2
5774
- },
5775
- {
5776
- entity: {
5777
- id: 'a6b629eb-c317-4b67-9f9a-cf0e383b70a7',
5778
- label: 'Masainas',
5779
- typeOfEntity: 'luogo'
5780
- },
5781
- count: 2
5782
- },
5783
- {
5784
- entity: {
5785
- id: 'a705dfd9-7cf7-400e-a8ba-9bd05c7f19da',
5786
- label: 'Comune di Uras',
5787
- typeOfEntity: 'organizzazione'
5788
- },
5789
- count: 2
5790
- },
5791
- {
5792
- entity: {
5793
- id: 'a86a0bfe-a949-41ed-96f1-1c3ac828d823',
5794
- label: 'Nurri',
5795
- typeOfEntity: 'luogo'
5796
- },
5797
- count: 2
5798
- },
5799
- {
5800
- entity: {
5801
- id: 'a9360535-ba5d-41ba-8595-9715b8650997',
5802
- label: 'Comune di Portoscuso',
5803
- typeOfEntity: 'organizzazione'
5804
- },
5805
- count: 2
5806
- },
5807
- {
5808
- entity: {
5809
- id: 'a9b4332c-d582-4087-9445-358da92fdf01',
5810
- label: 'Serramanna',
5811
- typeOfEntity: 'luogo'
5812
- },
5813
- count: 2
5814
- },
5815
- {
5816
- entity: {
5817
- id: 'aa0740b0-2555-40d2-b44d-ce69a5d3ee85',
5818
- label: 'Comune di Monserrato',
3029
+ id: 'a23c3d15-d6e3-4c36-ab1d-edeb68e33113',
3030
+ label: 'Regione Toscana, Giunta',
5819
3031
  typeOfEntity: 'organizzazione'
5820
3032
  },
5821
- count: 2
5822
- },
5823
- {
5824
- entity: {
5825
- id: 'aa09b418-5a42-45e6-b64b-ff780650ab72',
5826
- label: 'Lanusei',
5827
- typeOfEntity: 'luogo'
5828
- },
5829
- count: 2
3033
+ count: 8
5830
3034
  },
5831
3035
  {
5832
3036
  entity: {
5833
- id: 'aa309230-6e17-4bc8-861f-d292519e2fc9',
5834
- label: 'SNIA Viscosa spa',
5835
- typeOfEntity: 'organizzazione'
3037
+ id: '49d368cd-22ff-4cdf-a9ea-a592cefb7ac9',
3038
+ label: 'Dadamaino',
3039
+ typeOfEntity: 'persona'
5836
3040
  },
5837
- count: 2
3041
+ count: 8
5838
3042
  },
5839
3043
  {
5840
3044
  entity: {
5841
- id: 'aa76cb11-3448-47d1-881a-bb46ec87874e',
5842
- label: 'Ortacesus',
5843
- typeOfEntity: 'luogo'
3045
+ id: '62abc328-a836-4cb2-9581-a2c5541252d9',
3046
+ label: 'Giuliana Einaudi',
3047
+ typeOfEntity: 'persona'
5844
3048
  },
5845
- count: 2
3049
+ count: 8
5846
3050
  },
5847
3051
  {
5848
3052
  entity: {
5849
- id: 'ab760144-a8a0-420b-9e4b-21c9b33bc92d',
5850
- label: 'Villagrande',
5851
- typeOfEntity: 'luogo'
3053
+ id: '8d3fb65a-34ad-4e10-9da1-2f9273912aa2',
3054
+ label: 'Paolo Gallerani',
3055
+ typeOfEntity: 'persona'
5852
3056
  },
5853
- count: 2
3057
+ count: 8
5854
3058
  },
5855
3059
  {
5856
3060
  entity: {
5857
- id: 'ab79eeaa-ca97-483b-bfd3-d2a53abdf44f',
5858
- label: 'Comune di Gadoni',
3061
+ id: '9672ea6c-1f6c-47e3-a295-63e255337fb2',
3062
+ label: 'Cole of California',
5859
3063
  typeOfEntity: 'organizzazione'
5860
3064
  },
5861
- count: 2
5862
- },
5863
- {
5864
- entity: {
5865
- id: 'aca40c2d-bab5-459e-8c8c-b0425cf4ff97',
5866
- label: 'Donori',
5867
- typeOfEntity: 'luogo'
5868
- },
5869
- count: 2
3065
+ count: 6
5870
3066
  },
5871
3067
  {
5872
3068
  entity: {
5873
- id: 'ad1e24d2-954d-4139-b2cf-14290d018944',
5874
- label: 'Comune di Nuoro',
3069
+ id: '3d3cb887-d7e1-4d4c-be63-513178603204',
3070
+ label: 'Cedit',
5875
3071
  typeOfEntity: 'organizzazione'
5876
3072
  },
5877
- count: 2
3073
+ count: 5
5878
3074
  },
5879
3075
  {
5880
3076
  entity: {
5881
- id: 'ada99450-4978-43d8-9cf0-888ca394a2c3',
5882
- label: 'Comune di Maracalagonis',
3077
+ id: '3e0cb860-907b-48cc-9c51-01c7e93484e5',
3078
+ label: 'Maison de Culture, Grenoble',
5883
3079
  typeOfEntity: 'organizzazione'
5884
3080
  },
5885
- count: 2
5886
- },
5887
- {
5888
- entity: {
5889
- id: 'af1a5853-f8e5-4609-8459-3724ac546d96',
5890
- label: 'Bauladu',
5891
- typeOfEntity: 'luogo'
5892
- },
5893
- count: 2
3081
+ count: 5
5894
3082
  },
5895
3083
  {
5896
3084
  entity: {
5897
- id: 'af4c25fb-29e1-409b-a0a0-b281a2fb8a46',
5898
- label: 'Comune di Sini',
3085
+ id: 'fc266b83-c8b6-4fd2-869d-6c9a7dc13335',
3086
+ label: 'Comune di Ravenna',
5899
3087
  typeOfEntity: 'organizzazione'
5900
3088
  },
5901
- count: 2
3089
+ count: 5
5902
3090
  },
5903
3091
  {
5904
3092
  entity: {
5905
- id: 'af8a7989-b676-493f-919c-6e2600cbe409',
5906
- label: 'Zoccheddu, Guido',
3093
+ id: '380efec2-bb1c-4955-ab31-f984ef1cb48c',
3094
+ label: 'Manfredo Massironi',
5907
3095
  typeOfEntity: 'persona'
5908
3096
  },
5909
- count: 2
3097
+ count: 5
5910
3098
  },
5911
3099
  {
5912
3100
  entity: {
5913
- id: 'afc0c1d8-804e-4d51-9fb0-378e179795ec',
5914
- label: 'Piu, Ettore',
3101
+ id: '59ab7d42-3833-4692-815a-7965a9e00eb3',
3102
+ label: 'Ennio Chiggio',
5915
3103
  typeOfEntity: 'persona'
5916
3104
  },
5917
- count: 2
3105
+ count: 5
5918
3106
  },
5919
3107
  {
5920
3108
  entity: {
5921
- id: 'b1179d68-4522-4841-87e7-c04adde87100',
5922
- label: 'Sennariolo',
5923
- typeOfEntity: 'luogo'
3109
+ id: '6bcca125-aa34-424b-8eb3-c2aba625a338',
3110
+ label: 'Gabriele de Vecchi',
3111
+ typeOfEntity: 'persona'
5924
3112
  },
5925
- count: 2
3113
+ count: 5
5926
3114
  },
5927
3115
  {
5928
3116
  entity: {
5929
- id: 'b1a85fe0-c55d-4fdd-8fc2-fd927f9611eb',
5930
- label: 'Tramatza',
5931
- typeOfEntity: 'luogo'
3117
+ id: '70c202ed-bed4-41d1-a861-7f16fb0a2161',
3118
+ label: 'Anna Fasolis',
3119
+ typeOfEntity: 'persona'
5932
3120
  },
5933
- count: 2
3121
+ count: 5
5934
3122
  },
5935
3123
  {
5936
3124
  entity: {
5937
- id: 'b1df6557-0b68-49f6-ad78-351ade4a4283',
5938
- label: 'Comune di Pimentel',
3125
+ id: '58a834b1-727c-43f5-b197-c5b227ebd29d',
3126
+ label: 'Cooperativa Editoriale Studio Forma, Torino',
5939
3127
  typeOfEntity: 'organizzazione'
5940
3128
  },
5941
- count: 2
3129
+ count: 4
5942
3130
  },
5943
3131
  {
5944
3132
  entity: {
5945
- id: 'b21a2105-a1a4-4a52-997c-d0eb9e841d1b',
5946
- label: 'Comune di Fluminimaggiore',
3133
+ id: '5c1150b2-7440-4d49-8bb0-3b9bf57cf5eb',
3134
+ label: 'Edizioni di Comunità',
5947
3135
  typeOfEntity: 'organizzazione'
5948
3136
  },
5949
- count: 2
5950
- },
5951
- {
5952
- entity: {
5953
- id: 'b27d2cfe-bbcb-427b-9458-1c4de87ccba5',
5954
- label: 'Triei',
5955
- typeOfEntity: 'luogo'
5956
- },
5957
- count: 2
3137
+ count: 4
5958
3138
  },
5959
3139
  {
5960
3140
  entity: {
5961
- id: 'b2c2ed66-3b80-46e3-81f8-55394dbc2760',
5962
- label: 'Comune di Assemini',
3141
+ id: '23515a44-e395-4457-9163-8b5b62b5f63e',
3142
+ label: 'Scuola Umanitaria, Milano',
5963
3143
  typeOfEntity: 'organizzazione'
5964
3144
  },
5965
- count: 2
3145
+ count: 3
5966
3146
  },
5967
3147
  {
5968
3148
  entity: {
5969
- id: 'b3e831ed-4064-4c78-a4f4-f0b01ea7a15c',
5970
- label: 'Comune di Monastir',
3149
+ id: '6e01c950-5ff9-492e-8375-a764de5c21f6',
3150
+ label: 'Prodet',
5971
3151
  typeOfEntity: 'organizzazione'
5972
3152
  },
5973
- count: 2
3153
+ count: 3
5974
3154
  },
5975
3155
  {
5976
3156
  entity: {
5977
- id: 'b4be9cee-f383-40f2-9eac-261847452102',
5978
- label: 'Comune di Soleminis',
3157
+ id: 'd313ea90-1a73-4dee-8350-10a57264f5cb',
3158
+ label: 'Bonfanti, Tessitura tappeti',
5979
3159
  typeOfEntity: 'organizzazione'
5980
3160
  },
5981
- count: 2
5982
- },
5983
- {
5984
- entity: {
5985
- id: 'b5c2f911-f3d1-4761-a4c7-df7ad8f18df1',
5986
- label: 'Escolca',
5987
- typeOfEntity: 'luogo'
5988
- },
5989
- count: 2
5990
- },
5991
- {
5992
- entity: {
5993
- id: 'b773fb82-f9bd-4b18-b8ba-3867940ccbe4',
5994
- label: 'Villanova Tulo',
5995
- typeOfEntity: 'luogo'
5996
- },
5997
- count: 2
5998
- },
5999
- {
6000
- entity: {
6001
- id: 'b853e476-b91e-4a92-aa2d-6464b7fef243',
6002
- label: 'Masala, Ignazio',
6003
- typeOfEntity: 'persona'
6004
- },
6005
- count: 2
6006
- },
6007
- {
6008
- entity: {
6009
- id: 'b8bd794e-be3c-473d-a20a-92891c906e9a',
6010
- label: 'Guspini',
6011
- typeOfEntity: 'luogo'
6012
- },
6013
- count: 2
6014
- },
6015
- {
6016
- entity: {
6017
- id: 'b9fbe5e2-d795-46bd-9385-379a34883903',
6018
- label: 'Ussassai',
6019
- typeOfEntity: 'luogo'
6020
- },
6021
- count: 2
3161
+ count: 3
6022
3162
  },
6023
3163
  {
6024
3164
  entity: {
6025
- id: 'ba8a1db4-d153-47e9-adfe-ec78312d6f9d',
6026
- label: 'Comune di Bulzi',
3165
+ id: 'f6de2425-fa3d-47a3-a31a-53394af32fe8',
3166
+ label: 'Simon International',
6027
3167
  typeOfEntity: 'organizzazione'
6028
3168
  },
6029
- count: 2
3169
+ count: 3
6030
3170
  },
6031
3171
  {
6032
3172
  entity: {
6033
- id: 'bad5414c-c10c-47f0-8e21-78abfd48672c',
6034
- label: 'Todde, Annibale',
3173
+ id: '662bb784-7226-41c6-a945-03c7fe8134a9',
3174
+ label: 'Antonia Astori De Ponti',
6035
3175
  typeOfEntity: 'persona'
6036
3176
  },
6037
- count: 2
6038
- },
6039
- {
6040
- entity: {
6041
- id: 'bad919d6-43b7-4aab-98c4-d73661dc9a87',
6042
- label: 'Muravera',
6043
- typeOfEntity: 'luogo'
6044
- },
6045
- count: 2
6046
- },
6047
- {
6048
- entity: {
6049
- id: 'bc09c942-9a28-4880-b86e-9272fb009106',
6050
- label: 'Boroneddu',
6051
- typeOfEntity: 'luogo'
6052
- },
6053
- count: 2
6054
- },
6055
- {
6056
- entity: {
6057
- id: 'bc2465f4-78ad-4ccc-aaaf-f1b0058b3a83',
6058
- label: 'Comune di Guspini',
6059
- typeOfEntity: 'organizzazione'
6060
- },
6061
- count: 2
6062
- },
6063
- {
6064
- entity: {
6065
- id: 'bc758217-9fee-4ae8-82b1-63b57250fdc5',
6066
- label: 'San Gregorio (Sinnai)',
6067
- typeOfEntity: 'luogo'
6068
- },
6069
- count: 2
6070
- },
6071
- {
6072
- entity: {
6073
- id: 'bce109c3-198f-41a9-9b07-03a99805334e',
6074
- label: 'Comune di Donigala Fenughedu',
6075
- typeOfEntity: 'organizzazione'
6076
- },
6077
- count: 2
6078
- },
6079
- {
6080
- entity: {
6081
- id: 'bdc43384-054d-44d8-8c8a-a4219c5c887b',
6082
- label: 'Gergei',
6083
- typeOfEntity: 'luogo'
6084
- },
6085
- count: 2
6086
- },
6087
- {
6088
- entity: {
6089
- id: 'bdd3a1e3-ea44-413e-9cc1-6aded0ac6afc',
6090
- label: 'Goni',
6091
- typeOfEntity: 'luogo'
6092
- },
6093
- count: 2
6094
- },
6095
- {
6096
- entity: {
6097
- id: 'bef0e42e-1628-43f9-b144-4b0d79f37596',
6098
- label: 'Calasetta',
6099
- typeOfEntity: 'luogo'
6100
- },
6101
- count: 2
3177
+ count: 3
6102
3178
  },
6103
3179
  {
6104
3180
  entity: {
6105
- id: 'bf01b065-a198-4729-bfa2-a67298ec3338',
6106
- label: 'Comune di San Basilio',
3181
+ id: '499a8780-76a1-4f86-9e8e-619bf2c9d02d',
3182
+ label: 'Italconsult',
6107
3183
  typeOfEntity: 'organizzazione'
6108
3184
  },
6109
3185
  count: 2
6110
3186
  },
6111
3187
  {
6112
3188
  entity: {
6113
- id: 'bf5d2382-a2ab-4acc-bfad-d81b2d32d355',
6114
- label: 'Garau, Giorgio',
3189
+ id: '24f8a80b-fd61-4679-9f7c-bf65e04c5a5c',
3190
+ label: 'Peppe Di Giuli',
6115
3191
  typeOfEntity: 'persona'
6116
3192
  },
6117
3193
  count: 2
6118
3194
  },
6119
3195
  {
6120
3196
  entity: {
6121
- id: 'c033213e-6eff-4f7e-bbfc-9a690a069ed2',
6122
- label: 'Comune di Mandas',
6123
- typeOfEntity: 'organizzazione'
6124
- },
6125
- count: 2
6126
- },
6127
- {
6128
- entity: {
6129
- id: 'c0703bfd-6219-4482-bbc5-3dbbaae088b9',
6130
- label: 'Cuglieri',
6131
- typeOfEntity: 'luogo'
6132
- },
6133
- count: 2
6134
- },
6135
- {
6136
- entity: {
6137
- id: 'c13c2c23-16a6-499f-a87c-a83dd4ea2a8e',
6138
- label: 'Noragugume',
6139
- typeOfEntity: 'luogo'
6140
- },
6141
- count: 2
6142
- },
6143
- {
6144
- entity: {
6145
- id: 'c21d43bb-f975-4de4-a4f4-7da722746d97',
6146
- label: 'Nughedu Santa Vittoria',
6147
- typeOfEntity: 'luogo'
6148
- },
6149
- count: 2
6150
- },
6151
- {
6152
- entity: {
6153
- id: 'c31ee7b7-1b31-46cd-a171-e5e164f721e0',
6154
- label: 'Aidomaggiore',
6155
- typeOfEntity: 'luogo'
6156
- },
6157
- count: 2
6158
- },
6159
- {
6160
- entity: {
6161
- id: 'c54b69c0-4ccb-4ec9-bdb1-5c459ac72904',
6162
- label: 'Sarroch',
6163
- typeOfEntity: 'luogo'
6164
- },
6165
- count: 2
6166
- },
6167
- {
6168
- entity: {
6169
- id: 'c64825aa-962d-499f-aef2-c0d502094971',
6170
- label: 'Assessorato ai lavori pubblici e trasporti',
3197
+ id: '2e628cd4-9580-43df-b165-4e9dd60c8c50',
3198
+ label: 'Polymer',
6171
3199
  typeOfEntity: 'organizzazione'
6172
3200
  },
6173
- count: 2
6174
- },
6175
- {
6176
- entity: {
6177
- id: 'c6e9f10f-faf0-4418-864f-d1973223ebfd',
6178
- label: 'Pau',
6179
- typeOfEntity: 'luogo'
6180
- },
6181
- count: 2
3201
+ count: 1
6182
3202
  },
6183
3203
  {
6184
3204
  entity: {
6185
- id: 'c8a7e56f-3c7c-45f9-8b49-a9e8f8c2dbc8',
6186
- label: 'Zeddiani',
6187
- typeOfEntity: 'luogo'
3205
+ id: '01883bc3-a22c-4ef5-bf50-0a1a90481ab8',
3206
+ label: 'Enzo Preda',
3207
+ typeOfEntity: 'persona'
6188
3208
  },
6189
- count: 2
3209
+ count: 1
6190
3210
  },
6191
3211
  {
6192
3212
  entity: {
6193
- id: 'c90cf600-bb4f-4a68-a32c-107e20edc4cc',
6194
- label: 'Masala, Antonio Salvatore',
3213
+ id: '48cb0789-6c23-42f5-8959-543f6e6ceac5',
3214
+ label: 'Annamaria Maglienti',
6195
3215
  typeOfEntity: 'persona'
6196
3216
  },
6197
- count: 2
3217
+ count: 1
6198
3218
  },
6199
3219
  {
6200
3220
  entity: {
6201
- id: 'ccc8cc66-689a-42fb-8c02-cd0e22d9d879',
6202
- label: 'Villamar',
6203
- typeOfEntity: 'luogo'
3221
+ id: '7829c979-cc77-4a5c-85b0-3262889b64f2',
3222
+ label: 'Carla Vasio',
3223
+ typeOfEntity: 'persona'
6204
3224
  },
6205
- count: 2
3225
+ count: 1
6206
3226
  }
6207
3227
  ],
6208
3228
  };
@@ -6647,6 +3667,11 @@ const FACET_MOCK = {
6647
3667
  }]
6648
3668
  };
6649
3669
 
3670
+ const FILE_SELECTOR_MOCK = {
3671
+ accept: 'image/*',
3672
+ classes: 'file-selector-wrapper'
3673
+ };
3674
+
6650
3675
  const FOOTER_MOCK = {
6651
3676
  columns: [
6652
3677
  {
@@ -7304,7 +4329,8 @@ const INPUT_TEXT_MOCK = {
7304
4329
  inputPayload: 'search-input',
7305
4330
  enterPayload: 'search-enter',
7306
4331
  iconPayload: 'search-icon',
7307
- classes: 'my-custom-class'
4332
+ classes: 'my-custom-class',
4333
+ autocomplete: 'off',
7308
4334
  // type: 'number',
7309
4335
  // min: 10,
7310
4336
  // max: 20,
@@ -8391,5 +5417,5 @@ const WIZARD_MOCK = {
8391
5417
  * Generated bundle index. Do not edit.
8392
5418
  */
8393
5419
 
8394
- export { ADVANCED_AUTOCOMPLETE_MOCK, ALERT_MOCK, AVATAR_MOCK, AdvancedAutocompleteComponent, AlertComponent, AnchorWrapperComponent, AvatarComponent, BREADCRUMBS_MOCK, BUBBLECHART_MOCK, BUTTON_MOCK, BreadcrumbsComponent, BubbleChartComponent, ButtonComponent, CAROUSEL_MOCK, CHART_MOCK, CONTENT_PLACEHOLDER_MOCK, CarouselComponent, ChartComponent, ContentPlaceholderComponent, DATA_WIDGET_MOCK, DATEPICKER_MOCK, DataWidgetComponent, DatepickerComponent, DvComponentsLibModule, FACET_HEADER_MOCK, FACET_MOCK, FACET_YEAR_RANGE_MOCK, FOOTER_MOCK, FacetComponent, FacetHeaderComponent, FacetYearRangeComponent, FooterComponent, HEADER_MOCK, HERO_MOCK, HISTOGRAM_RANGE_MOCK, HeaderComponent, HeroComponent, HistogramRangeComponent, ICON_MOCK, IMAGE_VIEWER_MOCK, IMAGE_VIEWER_TOOLS_MOCK, INNER_TITLE_MOCK, INPUT_CHECKBOX_MOCK, INPUT_LINK_MOCK, INPUT_SELECT_MOCK, INPUT_TEXTAREA_MOCK, INPUT_TEXT_MOCK, ITEM_PREVIEW_MOCK, IconComponent, ImageViewerComponent, ImageViewerToolsComponent, InnerTitleComponent, InputCheckboxComponent, InputLinkComponent, InputSelectComponent, InputTextComponent, InputTextareaComponent, ItemPreviewComponent, LOADER_MOCK, LoaderComponent, MAP_MOCK, METADATA_VIEWER_MOCK, MapComponent, MetadataViewerComponent, NAV_MOCK, NavComponent, PAGINATION_MOCK, PROGRESS_LINE_MOCK, PaginationComponent, ProgressLineComponent, SIDEBAR_HEADER_MOCK, SIGNUP_MOCK, SIMPLE_AUTOCOMPLETE_MOCK, SidebarHeaderComponent, SignupComponent, SimpleAutocompleteComponent, TABLE_MOCK, TAG_MOCK, TEXT_VIEWER_MOCK, TIMELINE_MOCK, TOAST_MOCK, TOOLTIP_CONTENT_MOCK, TREE_MOCK, TableComponent, TagComponent, TextViewerComponent, TimelineComponent, ToastComponent, TooltipContentComponent, TreeComponent, WIZARD_MOCK, WizardComponent };
5420
+ export { ADVANCED_AUTOCOMPLETE_MOCK, ALERT_MOCK, AVATAR_MOCK, AdvancedAutocompleteComponent, AlertComponent, AnchorWrapperComponent, AvatarComponent, BREADCRUMBS_MOCK, BUBBLECHART_MOCK, BUTTON_MOCK, BreadcrumbsComponent, BubbleChartComponent, ButtonComponent, CAROUSEL_MOCK, CHART_MOCK, CONTENT_PLACEHOLDER_MOCK, CarouselComponent, ChartComponent, ContentPlaceholderComponent, DATA_WIDGET_MOCK, DATEPICKER_MOCK, DataWidgetComponent, DatepickerComponent, DvComponentsLibModule, FACET_HEADER_MOCK, FACET_MOCK, FACET_YEAR_RANGE_MOCK, FILE_SELECTOR_MOCK, FOOTER_MOCK, FacetComponent, FacetHeaderComponent, FacetYearRangeComponent, FileSelectorComponent, FooterComponent, HEADER_MOCK, HERO_MOCK, HISTOGRAM_RANGE_MOCK, HeaderComponent, HeroComponent, HistogramRangeComponent, ICON_MOCK, IMAGE_VIEWER_MOCK, IMAGE_VIEWER_TOOLS_MOCK, INNER_TITLE_MOCK, INPUT_CHECKBOX_MOCK, INPUT_LINK_MOCK, INPUT_SELECT_MOCK, INPUT_TEXTAREA_MOCK, INPUT_TEXT_MOCK, ITEM_PREVIEW_MOCK, IconComponent, ImageViewerComponent, ImageViewerToolsComponent, InnerTitleComponent, InputCheckboxComponent, InputLinkComponent, InputSelectComponent, InputTextComponent, InputTextareaComponent, ItemPreviewComponent, LOADER_MOCK, LoaderComponent, MAP_MOCK, METADATA_VIEWER_MOCK, MapComponent, MetadataViewerComponent, NAV_MOCK, NavComponent, PAGINATION_MOCK, PROGRESS_LINE_MOCK, PaginationComponent, ProgressLineComponent, SIDEBAR_HEADER_MOCK, SIGNUP_MOCK, SIMPLE_AUTOCOMPLETE_MOCK, SidebarHeaderComponent, SignupComponent, SimpleAutocompleteComponent, TABLE_MOCK, TAG_MOCK, TEXT_VIEWER_MOCK, TIMELINE_MOCK, TOAST_MOCK, TOOLTIP_CONTENT_MOCK, TREE_MOCK, TableComponent, TagComponent, TextViewerComponent, TimelineComponent, ToastComponent, TooltipContentComponent, TreeComponent, WIZARD_MOCK, WizardComponent };
8395
5421
  //# sourceMappingURL=net7-components.mjs.map