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