@net7/components 4.0.0 → 4.0.1

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