Browse Source

initial commit

les 2 years ago
commit
40b896d944
4 changed files with 56912 additions and 0 deletions
  1. 51 0
      indy.py
  2. 7 0
      json_sorter.js
  3. 28427 0
      luglio_2001-bot.json
  4. 28427 0
      sorted.json

+ 51 - 0
indy.py

@@ -0,0 +1,51 @@
+from mastodon import Mastodon
+from datetime import datetime
+import requests
+import pause
+import json
+
+data = json.load(open('sorted.json'))
+
+#   Set up Mastodon
+mastodon = Mastodon(
+    api_base_url = 'https://mastodon.cisti.org',
+    access_token = 'token.secret'
+)
+
+for post in data:
+
+  # add 20 years
+  dt = datetime.fromisoformat(post['created'])
+  dt = dt.replace(year=2021)
+
+  # skip past post
+  if dt < datetime.now():
+    print("Skip ", post['heading'], dt)
+    continue
+
+  # wait for the next post
+  print("Next post at: ", dt, post['heading'])
+  pause.until(dt)
+
+  # FINAL URL
+  url = "https://italy.indymedia.org/posts/"+post['hugo']
+  out = post['created'] +"\n\n"+post['heading']+"\n\n"
+
+  # CHECK MEDIA LINK
+  media_id = False
+  if post['linked_file']:
+    # MEDIA LINK URL
+    linkurl = "https://italy.indymedia.org/uploads/"
+    # IMAGES ONLY
+    if post['linked_file'].lower().find('jpg') >= 0 or \
+        post['linked_file'].lower().find('jpeg') >= 0 or \
+        post['linked_file'].lower().find('gif') >= 0:
+          response = requests.get("https://italy.indymedia.org/uploads/" + post['linked_file'])
+          with open('./tmp', 'wb') as f:
+            f.write(response.content)
+          media_id = mastodon.media_post('./tmp')
+
+  media_ids = [media_id] if media_id else []
+  out += 'LEGGI IL POST: '+url
+  print(out)
+  mastodon.status_post(out, visibility='private', media_ids=media_ids)

+ 7 - 0
json_sorter.js

@@ -0,0 +1,7 @@
+const a = require('./luglio_2001-bot.json')
+const dayjs = require('dayjs')
+const fs = require('fs')
+
+const r = a.sort((a,b) => dayjs(`${a.date} ${a.time}`)-dayjs(`${b.date} ${b.time}`) )
+fs.writeFileSync('./sorted.json', JSON.stringify(r, null, 2))
+

+ 28427 - 0
luglio_2001-bot.json

@@ -0,0 +1,28427 @@
+[
+  {
+    "id": 10016,
+    "heading": "Call for volunteers for Genoa Oct20-21",
+    "created": "2001-07-30 20:52:50",
+    "linked_file": "2001/07/volunteer1rydoi.html",
+    "hugo": "10016-call-for-volunteers-for-genoa-oct2021",
+    "date": "2001-07-30",
+    "time": "20:52:50",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "20",
+    "minute": "52",
+    "second": "50"
+  },
+  {
+    "id": 10018,
+    "heading": "un sito per approfondire",
+    "created": "2001-07-29 14:13:32",
+    "linked_file": null,
+    "hugo": "10018-un-sito-per-approfondire",
+    "date": "2001-07-29",
+    "time": "14:13:32",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "13",
+    "second": "32"
+  },
+  {
+    "id": 10024,
+    "heading": "VENERDI 20 LUGLIO..IL RISVEGLIO",
+    "created": "2001-07-29 16:52:35",
+    "linked_file": null,
+    "hugo": "10024-venerdi-20-luglioil-risveglio",
+    "date": "2001-07-29",
+    "time": "16:52:35",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "52",
+    "second": "35"
+  },
+  {
+    "id": 10040,
+    "heading": "Governo italiano sotto pressione (dalla taz di oggi) (tedesco)",
+    "created": "2001-07-29 12:35:21",
+    "linked_file": null,
+    "hugo": "10040-governo-italiano-sotto-pressione-dalla-taz-di-oggi-tedesco",
+    "date": "2001-07-29",
+    "time": "12:35:21",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "35",
+    "second": "21"
+  },
+  {
+    "id": 10057,
+    "heading": "fuck_police",
+    "created": "2001-07-31 16:10:52",
+    "linked_file": "2001/07/fuck_police.jpg",
+    "hugo": "10057-fuckpolice",
+    "date": "2001-07-31",
+    "time": "16:10:52",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "16",
+    "minute": "10",
+    "second": "52"
+  },
+  {
+    "id": 10059,
+    "heading": "drop_the_debt",
+    "created": "2001-07-29 13:24:17",
+    "linked_file": "2001/07/dropthedebt.jpg",
+    "hugo": "10059-dropthedebt",
+    "date": "2001-07-29",
+    "time": "13:24:17",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "24",
+    "second": "17"
+  },
+  {
+    "id": 10061,
+    "heading": "Genoa Prisoner Update",
+    "created": "2001-07-29 13:39:05",
+    "linked_file": null,
+    "hugo": "10061-genoa-prisoner-update",
+    "date": "2001-07-29",
+    "time": "13:39:05",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "39",
+    "second": "05"
+  },
+  {
+    "id": 10070,
+    "heading": "Un appello / An appeal",
+    "created": "2001-07-29 15:03:55",
+    "linked_file": null,
+    "hugo": "10070-un-appello-an-appeal",
+    "date": "2001-07-29",
+    "time": "15:03:55",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "03",
+    "second": "55"
+  },
+  {
+    "id": 10072,
+    "heading": "Urgente x Firenze...",
+    "created": "2001-07-29 15:34:47",
+    "linked_file": null,
+    "hugo": "10072-urgente-x-firenze",
+    "date": "2001-07-29",
+    "time": "15:34:47",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "34",
+    "second": "47"
+  },
+  {
+    "id": 10073,
+    "heading": "c'é da spostare una macchina!",
+    "created": "2001-07-29 14:10:01",
+    "linked_file": "2001/07/pula.jpg",
+    "hugo": "10073-ce-da-spostare-una-macchina",
+    "date": "2001-07-29",
+    "time": "14:10:01",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "10",
+    "second": "01"
+  },
+  {
+    "id": 10074,
+    "heading": "IMC NEWS BLAST | Monday, July 23, 2001 [it/en]",
+    "created": "2001-07-29 14:11:47",
+    "linked_file": null,
+    "hugo": "10074-imc-news-blast-monday-july-23-2001-iten",
+    "date": "2001-07-29",
+    "time": "14:11:47",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "11",
+    "second": "47"
+  },
+  {
+    "id": 10082,
+    "heading": "la verità sulle torture sta finalmente emergendo (dall'observer di oggi)(en)",
+    "created": "2001-07-29 14:44:03",
+    "linked_file": null,
+    "hugo": "10082-la-verita-sulle-torture-sta-finalmente-emergendo-dallobserver-di-oggien",
+    "date": "2001-07-29",
+    "time": "14:44:03",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "44",
+    "second": "03"
+  },
+  {
+    "id": 10083,
+    "heading": "ANCHE LA CHIESA CONDANNA LE VIOLENZE E CHIEDE INDAGINE",
+    "created": "2001-07-30 04:06:52",
+    "linked_file": null,
+    "hugo": "10083-anche-la-chiesa-condanna-le-violenze-e-chiede-indagine",
+    "date": "2001-07-30",
+    "time": "04:06:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "06",
+    "second": "52"
+  },
+  {
+    "id": 10086,
+    "heading": "Articolo della giornalista di Junge Welt  tenuta in carcere per 4 giorni (ted)",
+    "created": "2001-07-29 17:30:16",
+    "linked_file": null,
+    "hugo": "10086-articolo-della-giornalista-di-junge-welt-tenuta-in-carcere-per-4-giorni-ted",
+    "date": "2001-07-29",
+    "time": "17:30:16",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "30",
+    "second": "16"
+  },
+  {
+    "id": 10092,
+    "heading": "E' inutile colpire il cuore dello Stato.Lo stato non ha un cuore: ha solo un por",
+    "created": "2001-07-30 08:36:28",
+    "linked_file": null,
+    "hugo": "10092-e-inutile-colpire-il-cuore-dello-statolo-stato-non-ha-un-cuore-ha-solo-un-por",
+    "date": "2001-07-30",
+    "time": "08:36:28",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "36",
+    "second": "28"
+  },
+  {
+    "id": 10097,
+    "heading": "Roberto Colaninno",
+    "created": "2001-07-30 09:11:57",
+    "linked_file": null,
+    "hugo": "10097-roberto-colaninno",
+    "date": "2001-07-30",
+    "time": "09:11:57",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "11",
+    "second": "57"
+  },
+  {
+    "id": 10098,
+    "heading": "PRESIDIO AD ALESSANDRIA",
+    "created": "2001-07-29 16:42:37",
+    "linked_file": null,
+    "hugo": "10098-presidio-ad-alessandria",
+    "date": "2001-07-29",
+    "time": "16:42:37",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "42",
+    "second": "37"
+  },
+  {
+    "id": 10099,
+    "heading": "manifesto presidio",
+    "created": "2001-07-29 16:31:04",
+    "linked_file": "2001/07/presidio.jpg",
+    "hugo": "10099-manifesto-presidio",
+    "date": "2001-07-29",
+    "time": "16:31:04",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "31",
+    "second": "04"
+  },
+  {
+    "id": 10104,
+    "heading": "POLIZIOTTI IN RIUNIONE DI PROTESTA IL 30-07-2001 A FIRENZE CON Alleanza NazionaN",
+    "created": "2001-07-29 16:30:14",
+    "linked_file": null,
+    "hugo": "10104-poliziotti-in-riunione-di-protesta-il-30072001-a-firenze-con-alleanza-nazionan",
+    "date": "2001-07-29",
+    "time": "16:30:14",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "30",
+    "second": "14"
+  },
+  {
+    "id": 10105,
+    "heading": "Censura",
+    "created": "2001-07-29 16:35:15",
+    "linked_file": null,
+    "hugo": "10105-censura",
+    "date": "2001-07-29",
+    "time": "16:35:15",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "35",
+    "second": "15"
+  },
+  {
+    "id": 10109,
+    "heading": "GENOVA PER NOI",
+    "created": "2001-07-29 16:09:25",
+    "linked_file": null,
+    "hugo": "10109-genova-per-noi",
+    "date": "2001-07-29",
+    "time": "16:09:25",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "09",
+    "second": "25"
+  },
+  {
+    "id": 10113,
+    "heading": "Radio sherwood introvabile",
+    "created": "2001-07-30 16:28:33",
+    "linked_file": null,
+    "hugo": "10113-radio-sherwood-introvabile",
+    "date": "2001-07-30",
+    "time": "16:28:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "28",
+    "second": "33"
+  },
+  {
+    "id": 10124,
+    "heading": "L'ORA  - UNA SERIE DI IMMAGINI MOSTRA IMPORTANTI PARTICOLARI SULL' OMICIDIO",
+    "created": "2001-07-29 18:04:13",
+    "linked_file": "2001/07/ora1vjubc7.pdf",
+    "hugo": "10124-lora-una-serie-di-immagini-mostra-importanti-particolari-sull-omicidio",
+    "date": "2001-07-29",
+    "time": "18:04:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "04",
+    "second": "13"
+  },
+  {
+    "id": 10131,
+    "heading": "Traduzione articolo  della giornalista Kirsten Wagenschein",
+    "created": "2001-07-29 17:48:33",
+    "linked_file": null,
+    "hugo": "10131-traduzione-articolo-della-giornalista-kirsten-wagenschein",
+    "date": "2001-07-29",
+    "time": "17:48:33",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "48",
+    "second": "33"
+  },
+  {
+    "id": 10132,
+    "heading": "ci picchiavano senza pietà",
+    "created": "2001-07-29 18:16:26",
+    "linked_file": null,
+    "hugo": "10132-ci-picchiavano-senza-pieta",
+    "date": "2001-07-29",
+    "time": "18:16:26",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "16",
+    "second": "26"
+  },
+  {
+    "id": 10134,
+    "heading": "Night of Chile",
+    "created": "2001-07-29 17:14:56",
+    "linked_file": null,
+    "hugo": "10134-night-of-chile",
+    "date": "2001-07-29",
+    "time": "17:14:56",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "14",
+    "second": "56"
+  },
+  {
+    "id": 10137,
+    "heading": "SI, MA... GLI \"INTELLETTUALI\" DOVE SONO?",
+    "created": "2001-07-30 03:44:44",
+    "linked_file": null,
+    "hugo": "10137-si-ma-gli-intellettuali-dove-sono",
+    "date": "2001-07-30",
+    "time": "03:44:44",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "44",
+    "second": "44"
+  },
+  {
+    "id": 10138,
+    "heading": "L'ignoranza",
+    "created": "2001-07-29 23:57:23",
+    "linked_file": null,
+    "hugo": "10138-lignoranza",
+    "date": "2001-07-29",
+    "time": "23:57:23",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "23",
+    "minute": "57",
+    "second": "23"
+  },
+  {
+    "id": 10139,
+    "heading": "Indignazione",
+    "created": "2001-07-29 18:01:26",
+    "linked_file": null,
+    "hugo": "10139-indignazione",
+    "date": "2001-07-29",
+    "time": "18:01:26",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "01",
+    "second": "26"
+  },
+  {
+    "id": 10146,
+    "heading": "Britons among 18 missing in Genoa",
+    "created": "2001-07-29 17:49:13",
+    "linked_file": null,
+    "hugo": "10146-britons-among-18-missing-in-genoa",
+    "date": "2001-07-29",
+    "time": "17:49:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "49",
+    "second": "13"
+  },
+  {
+    "id": 10150,
+    "heading": "CONSIGLIO",
+    "created": "2001-07-30 09:08:14",
+    "linked_file": null,
+    "hugo": "10150-consiglio",
+    "date": "2001-07-30",
+    "time": "09:08:14",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "08",
+    "second": "14"
+  },
+  {
+    "id": 10151,
+    "heading": "Indignazione",
+    "created": "2001-07-30 04:08:49",
+    "linked_file": null,
+    "hugo": "10151-indignazione",
+    "date": "2001-07-30",
+    "time": "04:08:49",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "08",
+    "second": "49"
+  },
+  {
+    "id": 10156,
+    "heading": "sui ragazzi scomparsi",
+    "created": "2001-07-30 06:37:53",
+    "linked_file": null,
+    "hugo": "10156-sui-ragazzi-scomparsi",
+    "date": "2001-07-30",
+    "time": "06:37:53",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "37",
+    "second": "53"
+  },
+  {
+    "id": 10160,
+    "heading": "Italy in the dock, Our Government stands accused, too",
+    "created": "2001-07-30 09:41:56",
+    "linked_file": null,
+    "hugo": "10160-italy-in-the-dock-our-government-stands-accused-too",
+    "date": "2001-07-30",
+    "time": "09:41:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "41",
+    "second": "56"
+  },
+  {
+    "id": 10162,
+    "heading": "Farnetico?",
+    "created": "2001-07-30 03:30:17",
+    "linked_file": null,
+    "hugo": "10162-farnetico",
+    "date": "2001-07-30",
+    "time": "03:30:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "30",
+    "second": "17"
+  },
+  {
+    "id": 10172,
+    "heading": "Anarchia",
+    "created": "2001-07-30 04:22:30",
+    "linked_file": null,
+    "hugo": "10172-anarchia",
+    "date": "2001-07-30",
+    "time": "04:22:30",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "22",
+    "second": "30"
+  },
+  {
+    "id": 10183,
+    "heading": "IMC NEWS BLAST |  GENOA LEGAL AND HUMAN RIGHTS ISSUES",
+    "created": "2001-07-30 07:05:27",
+    "linked_file": null,
+    "hugo": "10183-imc-news-blast-genoa-legal-and-human-rights-issues",
+    "date": "2001-07-30",
+    "time": "07:05:27",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "05",
+    "second": "27"
+  },
+  {
+    "id": 10190,
+    "heading": "tr, fr,en, it ...) ainfos genoa info",
+    "created": "2001-07-29 20:57:51",
+    "linked_file": null,
+    "hugo": "10190-tr-fren-it-ainfos-genoa-info",
+    "date": "2001-07-29",
+    "time": "20:57:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "20",
+    "minute": "57",
+    "second": "51"
+  },
+  {
+    "id": 10205,
+    "heading": "weekend al buio",
+    "created": "2001-07-30 04:41:47",
+    "linked_file": null,
+    "hugo": "10205-weekend-al-buio",
+    "date": "2001-07-30",
+    "time": "04:41:47",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "41",
+    "second": "47"
+  },
+  {
+    "id": 10208,
+    "heading": "Cervelli in vacanza",
+    "created": "2001-07-30 03:05:04",
+    "linked_file": null,
+    "hugo": "10208-cervelli-in-vacanza",
+    "date": "2001-07-30",
+    "time": "03:05:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "05",
+    "second": "04"
+  },
+  {
+    "id": 10214,
+    "heading": "ATTENZIONE: PER LA DIFFUSIONE DEL LIBRO BIANCO SUI FATTI DI GENOVA",
+    "created": "2001-07-30 04:57:25",
+    "linked_file": null,
+    "hugo": "10214-attenzione-per-la-diffusione-del-libro-bianco-sui-fatti-di-genova",
+    "date": "2001-07-30",
+    "time": "04:57:25",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "57",
+    "second": "25"
+  },
+  {
+    "id": 10218,
+    "heading": "E' inutile colpire il cuore dello Stato",
+    "created": "2001-07-30 03:09:35",
+    "linked_file": null,
+    "hugo": "10218-e-inutile-colpire-il-cuore-dello-stato",
+    "date": "2001-07-30",
+    "time": "03:09:35",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "09",
+    "second": "35"
+  },
+  {
+    "id": 10221,
+    "heading": "S-Top hopping!",
+    "created": "2001-07-30 02:35:24",
+    "linked_file": null,
+    "hugo": "10221-stop-hopping",
+    "date": "2001-07-30",
+    "time": "02:35:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "02",
+    "minute": "35",
+    "second": "24"
+  },
+  {
+    "id": 10224,
+    "heading": "Los Angeles, July 21",
+    "created": "2001-07-30 02:35:44",
+    "linked_file": "2001/07/in-italian.jpg",
+    "hugo": "10224-los-angeles-july-21",
+    "date": "2001-07-30",
+    "time": "02:35:44",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "02",
+    "minute": "35",
+    "second": "44"
+  },
+  {
+    "id": 10232,
+    "heading": "La sinistra abbandoni il parlamento....",
+    "created": "2001-07-30 07:41:05",
+    "linked_file": null,
+    "hugo": "10232-la-sinistra-abbandoni-il-parlamento",
+    "date": "2001-07-30",
+    "time": "07:41:05",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "41",
+    "second": "05"
+  },
+  {
+    "id": 10235,
+    "heading": "Verità su Carlo x Carlo",
+    "created": "2001-07-30 07:55:52",
+    "linked_file": null,
+    "hugo": "10235-verita-su-carlo-x-carlo",
+    "date": "2001-07-30",
+    "time": "07:55:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "55",
+    "second": "52"
+  },
+  {
+    "id": 10244,
+    "heading": "chi è?",
+    "created": "2001-07-30 08:02:38",
+    "linked_file": null,
+    "hugo": "10244-chi-e",
+    "date": "2001-07-30",
+    "time": "08:02:38",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "02",
+    "second": "38"
+  },
+  {
+    "id": 10254,
+    "heading": "Looking for Legal Updates on Genoa",
+    "created": "2001-07-30 03:33:40",
+    "linked_file": "2001/07/legalindex.html",
+    "hugo": "10254-looking-for-legal-updates-on-genoa",
+    "date": "2001-07-30",
+    "time": "03:33:40",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "33",
+    "second": "40"
+  },
+  {
+    "id": 10260,
+    "heading": "l'estintore",
+    "created": "2001-07-30 07:53:18",
+    "linked_file": null,
+    "hugo": "10260-lestintore",
+    "date": "2001-07-30",
+    "time": "07:53:18",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "53",
+    "second": "18"
+  },
+  {
+    "id": 10261,
+    "heading": "MISTERI DI ITALIA - INTERESSANTE",
+    "created": "2001-07-30 06:54:17",
+    "linked_file": null,
+    "hugo": "10261-misteri-di-italia-interessante",
+    "date": "2001-07-30",
+    "time": "06:54:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "54",
+    "second": "17"
+  },
+  {
+    "id": 10266,
+    "heading": "Ulivo e Polo",
+    "created": "2001-07-30 08:36:29",
+    "linked_file": null,
+    "hugo": "10266-ulivo-e-polo",
+    "date": "2001-07-30",
+    "time": "08:36:29",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "36",
+    "second": "29"
+  },
+  {
+    "id": 10267,
+    "heading": "SIlenzio....",
+    "created": "2001-07-30 07:28:42",
+    "linked_file": null,
+    "hugo": "10267-silenzio",
+    "date": "2001-07-30",
+    "time": "07:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 10272,
+    "heading": "Berlusconi: \"Sinistra masochista io sto con la polizia\"",
+    "created": "2001-07-30 04:44:33",
+    "linked_file": null,
+    "hugo": "10272-berlusconi-sinistra-masochista-io-sto-con-la-polizia",
+    "date": "2001-07-30",
+    "time": "04:44:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "44",
+    "second": "33"
+  },
+  {
+    "id": 10276,
+    "heading": "\"Sinistra masochista io sto con la polizia\"",
+    "created": "2001-07-30 05:11:04",
+    "linked_file": null,
+    "hugo": "10276-sinistra-masochista-io-sto-con-la-polizia",
+    "date": "2001-07-30",
+    "time": "05:11:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "11",
+    "second": "04"
+  },
+  {
+    "id": 10285,
+    "heading": "Perquisizioni a Salerno",
+    "created": "2001-07-30 05:52:54",
+    "linked_file": null,
+    "hugo": "10285-perquisizioni-a-salerno",
+    "date": "2001-07-30",
+    "time": "05:52:54",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "52",
+    "second": "54"
+  },
+  {
+    "id": 10286,
+    "heading": "Rapporto Genova a Scajola agenti-Gsf, confronto dai pm",
+    "created": "2001-07-30 05:29:52",
+    "linked_file": null,
+    "hugo": "10286-rapporto-genova-a-scajola-agentigsf-confronto-dai-pm",
+    "date": "2001-07-30",
+    "time": "05:29:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "29",
+    "second": "52"
+  },
+  {
+    "id": 10287,
+    "heading": "Il figlio del capo della polizia(De Gennaro) operatore RAI a Genova",
+    "created": "2001-07-30 08:49:04",
+    "linked_file": null,
+    "hugo": "10287-il-figlio-del-capo-della-poliziade-gennaro-operatore-rai-a-genova",
+    "date": "2001-07-30",
+    "time": "08:49:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "49",
+    "second": "04"
+  },
+  {
+    "id": 10293,
+    "heading": "a trieste è già cominciata la persecuzione",
+    "created": "2001-07-30 06:37:00",
+    "linked_file": null,
+    "hugo": "10293-a-trieste-e-gia-cominciata-la-persecuzione",
+    "date": "2001-07-30",
+    "time": "06:37:00",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "37",
+    "second": "00"
+  },
+  {
+    "id": 10299,
+    "heading": "Genoa revisted",
+    "created": "2001-07-30 12:12:51",
+    "linked_file": null,
+    "hugo": "10299-genoa-revisted",
+    "date": "2001-07-30",
+    "time": "12:12:51",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "12",
+    "second": "51"
+  },
+  {
+    "id": 10306,
+    "heading": "Città + sicure",
+    "created": "2001-07-30 14:24:53",
+    "linked_file": "2001/07/pi_sicure01.jpg",
+    "hugo": "10306-citta-+-sicure",
+    "date": "2001-07-30",
+    "time": "14:24:53",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "24",
+    "second": "53"
+  },
+  {
+    "id": 10308,
+    "heading": "Italy investigates allegations of police brutality against protesters in Genoa",
+    "created": "2001-07-30 06:27:31",
+    "linked_file": null,
+    "hugo": "10308-italy-investigates-allegations-of-police-brutality-against-protesters-in-genoa",
+    "date": "2001-07-30",
+    "time": "06:27:31",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "27",
+    "second": "31"
+  },
+  {
+    "id": 10309,
+    "heading": "Perché nio?",
+    "created": "2001-07-30 07:35:06",
+    "linked_file": null,
+    "hugo": "10309-perche-nio",
+    "date": "2001-07-30",
+    "time": "07:35:06",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "35",
+    "second": "06"
+  },
+  {
+    "id": 10320,
+    "heading": "I nostri nemici",
+    "created": "2001-07-30 06:43:54",
+    "linked_file": null,
+    "hugo": "10320-i-nostri-nemici",
+    "date": "2001-07-30",
+    "time": "06:43:54",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "43",
+    "second": "54"
+  },
+  {
+    "id": 10324,
+    "heading": "i peggiori",
+    "created": "2001-07-30 12:09:45",
+    "linked_file": null,
+    "hugo": "10324-i-peggiori",
+    "date": "2001-07-30",
+    "time": "12:09:45",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "09",
+    "second": "45"
+  },
+  {
+    "id": 10332,
+    "heading": "Consiglio da Compagno!",
+    "created": "2001-07-30 09:37:33",
+    "linked_file": null,
+    "hugo": "10332-consiglio-da-compagno",
+    "date": "2001-07-30",
+    "time": "09:37:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "37",
+    "second": "33"
+  },
+  {
+    "id": 10342,
+    "heading": "Massive Attack",
+    "created": "2001-07-30 07:33:42",
+    "linked_file": null,
+    "hugo": "10342-massive-attack",
+    "date": "2001-07-30",
+    "time": "07:33:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "33",
+    "second": "42"
+  },
+  {
+    "id": 10347,
+    "heading": "welcome to G Hate",
+    "created": "2001-07-30 09:42:28",
+    "linked_file": null,
+    "hugo": "10347-welcome-to-g-hate",
+    "date": "2001-07-30",
+    "time": "09:42:28",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "42",
+    "second": "28"
+  },
+  {
+    "id": 10348,
+    "heading": "my Genoa Report J13-22",
+    "created": "2001-07-30 06:52:49",
+    "linked_file": null,
+    "hugo": "10348-my-genoa-report-j1322",
+    "date": "2001-07-30",
+    "time": "06:52:49",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "52",
+    "second": "49"
+  },
+  {
+    "id": 10353,
+    "heading": "Attacco di pirati nella notte di domenica:",
+    "created": "2001-07-30 19:54:32",
+    "linked_file": null,
+    "hugo": "10353-attacco-di-pirati-nella-notte-di-domenica",
+    "date": "2001-07-30",
+    "time": "19:54:32",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "19",
+    "minute": "54",
+    "second": "32"
+  },
+  {
+    "id": 10354,
+    "heading": "I NOMI DEI 70 POLIZIOTTI-MASSACRATORI DI GENOVA ALLA DIAZ LI HA IL PROCURATORE",
+    "created": "2001-07-30 07:00:46",
+    "linked_file": null,
+    "hugo": "10354-i-nomi-dei-70-poliziottimassacratori-di-genova-alla-diaz-li-ha-il-procuratore",
+    "date": "2001-07-30",
+    "time": "07:00:46",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "00",
+    "second": "46"
+  },
+  {
+    "id": 10356,
+    "heading": "I NOMI DEI 70 POLIZIOTTI-MASSACRATORI DI GENOVA ALLA DIAZ LI HA IL PROCURATORE",
+    "created": "2001-07-30 07:44:01",
+    "linked_file": null,
+    "hugo": "10356-i-nomi-dei-70-poliziottimassacratori-di-genova-alla-diaz-li-ha-il-procuratore",
+    "date": "2001-07-30",
+    "time": "07:44:01",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "44",
+    "second": "01"
+  },
+  {
+    "id": 10357,
+    "heading": "Ribadisco:l'orario della \"perquisizione\" alla Diaz, non torna!!",
+    "created": "2001-07-31 06:11:59",
+    "linked_file": "2001/07/orariostrano_22anzich_00_.gif",
+    "hugo": "10357-ribadiscolorario-della-perquisizione-alla-diaz-non-torna",
+    "date": "2001-07-31",
+    "time": "06:11:59",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "11",
+    "second": "59"
+  },
+  {
+    "id": 10362,
+    "heading": "super-violenti",
+    "created": "2001-07-30 09:22:55",
+    "linked_file": null,
+    "hugo": "10362-superviolenti",
+    "date": "2001-07-30",
+    "time": "09:22:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "22",
+    "second": "55"
+  },
+  {
+    "id": 10373,
+    "heading": "carabinieri ? bravi ragazzi!!! gestori dell'ordine e portatori di pace",
+    "created": "2001-07-30 10:06:49",
+    "linked_file": null,
+    "hugo": "10373-carabinieri-bravi-ragazzi-gestori-dellordine-e-portatori-di-pace",
+    "date": "2001-07-30",
+    "time": "10:06:49",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "06",
+    "second": "49"
+  },
+  {
+    "id": 10381,
+    "heading": "Sequenza uscita estintore",
+    "created": "2001-07-30 15:10:34",
+    "linked_file": "2001/07/uscita_estintore.jpg",
+    "hugo": "10381-sequenza-uscita-estintore",
+    "date": "2001-07-30",
+    "time": "15:10:34",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "10",
+    "second": "34"
+  },
+  {
+    "id": 10387,
+    "heading": "dita del CC su estintre",
+    "created": "2001-07-30 12:48:05",
+    "linked_file": "2001/07/particolare_estintore_dita.jpg",
+    "hugo": "10387-dita-del-cc-su-estintre",
+    "date": "2001-07-30",
+    "time": "12:48:05",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "48",
+    "second": "05"
+  },
+  {
+    "id": 10391,
+    "heading": "Genova: rassegna stampa aggiornata",
+    "created": "2001-07-30 07:52:17",
+    "linked_file": null,
+    "hugo": "10391-genova-rassegna-stampa-aggiornata",
+    "date": "2001-07-30",
+    "time": "07:52:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "52",
+    "second": "17"
+  },
+  {
+    "id": 10401,
+    "heading": "PROPOSTA ((SECONDO ME CONCRETA!!!!))",
+    "created": "2001-07-30 10:32:46",
+    "linked_file": null,
+    "hugo": "10401-proposta-secondo-me-concreta",
+    "date": "2001-07-30",
+    "time": "10:32:46",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "32",
+    "second": "46"
+  },
+  {
+    "id": 10404,
+    "heading": "Lettera alle forze dell'ordine",
+    "created": "2001-07-30 12:03:22",
+    "linked_file": null,
+    "hugo": "10404-lettera-alle-forze-dellordine",
+    "date": "2001-07-30",
+    "time": "12:03:22",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "03",
+    "second": "22"
+  },
+  {
+    "id": 10405,
+    "heading": "ATTENZIONE: PER LA DIFFUSIONE DEL LIBRO BIANCO SUI FATTI DI GENOVA",
+    "created": "2001-07-30 08:24:40",
+    "linked_file": null,
+    "hugo": "10405-attenzione-per-la-diffusione-del-libro-bianco-sui-fatti-di-genova",
+    "date": "2001-07-30",
+    "time": "08:24:40",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "24",
+    "second": "40"
+  },
+  {
+    "id": 10408,
+    "heading": "violante & Co.",
+    "created": "2001-07-30 22:06:02",
+    "linked_file": null,
+    "hugo": "10408-violante-co",
+    "date": "2001-07-30",
+    "time": "22:06:02",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "22",
+    "minute": "06",
+    "second": "02"
+  },
+  {
+    "id": 10409,
+    "heading": "What special Force is the GOM",
+    "created": "2001-07-30 11:17:01",
+    "linked_file": null,
+    "hugo": "10409-what-special-force-is-the-gom",
+    "date": "2001-07-30",
+    "time": "11:17:01",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "17",
+    "second": "01"
+  },
+  {
+    "id": 10416,
+    "heading": "PER ME CI SONO IN MEZZO GLI AMERICANI",
+    "created": "2001-07-30 11:01:39",
+    "linked_file": null,
+    "hugo": "10416-per-me-ci-sono-in-mezzo-gli-americani",
+    "date": "2001-07-30",
+    "time": "11:01:39",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "01",
+    "second": "39"
+  },
+  {
+    "id": 10423,
+    "heading": "Chi sono i GOM",
+    "created": "2001-07-30 11:45:55",
+    "linked_file": null,
+    "hugo": "10423-chi-sono-i-gom",
+    "date": "2001-07-30",
+    "time": "11:45:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "45",
+    "second": "55"
+  },
+  {
+    "id": 10434,
+    "heading": "guardie penitenziarie",
+    "created": "2001-07-30 11:52:58",
+    "linked_file": null,
+    "hugo": "10434-guardie-penitenziarie",
+    "date": "2001-07-30",
+    "time": "11:52:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "52",
+    "second": "58"
+  },
+  {
+    "id": 10442,
+    "heading": "Roma, 16:57 G8: capigruppo Ulivo, occorre commissione inchiesta",
+    "created": "2001-07-30 10:54:26",
+    "linked_file": null,
+    "hugo": "10442-roma-1657-g8-capigruppo-ulivo-occorre-commissione-inchiesta",
+    "date": "2001-07-30",
+    "time": "10:54:26",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "54",
+    "second": "26"
+  },
+  {
+    "id": 10466,
+    "heading": "BoBi",
+    "created": "2001-07-30 10:36:56",
+    "linked_file": null,
+    "hugo": "10466-bobi",
+    "date": "2001-07-30",
+    "time": "10:36:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "36",
+    "second": "56"
+  },
+  {
+    "id": 10467,
+    "heading": "chi mi spia?",
+    "created": "2001-07-30 11:21:55",
+    "linked_file": null,
+    "hugo": "10467-chi-mi-spia",
+    "date": "2001-07-30",
+    "time": "11:21:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "21",
+    "second": "55"
+  },
+  {
+    "id": 10468,
+    "heading": "Contromano: mi sa che sono stati profetici!!!!",
+    "created": "2001-07-30 09:53:59",
+    "linked_file": null,
+    "hugo": "10468-contromano-mi-sa-che-sono-stati-profetici",
+    "date": "2001-07-30",
+    "time": "09:53:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "53",
+    "second": "59"
+  },
+  {
+    "id": 10472,
+    "heading": "spettacolo su genova",
+    "created": "2001-07-30 09:55:37",
+    "linked_file": null,
+    "hugo": "10472-spettacolo-su-genova",
+    "date": "2001-07-30",
+    "time": "09:55:37",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "55",
+    "second": "37"
+  },
+  {
+    "id": 10473,
+    "heading": "F.A.Q. sul G8 a Genova",
+    "created": "2001-07-30 09:55:45",
+    "linked_file": null,
+    "hugo": "10473-faq-sul-g8-a-genova",
+    "date": "2001-07-30",
+    "time": "09:55:45",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "55",
+    "second": "45"
+  },
+  {
+    "id": 10480,
+    "heading": "sbirri news",
+    "created": "2001-07-30 10:03:41",
+    "linked_file": null,
+    "hugo": "10480-sbirri-news",
+    "date": "2001-07-30",
+    "time": "10:03:41",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "03",
+    "second": "41"
+  },
+  {
+    "id": 10482,
+    "heading": "Wait A Second",
+    "created": "2001-07-30 10:17:56",
+    "linked_file": null,
+    "hugo": "10482-wait-a-second",
+    "date": "2001-07-30",
+    "time": "10:17:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "17",
+    "second": "56"
+  },
+  {
+    "id": 10493,
+    "heading": "caserma Italia",
+    "created": "2001-07-31 14:55:04",
+    "linked_file": "2001/07/fuck_police2.jpg",
+    "hugo": "10493-caserma-italia",
+    "date": "2001-07-31",
+    "time": "14:55:04",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "55",
+    "second": "04"
+  },
+  {
+    "id": 10495,
+    "heading": "\"MASSACRATI DI BOTTE? NON C'ENTRIAMO UN CAZZO\"continua lo show di SABELLA(INFOTO",
+    "created": "2001-07-30 15:28:55",
+    "linked_file": "2001/07/sabella1ebw8sb.jpg",
+    "hugo": "10495-massacrati-di-botte-non-centriamo-un-cazzocontinua-lo-show-di-sabellainfoto",
+    "date": "2001-07-30",
+    "time": "15:28:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "28",
+    "second": "55"
+  },
+  {
+    "id": 10496,
+    "heading": "\"MASSACRATI DI BOTTE? NON C'ENTRIAMO UN CAZZO\"continua lo show di SABELLA(INFOTO",
+    "created": "2001-07-30 11:53:59",
+    "linked_file": "2001/07/sabella12zhxhx.jpg",
+    "hugo": "10496-massacrati-di-botte-non-centriamo-un-cazzocontinua-lo-show-di-sabellainfoto",
+    "date": "2001-07-30",
+    "time": "11:53:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "53",
+    "second": "59"
+  },
+  {
+    "id": 10497,
+    "heading": "IL FORTINO INESPUGNABILE...",
+    "created": "2001-07-30 17:24:00",
+    "linked_file": "2001/07/caserma1.jpg",
+    "hugo": "10497-il-fortino-inespugnabile",
+    "date": "2001-07-30",
+    "time": "17:24:00",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "24",
+    "second": "00"
+  },
+  {
+    "id": 10498,
+    "heading": "\"MASSACRATI DI BOTTE? NON C'ENTRIAMO UN CAZZO\"continua lo show di SABELLA(INFOTO",
+    "created": "2001-07-30 11:13:34",
+    "linked_file": "2001/07/sabella1riux0m.jpg",
+    "hugo": "10498-massacrati-di-botte-non-centriamo-un-cazzocontinua-lo-show-di-sabellainfoto",
+    "date": "2001-07-30",
+    "time": "11:13:34",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "13",
+    "second": "34"
+  },
+  {
+    "id": 10502,
+    "heading": "Greece, 20-27 July, Solidarity Actions with Genova.",
+    "created": "2001-07-30 12:04:24",
+    "linked_file": null,
+    "hugo": "10502-greece-2027-july-solidarity-actions-with-genova",
+    "date": "2001-07-30",
+    "time": "12:04:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "04",
+    "second": "24"
+  },
+  {
+    "id": 10507,
+    "heading": "***IMPORTANTE*** I GIUDICI CERCANO TESTIMONI ***IMPORTANTE***",
+    "created": "2001-07-30 13:25:14",
+    "linked_file": null,
+    "hugo": "10507-importante-i-giudici-cercano-testimoni-importante",
+    "date": "2001-07-30",
+    "time": "13:25:14",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "25",
+    "second": "14"
+  },
+  {
+    "id": 10512,
+    "heading": "Chi sono i GOM",
+    "created": "2001-07-31 02:26:53",
+    "linked_file": null,
+    "hugo": "10512-chi-sono-i-gom",
+    "date": "2001-07-31",
+    "time": "02:26:53",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "26",
+    "second": "53"
+  },
+  {
+    "id": 10522,
+    "heading": "2 articoli da Repubblica: F. Rampini e M.Vargas Llosa",
+    "created": "2001-07-30 12:11:08",
+    "linked_file": null,
+    "hugo": "10522-2-articoli-da-repubblica-f-rampini-e-mvargas-llosa",
+    "date": "2001-07-30",
+    "time": "12:11:08",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "11",
+    "second": "08"
+  },
+  {
+    "id": 10527,
+    "heading": "tutto il mondo ha visto",
+    "created": "2001-07-30 18:30:07",
+    "linked_file": "2001/07/senza_titolo-136.jpg",
+    "hugo": "10527-tutto-il-mondo-ha-visto",
+    "date": "2001-07-30",
+    "time": "18:30:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "30",
+    "second": "07"
+  },
+  {
+    "id": 10528,
+    "heading": "Come è stato ucciso Carlo Giuliani - Il Manifesto (sulla nova serie di foto)",
+    "created": "2001-07-30 12:37:56",
+    "linked_file": null,
+    "hugo": "10528-come-e-stato-ucciso-carlo-giuliani-il-manifesto-sulla-nova-serie-di-foto",
+    "date": "2001-07-30",
+    "time": "12:37:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "37",
+    "second": "56"
+  },
+  {
+    "id": 10537,
+    "heading": "Siamo realisti...",
+    "created": "2001-07-31 10:49:11",
+    "linked_file": null,
+    "hugo": "10537-siamo-realisti",
+    "date": "2001-07-31",
+    "time": "10:49:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "49",
+    "second": "11"
+  },
+  {
+    "id": 10538,
+    "heading": "death and terror in genoa",
+    "created": "2001-07-31 02:40:29",
+    "linked_file": null,
+    "hugo": "10538-death-and-terror-in-genoa",
+    "date": "2001-07-31",
+    "time": "02:40:29",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "40",
+    "second": "29"
+  },
+  {
+    "id": 10539,
+    "heading": "di nuovo a genova",
+    "created": "2001-07-30 16:52:14",
+    "linked_file": null,
+    "hugo": "10539-di-nuovo-a-genova",
+    "date": "2001-07-30",
+    "time": "16:52:14",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "52",
+    "second": "14"
+  },
+  {
+    "id": 10541,
+    "heading": "caserma Italia3",
+    "created": "2001-07-30 13:34:17",
+    "linked_file": "2001/07/caserma2.jpg",
+    "hugo": "10541-caserma-italia3",
+    "date": "2001-07-30",
+    "time": "13:34:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "34",
+    "second": "17"
+  },
+  {
+    "id": 10543,
+    "heading": "lacrimogeni1",
+    "created": "2001-07-30 16:32:42",
+    "linked_file": "2001/07/lacrimogeni1.jpg",
+    "hugo": "10543-lacrimogeni1",
+    "date": "2001-07-30",
+    "time": "16:32:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "32",
+    "second": "42"
+  },
+  {
+    "id": 10544,
+    "heading": "lacrimogeni2",
+    "created": "2001-07-30 13:42:58",
+    "linked_file": "2001/07/lacrimogeni2.jpg",
+    "hugo": "10544-lacrimogeni2",
+    "date": "2001-07-30",
+    "time": "13:42:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "42",
+    "second": "58"
+  },
+  {
+    "id": 10545,
+    "heading": "matadores",
+    "created": "2001-07-30 13:46:36",
+    "linked_file": "2001/07/matadores.jpg",
+    "hugo": "10545-matadores",
+    "date": "2001-07-30",
+    "time": "13:46:36",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "46",
+    "second": "36"
+  },
+  {
+    "id": 10548,
+    "heading": "GENOVESI",
+    "created": "2001-07-30 15:36:45",
+    "linked_file": "2001/07/people1.jpg",
+    "hugo": "10548-genovesi",
+    "date": "2001-07-30",
+    "time": "15:36:45",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "36",
+    "second": "45"
+  },
+  {
+    "id": 10549,
+    "heading": "MANIFESTAZIONE A  TREVISO",
+    "created": "2001-07-30 13:57:42",
+    "linked_file": "2001/07/treviso1.jpg",
+    "hugo": "10549-manifestazione-a-treviso",
+    "date": "2001-07-30",
+    "time": "13:57:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "57",
+    "second": "42"
+  },
+  {
+    "id": 10550,
+    "heading": "TREVISO2",
+    "created": "2001-07-30 14:00:10",
+    "linked_file": "2001/07/treviso2.jpg",
+    "hugo": "10550-treviso2",
+    "date": "2001-07-30",
+    "time": "14:00:10",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "00",
+    "second": "10"
+  },
+  {
+    "id": 10552,
+    "heading": "PASSAGGIO DEI BLACK BLOCKS",
+    "created": "2001-07-30 15:11:57",
+    "linked_file": "2001/07/wearewinning.jpg",
+    "hugo": "10552-passaggio-dei-black-blocks",
+    "date": "2001-07-30",
+    "time": "15:11:57",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "11",
+    "second": "57"
+  },
+  {
+    "id": 10557,
+    "heading": "Action of solidarity in Kyiv, Ukraine",
+    "created": "2001-07-30 14:28:42",
+    "linked_file": null,
+    "hugo": "10557-action-of-solidarity-in-kyiv-ukraine",
+    "date": "2001-07-30",
+    "time": "14:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 10558,
+    "heading": "President(ciampi)wants answers on G8 violence",
+    "created": "2001-07-30 14:29:21",
+    "linked_file": null,
+    "hugo": "10558-presidentciampiwants-answers-on-g8-violence",
+    "date": "2001-07-30",
+    "time": "14:29:21",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "29",
+    "second": "21"
+  },
+  {
+    "id": 10559,
+    "heading": "Action of solidarity in Kyiv, Ukraine",
+    "created": "2001-07-30 18:11:58",
+    "linked_file": null,
+    "hugo": "10559-action-of-solidarity-in-kyiv-ukraine",
+    "date": "2001-07-30",
+    "time": "18:11:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "11",
+    "second": "58"
+  },
+  {
+    "id": 10561,
+    "heading": "G8, interviene Ciampi \"Sia fatta piena luce\"",
+    "created": "2001-07-30 14:44:52",
+    "linked_file": null,
+    "hugo": "10561-g8-interviene-ciampi-sia-fatta-piena-luce",
+    "date": "2001-07-30",
+    "time": "14:44:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "44",
+    "second": "52"
+  },
+  {
+    "id": 10563,
+    "heading": "Il Papa/ The Pope",
+    "created": "2001-07-30 14:45:33",
+    "linked_file": null,
+    "hugo": "10563-il-papa-the-pope",
+    "date": "2001-07-30",
+    "time": "14:45:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "45",
+    "second": "33"
+  },
+  {
+    "id": 10564,
+    "heading": "SOLIDARITY BETWEEN DEMONSTRATORS",
+    "created": "2001-07-30 15:30:09",
+    "linked_file": "2001/07/senza_titolo-133q1maiq.jpg",
+    "hugo": "10564-solidarity-between-demonstrators",
+    "date": "2001-07-30",
+    "time": "15:30:09",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "30",
+    "second": "09"
+  },
+  {
+    "id": 10567,
+    "heading": "Picture of solidarity action in Kyiv, Ukraine (2)",
+    "created": "2001-07-30 15:02:51",
+    "linked_file": "2001/07/j27_10_small.jpg",
+    "hugo": "10567-picture-of-solidarity-action-in-kyiv-ukraine-2",
+    "date": "2001-07-30",
+    "time": "15:02:51",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "02",
+    "second": "51"
+  },
+  {
+    "id": 10568,
+    "heading": "G8, da domani la procura interrogherà i poliziotti",
+    "created": "2001-07-30 15:02:52",
+    "linked_file": null,
+    "hugo": "10568-g8-da-domani-la-procura-interroghera-i-poliziotti",
+    "date": "2001-07-30",
+    "time": "15:02:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "02",
+    "second": "52"
+  },
+  {
+    "id": 10571,
+    "heading": " 20th of August: Global Action Day for Genoa: Our resistance continues!",
+    "created": "2001-07-30 15:10:57",
+    "linked_file": null,
+    "hugo": "10571-20th-of-august-global-action-day-for-genoa-our-resistance-continues",
+    "date": "2001-07-30",
+    "time": "15:10:57",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "10",
+    "second": "57"
+  },
+  {
+    "id": 10572,
+    "heading": "Picture from solidarity action in Kyiv, Ukraine (3)",
+    "created": "2001-07-30 15:11:07",
+    "linked_file": "2001/07/j27_06_small.jpg",
+    "hugo": "10572-picture-from-solidarity-action-in-kyiv-ukraine-3",
+    "date": "2001-07-30",
+    "time": "15:11:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "11",
+    "second": "07"
+  },
+  {
+    "id": 10576,
+    "heading": "Picture from solidaruty action in Kyiv, Ukraine (4)",
+    "created": "2001-07-30 15:16:15",
+    "linked_file": "2001/07/j27_04_small.jpg",
+    "hugo": "10576-picture-from-solidaruty-action-in-kyiv-ukraine-4",
+    "date": "2001-07-30",
+    "time": "15:16:15",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "16",
+    "second": "15"
+  },
+  {
+    "id": 10578,
+    "heading": "Picture form the solidarity action in Kyiv, Ukraine (5)",
+    "created": "2001-07-30 15:21:23",
+    "linked_file": "2001/07/j27_07_small.jpg",
+    "hugo": "10578-picture-form-the-solidarity-action-in-kyiv-ukraine-5",
+    "date": "2001-07-30",
+    "time": "15:21:23",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "21",
+    "second": "23"
+  },
+  {
+    "id": 10580,
+    "heading": "I MEZZI DI DIFESA",
+    "created": "2001-07-30 16:51:05",
+    "linked_file": null,
+    "hugo": "10580-i-mezzi-di-difesa",
+    "date": "2001-07-30",
+    "time": "16:51:05",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "51",
+    "second": "05"
+  },
+  {
+    "id": 10581,
+    "heading": "I MEZZI DI DIFESA",
+    "created": "2001-07-30 15:26:38",
+    "linked_file": "2001/07/senza_titolo-40.jpg",
+    "hugo": "10581-i-mezzi-di-difesa",
+    "date": "2001-07-30",
+    "time": "15:26:38",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "26",
+    "second": "38"
+  },
+  {
+    "id": 10584,
+    "heading": "Tattica e Strategia",
+    "created": "2001-07-30 15:45:30",
+    "linked_file": null,
+    "hugo": "10584-tattica-e-strategia",
+    "date": "2001-07-30",
+    "time": "15:45:30",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "45",
+    "second": "30"
+  },
+  {
+    "id": 10586,
+    "heading": "scomparsi ?",
+    "created": "2001-07-30 18:47:06",
+    "linked_file": null,
+    "hugo": "10586-scomparsi-",
+    "date": "2001-07-30",
+    "time": "18:47:06",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "47",
+    "second": "06"
+  },
+  {
+    "id": 10587,
+    "heading": "La polizia pesta un \"violento\"/Police beat up a \"violent\"",
+    "created": "2001-07-30 18:40:59",
+    "linked_file": "2001/07/bastardi_v01.rm",
+    "hugo": "10587-la-polizia-pesta-un-violentopolice-beat-up-a-violent",
+    "date": "2001-07-30",
+    "time": "18:40:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "40",
+    "second": "59"
+  },
+  {
+    "id": 10593,
+    "heading": "final score : riots - Genoa 1 0 , riots - democracy 1 0",
+    "created": "2001-07-30 16:18:52",
+    "linked_file": "2001/07/senza_titolo-132.jpg",
+    "hugo": "10593-final-score-riots-genoa-1-0-riots-democracy-1-0",
+    "date": "2001-07-30",
+    "time": "16:18:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "18",
+    "second": "52"
+  },
+  {
+    "id": 10596,
+    "heading": "GIORNATA GLOBALE DI AZIONI:solidarietà con le/i prigioniere/i di Genova!",
+    "created": "2001-07-30 16:21:07",
+    "linked_file": null,
+    "hugo": "10596-giornata-globale-di-azionisolidarieta-con-lei-prigionierei-di-genova",
+    "date": "2001-07-30",
+    "time": "16:21:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "21",
+    "second": "07"
+  },
+  {
+    "id": 10598,
+    "heading": "Thanks to the anarchist",
+    "created": "2001-07-30 16:27:33",
+    "linked_file": null,
+    "hugo": "10598-thanks-to-the-anarchist",
+    "date": "2001-07-30",
+    "time": "16:27:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "27",
+    "second": "33"
+  },
+  {
+    "id": 10601,
+    "heading": "Vive l'anarchie!",
+    "created": "2001-07-30 17:29:47",
+    "linked_file": null,
+    "hugo": "10601-vive-lanarchie",
+    "date": "2001-07-30",
+    "time": "17:29:47",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "29",
+    "second": "47"
+  },
+  {
+    "id": 10604,
+    "heading": "una polemica spero costruttiva",
+    "created": "2001-07-30 17:34:11",
+    "linked_file": null,
+    "hugo": "10604-una-polemica-spero-costruttiva",
+    "date": "2001-07-30",
+    "time": "17:34:11",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "34",
+    "second": "11"
+  },
+  {
+    "id": 10608,
+    "heading": "questo e' un movimento sociale!",
+    "created": "2001-07-30 17:27:16",
+    "linked_file": null,
+    "hugo": "10608-questo-e-un-movimento-sociale",
+    "date": "2001-07-30",
+    "time": "17:27:16",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "27",
+    "second": "16"
+  },
+  {
+    "id": 10609,
+    "heading": "questo e' un movimento sociale!",
+    "created": "2001-07-31 09:18:42",
+    "linked_file": null,
+    "hugo": "10609-questo-e-un-movimento-sociale",
+    "date": "2001-07-31",
+    "time": "09:18:42",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "18",
+    "second": "42"
+  },
+  {
+    "id": 10615,
+    "heading": "trieste, mobilitazione in vista",
+    "created": "2001-07-30 17:21:18",
+    "linked_file": null,
+    "hugo": "10615-trieste-mobilitazione-in-vista",
+    "date": "2001-07-30",
+    "time": "17:21:18",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "21",
+    "second": "18"
+  },
+  {
+    "id": 10618,
+    "heading": "VIRGILIO, INVITO AL NETSTRIKE",
+    "created": "2001-07-31 00:40:03",
+    "linked_file": null,
+    "hugo": "10618-virgilio-invito-al-netstrike",
+    "date": "2001-07-31",
+    "time": "00:40:03",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "00",
+    "minute": "40",
+    "second": "03"
+  },
+  {
+    "id": 10625,
+    "heading": "PNWER: Corporate Colony or Regional Autonomy?",
+    "created": "2001-07-30 17:39:27",
+    "linked_file": null,
+    "hugo": "10625-pnwer-corporate-colony-or-regional-autonomy",
+    "date": "2001-07-30",
+    "time": "17:39:27",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "39",
+    "second": "27"
+  },
+  {
+    "id": 10627,
+    "heading": "Città piu' sicure2-3",
+    "created": "2001-07-30 17:40:04",
+    "linked_file": "2001/07/pi_sicure0292upfx.jpg",
+    "hugo": "10627-citta-piu-sicure23",
+    "date": "2001-07-30",
+    "time": "17:40:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "40",
+    "second": "04"
+  },
+  {
+    "id": 10628,
+    "heading": "Sherwood.it = irraggiungibile. Postare nuovasequenza foto \"estintore-camionetta\"",
+    "created": "2001-07-30 17:45:58",
+    "linked_file": null,
+    "hugo": "10628-sherwoodit-irraggiungibile-postare-nuovasequenza-foto-estintorecamionetta",
+    "date": "2001-07-30",
+    "time": "17:45:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "45",
+    "second": "58"
+  },
+  {
+    "id": 10632,
+    "heading": "New illustration about Carlo Giuliani's murder (free distribution)",
+    "created": "2001-07-30 17:56:08",
+    "linked_file": "2001/07/carloywzpjt.gif",
+    "hugo": "10632-new-illustration-about-carlo-giulianis-murder-free-distribution",
+    "date": "2001-07-30",
+    "time": "17:56:08",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "56",
+    "second": "08"
+  },
+  {
+    "id": 10635,
+    "heading": "saluti",
+    "created": "2001-07-30 18:20:39",
+    "linked_file": "2001/07/brazil_large_12.jpg",
+    "hugo": "10635-saluti",
+    "date": "2001-07-30",
+    "time": "18:20:39",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "20",
+    "second": "39"
+  },
+  {
+    "id": 10636,
+    "heading": "Deputati di AN in questura a \"guidare\" i celerini?",
+    "created": "2001-07-31 02:20:15",
+    "linked_file": null,
+    "hugo": "10636-deputati-di-an-in-questura-a-guidare-i-celerini",
+    "date": "2001-07-31",
+    "time": "02:20:15",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "20",
+    "second": "15"
+  },
+  {
+    "id": 10639,
+    "heading": "Infiltrazioni BBlock nel corteo del 21",
+    "created": "2001-07-30 18:04:07",
+    "linked_file": "2001/07/001bb.jpg",
+    "hugo": "10639-infiltrazioni-bblock-nel-corteo-del-21",
+    "date": "2001-07-30",
+    "time": "18:04:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "04",
+    "second": "07"
+  },
+  {
+    "id": 10641,
+    "heading": "nuova sequenza foto",
+    "created": "2001-07-31 03:03:17",
+    "linked_file": null,
+    "hugo": "10641-nuova-sequenza-foto",
+    "date": "2001-07-31",
+    "time": "03:03:17",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "03",
+    "minute": "03",
+    "second": "17"
+  },
+  {
+    "id": 10643,
+    "heading": "nuova sequenza foto",
+    "created": "2001-07-31 02:58:00",
+    "linked_file": null,
+    "hugo": "10643-nuova-sequenza-foto",
+    "date": "2001-07-31",
+    "time": "02:58:00",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "58",
+    "second": "00"
+  },
+  {
+    "id": 10655,
+    "heading": "guardie infami",
+    "created": "2001-07-30 18:33:33",
+    "linked_file": "2001/07/4dyiayc.jpg",
+    "hugo": "10655-guardie-infami",
+    "date": "2001-07-30",
+    "time": "18:33:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "33",
+    "second": "33"
+  },
+  {
+    "id": 10672,
+    "heading": "(en) Italy, FdCA Statement THE INTERNATIONAL FIGHT AGAINST NEO-LIBERALISM",
+    "created": "2001-07-30 20:15:29",
+    "linked_file": null,
+    "hugo": "10672-en-italy-fdca-statement-the-international-fight-against-neoliberalism",
+    "date": "2001-07-30",
+    "time": "20:15:29",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "20",
+    "minute": "15",
+    "second": "29"
+  },
+  {
+    "id": 10673,
+    "heading": "movimento sociale, definizione non felice",
+    "created": "2001-07-31 06:49:22",
+    "linked_file": null,
+    "hugo": "10673-movimento-sociale-definizione-non-felice",
+    "date": "2001-07-31",
+    "time": "06:49:22",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "49",
+    "second": "22"
+  },
+  {
+    "id": 10674,
+    "heading": "schnews on genoa",
+    "created": "2001-07-30 20:28:44",
+    "linked_file": null,
+    "hugo": "10674-schnews-on-genoa",
+    "date": "2001-07-30",
+    "time": "20:28:44",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "20",
+    "minute": "28",
+    "second": "44"
+  },
+  {
+    "id": 10675,
+    "heading": "genoa report on police violence - horrific",
+    "created": "2001-07-31 02:16:40",
+    "linked_file": null,
+    "hugo": "10675-genoa-report-on-police-violence-horrific",
+    "date": "2001-07-31",
+    "time": "02:16:40",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "16",
+    "second": "40"
+  },
+  {
+    "id": 10682,
+    "heading": "Whats the status of those arrested in genoa?",
+    "created": "2001-07-31 10:02:28",
+    "linked_file": null,
+    "hugo": "10682-whats-the-status-of-those-arrested-in-genoa",
+    "date": "2001-07-31",
+    "time": "10:02:28",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "02",
+    "second": "28"
+  },
+  {
+    "id": 10683,
+    "heading": "\"The Never-Ending Wrong\"",
+    "created": "2001-07-30 23:09:32",
+    "linked_file": null,
+    "hugo": "10683-the-neverending-wrong",
+    "date": "2001-07-30",
+    "time": "23:09:32",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "23",
+    "minute": "09",
+    "second": "32"
+  },
+  {
+    "id": 10686,
+    "heading": "non solo balle...ma pure ridicole",
+    "created": "2001-07-31 00:35:50",
+    "linked_file": null,
+    "hugo": "10686-non-solo-ballema-pure-ridicole",
+    "date": "2001-07-31",
+    "time": "00:35:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "00",
+    "minute": "35",
+    "second": "50"
+  },
+  {
+    "id": 10689,
+    "heading": "TODOS SOMOS BLACK BLOC",
+    "created": "2001-07-31 00:41:24",
+    "linked_file": "2001/07/brazil_large_12_copy.jpg",
+    "hugo": "10689-todos-somos-black-bloc",
+    "date": "2001-07-31",
+    "time": "00:41:24",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "00",
+    "minute": "41",
+    "second": "24"
+  },
+  {
+    "id": 10691,
+    "heading": "repost of black art",
+    "created": "2001-07-31 08:38:50",
+    "linked_file": "2001/07/10100dmppnj.jpg",
+    "hugo": "10691-repost-of-black-art",
+    "date": "2001-07-31",
+    "time": "08:38:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "38",
+    "second": "50"
+  },
+  {
+    "id": 10694,
+    "heading": "Articolo di Scalzone",
+    "created": "2001-07-31 03:51:02",
+    "linked_file": null,
+    "hugo": "10694-articolo-di-scalzone",
+    "date": "2001-07-31",
+    "time": "03:51:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "03",
+    "minute": "51",
+    "second": "02"
+  },
+  {
+    "id": 10695,
+    "heading": "Genova ,lot's of stories on this link (en)",
+    "created": "2001-07-31 01:34:12",
+    "linked_file": null,
+    "hugo": "10695-genova-lots-of-stories-on-this-link-en",
+    "date": "2001-07-31",
+    "time": "01:34:12",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "01",
+    "minute": "34",
+    "second": "12"
+  },
+  {
+    "id": 10696,
+    "heading": "1970-2001",
+    "created": "2001-07-31 02:02:54",
+    "linked_file": null,
+    "hugo": "10696-19702001",
+    "date": "2001-07-31",
+    "time": "02:02:54",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "02",
+    "second": "54"
+  },
+  {
+    "id": 10697,
+    "heading": "Prisoners were denied access to lawyers",
+    "created": "2001-07-31 08:47:38",
+    "linked_file": null,
+    "hugo": "10697-prisoners-were-denied-access-to-lawyers",
+    "date": "2001-07-31",
+    "time": "08:47:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "47",
+    "second": "38"
+  },
+  {
+    "id": 10704,
+    "heading": "buoni e cattivi",
+    "created": "2001-07-31 04:04:47",
+    "linked_file": null,
+    "hugo": "10704-buoni-e-cattivi",
+    "date": "2001-07-31",
+    "time": "04:04:47",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "04",
+    "minute": "04",
+    "second": "47"
+  },
+  {
+    "id": 10705,
+    "heading": "le automobili sfasciate a Ge",
+    "created": "2001-07-31 09:40:57",
+    "linked_file": null,
+    "hugo": "10705-le-automobili-sfasciate-a-ge",
+    "date": "2001-07-31",
+    "time": "09:40:57",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "40",
+    "second": "57"
+  },
+  {
+    "id": 10707,
+    "heading": "Ge2021 WebRing",
+    "created": "2001-07-31 04:19:50",
+    "linked_file": null,
+    "hugo": "10707-ge2021-webring",
+    "date": "2001-07-31",
+    "time": "04:19:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "04",
+    "minute": "19",
+    "second": "50"
+  },
+  {
+    "id": 10710,
+    "heading": "G8, i superispettori \"Errori e violenze\"",
+    "created": "2001-07-31 02:42:11",
+    "linked_file": null,
+    "hugo": "10710-g8-i-superispettori-errori-e-violenze",
+    "date": "2001-07-31",
+    "time": "02:42:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "42",
+    "second": "11"
+  },
+  {
+    "id": 10713,
+    "heading": "en) UK, Manchester Genoa solidarity actions & leaflet text",
+    "created": "2001-07-31 02:52:18",
+    "linked_file": null,
+    "hugo": "10713-en-uk-manchester-genoa-solidarity-actions-leaflet-text",
+    "date": "2001-07-31",
+    "time": "02:52:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "52",
+    "second": "18"
+  },
+  {
+    "id": 10714,
+    "heading": "infiltrati nazi",
+    "created": "2001-07-31 02:52:18",
+    "linked_file": null,
+    "hugo": "10714-infiltrati-nazi",
+    "date": "2001-07-31",
+    "time": "02:52:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "52",
+    "second": "18"
+  },
+  {
+    "id": 10718,
+    "heading": "resistenza a pubblico ufficiale?",
+    "created": "2001-07-31 05:39:47",
+    "linked_file": null,
+    "hugo": "10718-resistenza-a-pubblico-ufficiale",
+    "date": "2001-07-31",
+    "time": "05:39:47",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "05",
+    "minute": "39",
+    "second": "47"
+  },
+  {
+    "id": 10722,
+    "heading": "CI STIAMO PERDENDO",
+    "created": "2001-07-31 08:06:59",
+    "linked_file": null,
+    "hugo": "10722-ci-stiamo-perdendo",
+    "date": "2001-07-31",
+    "time": "08:06:59",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "06",
+    "second": "59"
+  },
+  {
+    "id": 10723,
+    "heading": "FINI DIRIGEVA LE OPERAZIONI DI REPRESSIONE?",
+    "created": "2001-07-31 14:16:04",
+    "linked_file": null,
+    "hugo": "10723-fini-dirigeva-le-operazioni-di-repressione",
+    "date": "2001-07-31",
+    "time": "14:16:04",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "16",
+    "second": "04"
+  },
+  {
+    "id": 10729,
+    "heading": "il sistema è violento!",
+    "created": "2001-07-31 04:23:47",
+    "linked_file": null,
+    "hugo": "10729-il-sistema-e-violento",
+    "date": "2001-07-31",
+    "time": "04:23:47",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "04",
+    "minute": "23",
+    "second": "47"
+  },
+  {
+    "id": 10735,
+    "heading": "\"COSI' CI MASSACRAVANO IN CARCERE NEL 1980\" di Alberto Franceschini (COME GENOVA",
+    "created": "2001-07-31 09:36:00",
+    "linked_file": null,
+    "hugo": "10735-cosi-ci-massacravano-in-carcere-nel-1980-di-alberto-franceschini-come-genova",
+    "date": "2001-07-31",
+    "time": "09:36:00",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "36",
+    "second": "00"
+  },
+  {
+    "id": 10737,
+    "heading": "quale compito per i poliziotti in tuta bianca ?",
+    "created": "2001-07-31 17:36:17",
+    "linked_file": "2001/08/22.jpg",
+    "hugo": "10737-quale-compito-per-i-poliziotti-in-tuta-bianca-",
+    "date": "2001-07-31",
+    "time": "17:36:17",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "36",
+    "second": "17"
+  },
+  {
+    "id": 10754,
+    "heading": "we are winning  !!!!",
+    "created": "2001-07-31 06:44:13",
+    "linked_file": null,
+    "hugo": "10754-we-are-winning-",
+    "date": "2001-07-31",
+    "time": "06:44:13",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "44",
+    "second": "13"
+  },
+  {
+    "id": 10765,
+    "heading": "Italy: Surviving Instability",
+    "created": "2001-07-31 06:33:31",
+    "linked_file": null,
+    "hugo": "10765-italy-surviving-instability",
+    "date": "2001-07-31",
+    "time": "06:33:31",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "33",
+    "second": "31"
+  },
+  {
+    "id": 10772,
+    "heading": "definizione di movimento sociale",
+    "created": "2001-07-31 06:51:59",
+    "linked_file": null,
+    "hugo": "10772-definizione-di-movimento-sociale",
+    "date": "2001-07-31",
+    "time": "06:51:59",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "51",
+    "second": "59"
+  },
+  {
+    "id": 10778,
+    "heading": "ZECCHE...PIDOCCHI...BESTIE",
+    "created": "2001-07-31 09:10:28",
+    "linked_file": null,
+    "hugo": "10778-zecchepidocchibestie",
+    "date": "2001-07-31",
+    "time": "09:10:28",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "10",
+    "second": "28"
+  },
+  {
+    "id": 10784,
+    "heading": "9000 posti di lavoro in meno",
+    "created": "2001-08-01 01:48:11",
+    "linked_file": null,
+    "hugo": "10784-9000-posti-di-lavoro-in-meno",
+    "date": "2001-08-01",
+    "time": "01:48:11",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "01",
+    "minute": "48",
+    "second": "11"
+  },
+  {
+    "id": 10786,
+    "heading": "Tragici sospetti",
+    "created": "2001-08-01 01:43:40",
+    "linked_file": null,
+    "hugo": "10786-tragici-sospetti",
+    "date": "2001-08-01",
+    "time": "01:43:40",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "01",
+    "minute": "43",
+    "second": "40"
+  },
+  {
+    "id": 10793,
+    "heading": "20.8.01 Global Action Day for Genoa",
+    "created": "2001-07-31 10:11:53",
+    "linked_file": null,
+    "hugo": "10793-20801-global-action-day-for-genoa",
+    "date": "2001-07-31",
+    "time": "10:11:53",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "11",
+    "second": "53"
+  },
+  {
+    "id": 10795,
+    "heading": "ATTENZIONE: PER LA DIFFUSIONE DEL LIBRO BIANCO SUI FATTI DI GENOVA",
+    "created": "2001-07-31 11:02:54",
+    "linked_file": null,
+    "hugo": "10795-attenzione-per-la-diffusione-del-libro-bianco-sui-fatti-di-genova",
+    "date": "2001-07-31",
+    "time": "11:02:54",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "02",
+    "second": "54"
+  },
+  {
+    "id": 10799,
+    "heading": "Vi ricordate l'infoltarto a taranto?",
+    "created": "2001-07-05 20:27:01",
+    "linked_file": "2001/07/taranto1.asf",
+    "hugo": "10799-vi-ricordate-linfoltarto-a-taranto",
+    "date": "2001-07-05",
+    "time": "20:27:01",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "20",
+    "minute": "27",
+    "second": "01"
+  },
+  {
+    "id": 10800,
+    "heading": "Il PM comincia male!!!!!!",
+    "created": "2001-07-31 14:59:11",
+    "linked_file": null,
+    "hugo": "10800-il-pm-comincia-male",
+    "date": "2001-07-31",
+    "time": "14:59:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "59",
+    "second": "11"
+  },
+  {
+    "id": 10816,
+    "heading": "G8: Carta, fotografo testimone spari in Corso Gastaldi",
+    "created": "2001-07-31 08:26:12",
+    "linked_file": null,
+    "hugo": "10816-g8-carta-fotografo-testimone-spari-in-corso-gastaldi",
+    "date": "2001-07-31",
+    "time": "08:26:12",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "26",
+    "second": "12"
+  },
+  {
+    "id": 10823,
+    "heading": "sull'articolo di lello voce:ancora alcuni dubbi",
+    "created": "2001-07-31 17:38:56",
+    "linked_file": null,
+    "hugo": "10823-sullarticolo-di-lello-voceancora-alcuni-dubbi",
+    "date": "2001-07-31",
+    "time": "17:38:56",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "38",
+    "second": "56"
+  },
+  {
+    "id": 10834,
+    "heading": "Vertice Nato a Caserta",
+    "created": "2001-07-31 09:20:36",
+    "linked_file": null,
+    "hugo": "10834-vertice-nato-a-caserta",
+    "date": "2001-07-31",
+    "time": "09:20:36",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "20",
+    "second": "36"
+  },
+  {
+    "id": 10865,
+    "heading": "Ma davvero vi aspettate giustizia dallo stato?",
+    "created": "2001-07-31 17:54:43",
+    "linked_file": null,
+    "hugo": "10865-ma-davvero-vi-aspettate-giustizia-dallo-stato",
+    "date": "2001-07-31",
+    "time": "17:54:43",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "54",
+    "second": "43"
+  },
+  {
+    "id": 10873,
+    "heading": "l'estintore non è in dotazione dei carabinieri-ansa",
+    "created": "2001-07-31 14:06:18",
+    "linked_file": null,
+    "hugo": "10873-lestintore-non-e-in-dotazione-dei-carabinieriansa",
+    "date": "2001-07-31",
+    "time": "14:06:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "06",
+    "second": "18"
+  },
+  {
+    "id": 10875,
+    "heading": "AGGIORNAMENTI INTERVENTI SU GENOVA",
+    "created": "2001-07-31 10:13:32",
+    "linked_file": null,
+    "hugo": "10875-aggiornamenti-interventi-su-genova",
+    "date": "2001-07-31",
+    "time": "10:13:32",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "13",
+    "second": "32"
+  },
+  {
+    "id": 10876,
+    "heading": "cronache locali",
+    "created": "2001-07-31 14:44:48",
+    "linked_file": null,
+    "hugo": "10876-cronache-locali",
+    "date": "2001-07-31",
+    "time": "14:44:48",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "44",
+    "second": "48"
+  },
+  {
+    "id": 10879,
+    "heading": "ultima dall'ansa",
+    "created": "2001-07-31 17:02:33",
+    "linked_file": null,
+    "hugo": "10879-ultima-dallansa",
+    "date": "2001-07-31",
+    "time": "17:02:33",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "02",
+    "second": "33"
+  },
+  {
+    "id": 10886,
+    "heading": "Aggrediti e Aggressori",
+    "created": "2001-07-31 11:08:44",
+    "linked_file": null,
+    "hugo": "10886-aggrediti-e-aggressori",
+    "date": "2001-07-31",
+    "time": "11:08:44",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "08",
+    "second": "44"
+  },
+  {
+    "id": 10906,
+    "heading": "THIS is the PHOTO of Giuseppe Dalla Vecchia (massacre march 2000)",
+    "created": "2001-07-31 11:13:46",
+    "linked_file": "2001/07/dellavecchia1pxaoskj.jpg",
+    "hugo": "10906-this-is-the-photo-of-giuseppe-dalla-vecchia-massacre-march-2000",
+    "date": "2001-07-31",
+    "time": "11:13:46",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "13",
+    "second": "46"
+  },
+  {
+    "id": 10907,
+    "heading": "VOGLIONO IL RITORNO DEL TERRORISMO E LA GUERRA CIVILE!",
+    "created": "2001-07-31 14:02:02",
+    "linked_file": null,
+    "hugo": "10907-vogliono-il-ritorno-del-terrorismo-e-la-guerra-civile",
+    "date": "2001-07-31",
+    "time": "14:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 10910,
+    "heading": "Estintore: novità secondo agenzia agi",
+    "created": "2001-07-31 19:40:02",
+    "linked_file": null,
+    "hugo": "10910-estintore-novita-secondo-agenzia-agi",
+    "date": "2001-07-31",
+    "time": "19:40:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "40",
+    "second": "02"
+  },
+  {
+    "id": 10916,
+    "heading": "Presentati a tribunale ricorsi contro arresti black bloc",
+    "created": "2001-07-31 11:24:54",
+    "linked_file": null,
+    "hugo": "10916-presentati-a-tribunale-ricorsi-contro-arresti-black-bloc",
+    "date": "2001-07-31",
+    "time": "11:24:54",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "24",
+    "second": "54"
+  },
+  {
+    "id": 10931,
+    "heading": "MI SA CHE CI RIESCONO ANCORA UNA VOLTA...",
+    "created": "2001-07-31 15:19:57",
+    "linked_file": null,
+    "hugo": "10931-mi-sa-che-ci-riescono-ancora-una-volta",
+    "date": "2001-07-31",
+    "time": "15:19:57",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "19",
+    "second": "57"
+  },
+  {
+    "id": 10952,
+    "heading": "Premier Berlusconi, giustizia per Carlo Giuliani (en) \r",
+    "created": "2001-07-31 12:42:45",
+    "linked_file": null,
+    "hugo": "10952-premier-berlusconi-giustizia-per-carlo-giuliani-en",
+    "date": "2001-07-31",
+    "time": "12:42:45",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "12",
+    "minute": "42",
+    "second": "45"
+  },
+  {
+    "id": 10954,
+    "heading": "CARLO'S WAY",
+    "created": "2001-07-31 13:36:32",
+    "linked_file": null,
+    "hugo": "10954-carlos-way",
+    "date": "2001-07-31",
+    "time": "13:36:32",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "13",
+    "minute": "36",
+    "second": "32"
+  },
+  {
+    "id": 10958,
+    "heading": "Ricerca operatori Indy",
+    "created": "2001-07-31 13:06:44",
+    "linked_file": null,
+    "hugo": "10958-ricerca-operatori-indy",
+    "date": "2001-07-31",
+    "time": "13:06:44",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "13",
+    "minute": "06",
+    "second": "44"
+  },
+  {
+    "id": 10959,
+    "heading": "Da FI Vacanze premio per il CC che ha sparato a Carlo",
+    "created": "2001-07-31 17:53:51",
+    "linked_file": null,
+    "hugo": "10959-da-fi-vacanze-premio-per-il-cc-che-ha-sparato-a-carlo",
+    "date": "2001-07-31",
+    "time": "17:53:51",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "53",
+    "second": "51"
+  },
+  {
+    "id": 10960,
+    "heading": "per favore, indicatemi altri forum ...",
+    "created": "2001-07-31 13:49:01",
+    "linked_file": null,
+    "hugo": "10960-per-favore-indicatemi-altri-forum-",
+    "date": "2001-07-31",
+    "time": "13:49:01",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "13",
+    "minute": "49",
+    "second": "01"
+  },
+  {
+    "id": 10961,
+    "heading": "All'Attenz.one di Giuliano Giuliani",
+    "created": "2001-08-01 02:11:25",
+    "linked_file": null,
+    "hugo": "10961-allattenzone-di-giuliano-giuliani",
+    "date": "2001-08-01",
+    "time": "02:11:25",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "02",
+    "minute": "11",
+    "second": "25"
+  },
+  {
+    "id": 10973,
+    "heading": "non riesco a capire. Ma davvero ..",
+    "created": "2001-07-31 15:45:48",
+    "linked_file": null,
+    "hugo": "10973-non-riesco-a-capire-ma-davvero-",
+    "date": "2001-07-31",
+    "time": "15:45:48",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "45",
+    "second": "48"
+  },
+  {
+    "id": 10979,
+    "heading": "Nerone a Genova",
+    "created": "2001-07-31 17:03:42",
+    "linked_file": null,
+    "hugo": "10979-nerone-a-genova",
+    "date": "2001-07-31",
+    "time": "17:03:42",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "03",
+    "second": "42"
+  },
+  {
+    "id": 10985,
+    "heading": "Per Firenze",
+    "created": "2001-07-31 14:58:29",
+    "linked_file": null,
+    "hugo": "10985-per-firenze",
+    "date": "2001-07-31",
+    "time": "14:58:29",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "58",
+    "second": "29"
+  },
+  {
+    "id": 10989,
+    "heading": "NOMI E COGNOMI DEI CARABINIERI ASSASSINI",
+    "created": "2001-07-31 15:12:41",
+    "linked_file": null,
+    "hugo": "10989-nomi-e-cognomi-dei-carabinieri-assassini",
+    "date": "2001-07-31",
+    "time": "15:12:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "12",
+    "second": "41"
+  },
+  {
+    "id": 10996,
+    "heading": "healing trauma for activists",
+    "created": "2001-07-31 14:49:33",
+    "linked_file": null,
+    "hugo": "10996-healing-trauma-for-activists",
+    "date": "2001-07-31",
+    "time": "14:49:33",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "49",
+    "second": "33"
+  },
+  {
+    "id": 10998,
+    "heading": "L'ESTINTORE",
+    "created": "2001-07-31 17:36:43",
+    "linked_file": null,
+    "hugo": "10998-lestintore",
+    "date": "2001-07-31",
+    "time": "17:36:43",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "36",
+    "second": "43"
+  },
+  {
+    "id": 11005,
+    "heading": "L'ESTINTORE",
+    "created": "2001-07-31 15:04:02",
+    "linked_file": null,
+    "hugo": "11005-lestintore",
+    "date": "2001-07-31",
+    "time": "15:04:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "04",
+    "second": "02"
+  },
+  {
+    "id": 11016,
+    "heading": "Italy/G8 Summit: Amnesty International calls for commission of inquiry",
+    "created": "2001-07-31 15:53:18",
+    "linked_file": null,
+    "hugo": "11016-italyg8-summit-amnesty-international-calls-for-commission-of-inquiry",
+    "date": "2001-07-31",
+    "time": "15:53:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "53",
+    "second": "18"
+  },
+  {
+    "id": 11021,
+    "heading": "Considerations on violence in the context of mass mobilization",
+    "created": "2001-07-31 17:18:20",
+    "linked_file": null,
+    "hugo": "11021-considerations-on-violence-in-the-context-of-mass-mobilization",
+    "date": "2001-07-31",
+    "time": "17:18:20",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "18",
+    "second": "20"
+  },
+  {
+    "id": 11032,
+    "heading": "PROPOSTA DI LEGGE",
+    "created": "2001-08-01 01:59:33",
+    "linked_file": null,
+    "hugo": "11032-proposta-di-legge",
+    "date": "2001-08-01",
+    "time": "01:59:33",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "01",
+    "minute": "59",
+    "second": "33"
+  },
+  {
+    "id": 11051,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 16:45:30",
+    "linked_file": "2001/07/6oxm8j6.jpg",
+    "hugo": "11051-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "16:45:30",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "16",
+    "minute": "45",
+    "second": "30"
+  },
+  {
+    "id": 11052,
+    "heading": "Presidio sotto il carcere di Alessandria",
+    "created": "2001-07-31 19:17:24",
+    "linked_file": null,
+    "hugo": "11052-presidio-sotto-il-carcere-di-alessandria",
+    "date": "2001-07-31",
+    "time": "19:17:24",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "17",
+    "second": "24"
+  },
+  {
+    "id": 11055,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 23:02:01",
+    "linked_file": "2001/08/7lowosj.jpg",
+    "hugo": "11055-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "23:02:01",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "23",
+    "minute": "02",
+    "second": "01"
+  },
+  {
+    "id": 11057,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 16:53:36",
+    "linked_file": "2001/07/74oaqyp.jpg",
+    "hugo": "11057-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "16:53:36",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "16",
+    "minute": "53",
+    "second": "36"
+  },
+  {
+    "id": 11061,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:03:11",
+    "linked_file": "2001/08/8.jpg",
+    "hugo": "11061-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:03:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "03",
+    "second": "11"
+  },
+  {
+    "id": 11067,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:17:38",
+    "linked_file": "2001/08/9rmppxo.jpg",
+    "hugo": "11067-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:17:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "17",
+    "second": "38"
+  },
+  {
+    "id": 11078,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:37:27",
+    "linked_file": "2001/08/10.jpg",
+    "hugo": "11078-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:37:27",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "37",
+    "second": "27"
+  },
+  {
+    "id": 11081,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:44:11",
+    "linked_file": "2001/08/11.jpg",
+    "hugo": "11081-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:44:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "44",
+    "second": "11"
+  },
+  {
+    "id": 11083,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:52:14",
+    "linked_file": null,
+    "hugo": "11083-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:52:14",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "52",
+    "second": "14"
+  },
+  {
+    "id": 11084,
+    "heading": "photoseries of genoa protests",
+    "created": "2001-07-31 17:53:39",
+    "linked_file": "2001/08/indeximage.jpg",
+    "hugo": "11084-photoseries-of-genoa-protests",
+    "date": "2001-07-31",
+    "time": "17:53:39",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "53",
+    "second": "39"
+  },
+  {
+    "id": 11087,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:00:36",
+    "linked_file": "2001/08/13.jpg",
+    "hugo": "11087-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:00:36",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "00",
+    "second": "36"
+  },
+  {
+    "id": 11088,
+    "heading": "Le foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:13:23",
+    "linked_file": "2001/08/14.jpg",
+    "hugo": "11088-le-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:13:23",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "13",
+    "second": "23"
+  },
+  {
+    "id": 11090,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:19:41",
+    "linked_file": "2001/08/15.jpg",
+    "hugo": "11090-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:19:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "19",
+    "second": "41"
+  },
+  {
+    "id": 11091,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:25:41",
+    "linked_file": null,
+    "hugo": "11091-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:25:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "25",
+    "second": "41"
+  },
+  {
+    "id": 11092,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:32:17",
+    "linked_file": "2001/08/17.jpg",
+    "hugo": "11092-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:32:17",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "32",
+    "second": "17"
+  },
+  {
+    "id": 11093,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:35:52",
+    "linked_file": null,
+    "hugo": "11093-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:35:52",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "35",
+    "second": "52"
+  },
+  {
+    "id": 11094,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:41:50",
+    "linked_file": "2001/08/19.jpg",
+    "hugo": "11094-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:41:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "41",
+    "second": "50"
+  },
+  {
+    "id": 11099,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:54:41",
+    "linked_file": "2001/08/20.jpg",
+    "hugo": "11099-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:54:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "54",
+    "second": "41"
+  },
+  {
+    "id": 11102,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 19:08:26",
+    "linked_file": "2001/08/227k0thj.jpg",
+    "hugo": "11102-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "19:08:26",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "08",
+    "second": "26"
+  },
+  {
+    "id": 11105,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 19:24:01",
+    "linked_file": "2001/08/23.jpg",
+    "hugo": "11105-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "19:24:01",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "24",
+    "second": "01"
+  },
+  {
+    "id": 11113,
+    "heading": "more fotos",
+    "created": "2001-07-31 22:30:10",
+    "linked_file": null,
+    "hugo": "11113-more-fotos",
+    "date": "2001-07-31",
+    "time": "22:30:10",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "22",
+    "minute": "30",
+    "second": "10"
+  },
+  {
+    "id": 11114,
+    "heading": "en, ca ) genoa solidarity actions/messages from ukraine/india/",
+    "created": "2001-07-31 20:57:38",
+    "linked_file": null,
+    "hugo": "11114-en-ca-genoa-solidarity-actionsmessages-from-ukraineindia",
+    "date": "2001-07-31",
+    "time": "20:57:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "20",
+    "minute": "57",
+    "second": "38"
+  },
+  {
+    "id": 11141,
+    "heading": "Genoa riot inquiry criticises police \r\rGenoa riot inquiry criticises police \r",
+    "created": "2001-08-01 02:33:58",
+    "linked_file": null,
+    "hugo": "11141-genoa-riot-inquiry-criticises-police-genoa-riot-inquiry-criticises-police",
+    "date": "2001-08-01",
+    "time": "02:33:58",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "02",
+    "minute": "33",
+    "second": "58"
+  },
+  {
+    "id": 11143,
+    "heading": "THE TIMES Genoa riot inquiry criticises police",
+    "created": "2001-08-01 02:35:33",
+    "linked_file": null,
+    "hugo": "11143-the-times-genoa-riot-inquiry-criticises-police",
+    "date": "2001-08-01",
+    "time": "02:35:33",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "02",
+    "minute": "35",
+    "second": "33"
+  },
+  {
+    "id": 1234,
+    "heading": "Scontri 17/03/2001",
+    "created": "2001-07-23 01:54:50",
+    "linked_file": "2001/07/angelo_collage.jpg",
+    "hugo": "1234-scontri-17032001",
+    "date": "2001-07-23",
+    "time": "01:54:50",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "54",
+    "second": "50"
+  },
+  {
+    "id": 1367,
+    "heading": "ancora il noglobal",
+    "created": "2001-07-27 02:24:06",
+    "linked_file": "2001/07/carica_piazza_borsa02.jpg",
+    "hugo": "1367-ancora-il-noglobal",
+    "date": "2001-07-27",
+    "time": "02:24:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "24",
+    "second": "06"
+  },
+  {
+    "id": 18295,
+    "heading": "BREVE PARENTESI",
+    "created": "2001-07-05 22:56:15",
+    "linked_file": null,
+    "hugo": "18295-breve-parentesi",
+    "date": "2001-07-05",
+    "time": "22:56:15",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "22",
+    "minute": "56",
+    "second": "15"
+  },
+  {
+    "id": 18411,
+    "heading": "Inaccettabile il divieto di manifestare: Rizzo, Violante, Angius",
+    "created": "2001-07-05 18:59:52",
+    "linked_file": null,
+    "hugo": "18411-inaccettabile-il-divieto-di-manifestare-rizzo-violante-angius",
+    "date": "2001-07-05",
+    "time": "18:59:52",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "18",
+    "minute": "59",
+    "second": "52"
+  },
+  {
+    "id": 18422,
+    "heading": "diritti civili",
+    "created": "2001-07-05 19:48:01",
+    "linked_file": null,
+    "hugo": "18422-diritti-civili",
+    "date": "2001-07-05",
+    "time": "19:48:01",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "19",
+    "minute": "48",
+    "second": "01"
+  },
+  {
+    "id": 18433,
+    "heading": "NAVE PROFUGHI TAMPA E' VUOTA",
+    "created": "2001-07-05 20:49:09",
+    "linked_file": null,
+    "hugo": "18433-nave-profughi-tampa-e-vuota",
+    "date": "2001-07-05",
+    "time": "20:49:09",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "20",
+    "minute": "49",
+    "second": "09"
+  },
+  {
+    "id": 1861,
+    "heading": "Dalle moltitudini d'Europa in marcia contro l'Impero",
+    "created": "2001-07-11 02:15:58",
+    "linked_file": "2001/07/dalle_molt.txt",
+    "hugo": "1861-dalle-moltitudini-deuropa-in-marcia-contro-limpero",
+    "date": "2001-07-11",
+    "time": "02:15:58",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "02",
+    "minute": "15",
+    "second": "58"
+  },
+  {
+    "id": 1872,
+    "heading": "vota CONTRO",
+    "created": "2001-07-26 16:09:34",
+    "linked_file": "2001/07/gruppo.jpg",
+    "hugo": "1872-vota-contro",
+    "date": "2001-07-26",
+    "time": "16:09:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "09",
+    "second": "34"
+  },
+  {
+    "id": 1895,
+    "heading": "BLOCCHIAMO IL G8",
+    "created": "2001-07-31 08:25:38",
+    "linked_file": "2001/07/senzacompromessi1.jpg",
+    "hugo": "1895-blocchiamo-il-g8",
+    "date": "2001-07-31",
+    "time": "08:25:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "25",
+    "second": "38"
+  },
+  {
+    "id": 1911,
+    "heading": "Regalo di un Carabiniere Vigliacco !",
+    "created": "2001-07-28 07:56:39",
+    "linked_file": "2001/07/freelance24h_copyright_.jpg",
+    "hugo": "1911-regalo-di-un-carabiniere-vigliacco-",
+    "date": "2001-07-28",
+    "time": "07:56:39",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "56",
+    "second": "39"
+  },
+  {
+    "id": 2111,
+    "heading": "Goteborg calling",
+    "created": "2001-07-26 07:55:58",
+    "linked_file": null,
+    "hugo": "2111-goteborg-calling",
+    "date": "2001-07-26",
+    "time": "07:55:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "55",
+    "second": "58"
+  },
+  {
+    "id": 2338,
+    "heading": "JULY, 19TH-21: G8- EVERYONE TO GENOA!",
+    "created": "2001-07-01 06:37:30",
+    "linked_file": null,
+    "hugo": "2338-july-19th21-g8-everyone-to-genoa",
+    "date": "2001-07-01",
+    "time": "06:37:30",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "06",
+    "minute": "37",
+    "second": "30"
+  },
+  {
+    "id": 2346,
+    "heading": "\"TERRA MIA\", CHIENA 'E AMIANTO",
+    "created": "2001-07-23 03:01:33",
+    "linked_file": "2001/07/bagnoli2.jpg",
+    "hugo": "2346-terra-mia-chiena-e-amianto",
+    "date": "2001-07-23",
+    "time": "03:01:33",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "01",
+    "second": "33"
+  },
+  {
+    "id": 2373,
+    "heading": "Vademecum Legale per Media Attivisti",
+    "created": "2001-07-22 15:27:29",
+    "linked_file": null,
+    "hugo": "2373-vademecum-legale-per-media-attivisti",
+    "date": "2001-07-22",
+    "time": "15:27:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "27",
+    "second": "29"
+  },
+  {
+    "id": 2378,
+    "heading": "Information on Genova?",
+    "created": "2001-07-01 23:15:45",
+    "linked_file": null,
+    "hugo": "2378-information-on-genova",
+    "date": "2001-07-01",
+    "time": "23:15:45",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "23",
+    "minute": "15",
+    "second": "45"
+  },
+  {
+    "id": 2380,
+    "heading": "per l'autodeterminazione delle donne",
+    "created": "2001-07-19 09:31:58",
+    "linked_file": "2001/07/manifest_donne.jpg",
+    "hugo": "2380-per-lautodeterminazione-delle-donne",
+    "date": "2001-07-19",
+    "time": "09:31:58",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "09",
+    "minute": "31",
+    "second": "58"
+  },
+  {
+    "id": 2381,
+    "heading": "Prossima Fermata Genova",
+    "created": "2001-07-18 08:06:01",
+    "linked_file": null,
+    "hugo": "2381-prossima-fermata-genova",
+    "date": "2001-07-18",
+    "time": "08:06:01",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "06",
+    "second": "01"
+  },
+  {
+    "id": 2383,
+    "heading": "IMC Center e azioni mediatiche",
+    "created": "2001-07-17 11:31:36",
+    "linked_file": null,
+    "hugo": "2383-imc-center-e-azioni-mediatiche",
+    "date": "2001-07-17",
+    "time": "11:31:36",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "31",
+    "second": "36"
+  },
+  {
+    "id": 2386,
+    "heading": "Initiatives during j21",
+    "created": "2001-07-02 12:10:46",
+    "linked_file": null,
+    "hugo": "2386-initiatives-during-j21",
+    "date": "2001-07-02",
+    "time": "12:10:46",
+    "year": "2001",
+    "month": "07",
+    "day": "02",
+    "hour": "12",
+    "minute": "10",
+    "second": "46"
+  },
+  {
+    "id": 2387,
+    "heading": "IMC Center and Media Actions",
+    "created": "2001-07-18 08:08:17",
+    "linked_file": null,
+    "hugo": "2387-imc-center-and-media-actions",
+    "date": "2001-07-18",
+    "time": "08:08:17",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "08",
+    "second": "17"
+  },
+  {
+    "id": 2394,
+    "heading": "cartina di genova",
+    "created": "2001-07-17 07:23:03",
+    "linked_file": "2001/07/ge_big.jpg",
+    "hugo": "2394-cartina-di-genova",
+    "date": "2001-07-17",
+    "time": "07:23:03",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "23",
+    "second": "03"
+  },
+  {
+    "id": 2396,
+    "heading": "Come arrivare in macchina a Genova",
+    "created": "2001-07-12 13:17:58",
+    "linked_file": "2001/07/genovaroadmap.gif",
+    "hugo": "2396-come-arrivare-in-macchina-a-genova",
+    "date": "2001-07-12",
+    "time": "13:17:58",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "13",
+    "minute": "17",
+    "second": "58"
+  },
+  {
+    "id": 2397,
+    "heading": "Genova citta' piu' dettagliata",
+    "created": "2001-07-04 03:44:12",
+    "linked_file": "2001/07/genovacitta.gif",
+    "hugo": "2397-genova-citta-piu-dettagliata",
+    "date": "2001-07-04",
+    "time": "03:44:12",
+    "year": "2001",
+    "month": "07",
+    "day": "04",
+    "hour": "03",
+    "minute": "44",
+    "second": "12"
+  },
+  {
+    "id": 2405,
+    "heading": "Palermo antiG8. Sequestrato dai CC il manifesto del coord. antiproibizionista",
+    "created": "2001-07-01 06:22:51",
+    "linked_file": null,
+    "hugo": "2405-palermo-antig8-sequestrato-dai-cc-il-manifesto-del-coord-antiproibizionista",
+    "date": "2001-07-01",
+    "time": "06:22:51",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "06",
+    "minute": "22",
+    "second": "51"
+  },
+  {
+    "id": 2412,
+    "heading": "G8 CONTRO TUTTI - TUTTI CONTRO G8",
+    "created": "2001-07-01 12:29:33",
+    "linked_file": null,
+    "hugo": "2412-g8-contro-tutti-tutti-contro-g8",
+    "date": "2001-07-01",
+    "time": "12:29:33",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "12",
+    "minute": "29",
+    "second": "33"
+  },
+  {
+    "id": 2416,
+    "heading": "\"In soccorso (al vincente\"",
+    "created": "2001-07-01 18:07:59",
+    "linked_file": null,
+    "hugo": "2416-in-soccorso-al-vincente",
+    "date": "2001-07-01",
+    "time": "18:07:59",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "18",
+    "minute": "07",
+    "second": "59"
+  },
+  {
+    "id": 2418,
+    "heading": "imagine all the people",
+    "created": "2001-07-02 15:30:36",
+    "linked_file": "2001/07/johnlennon.jpg",
+    "hugo": "2418-imagine-all-the-people",
+    "date": "2001-07-02",
+    "time": "15:30:36",
+    "year": "2001",
+    "month": "07",
+    "day": "02",
+    "hour": "15",
+    "minute": "30",
+    "second": "36"
+  },
+  {
+    "id": 2419,
+    "heading": "Pocket-Guide First Aid",
+    "created": "2001-07-19 22:19:31",
+    "linked_file": null,
+    "hugo": "2419-pocketguide-first-aid",
+    "date": "2001-07-19",
+    "time": "22:19:31",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "22",
+    "minute": "19",
+    "second": "31"
+  },
+  {
+    "id": 2422,
+    "heading": "G8 - Berlusconi`s Elaborate Mousetrap",
+    "created": "2001-07-03 05:37:15",
+    "linked_file": null,
+    "hugo": "2422-g8-berlusconis-elaborate-mousetrap",
+    "date": "2001-07-03",
+    "time": "05:37:15",
+    "year": "2001",
+    "month": "07",
+    "day": "03",
+    "hour": "05",
+    "minute": "37",
+    "second": "15"
+  },
+  {
+    "id": 2425,
+    "heading": "Next Stop : Genoa",
+    "created": "2001-07-06 09:50:19",
+    "linked_file": null,
+    "hugo": "2425-next-stop-genoa",
+    "date": "2001-07-06",
+    "time": "09:50:19",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "09",
+    "minute": "50",
+    "second": "19"
+  },
+  {
+    "id": 2429,
+    "heading": "[en] vademecum",
+    "created": "2001-07-17 04:51:55",
+    "linked_file": null,
+    "hugo": "2429-en-vademecum",
+    "date": "2001-07-17",
+    "time": "04:51:55",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "51",
+    "second": "55"
+  },
+  {
+    "id": 2430,
+    "heading": "ordinanza del prefetto di genova",
+    "created": "2001-07-16 06:37:17",
+    "linked_file": null,
+    "hugo": "2430-ordinanza-del-prefetto-di-genova",
+    "date": "2001-07-16",
+    "time": "06:37:17",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "06",
+    "minute": "37",
+    "second": "17"
+  },
+  {
+    "id": 2435,
+    "heading": "Torino 6 luglio assemblea per lo sciopero generale contro il G8",
+    "created": "2001-07-03 03:22:00",
+    "linked_file": null,
+    "hugo": "2435-torino-6-luglio-assemblea-per-lo-sciopero-generale-contro-il-g8",
+    "date": "2001-07-03",
+    "time": "03:22:00",
+    "year": "2001",
+    "month": "07",
+    "day": "03",
+    "hour": "03",
+    "minute": "22",
+    "second": "00"
+  },
+  {
+    "id": 2436,
+    "heading": "Anarchici contro il G8: comunicato dell'assemblea del 1 luglio",
+    "created": "2001-07-04 14:30:38",
+    "linked_file": null,
+    "hugo": "2436-anarchici-contro-il-g8-comunicato-dellassemblea-del-1-luglio",
+    "date": "2001-07-04",
+    "time": "14:30:38",
+    "year": "2001",
+    "month": "07",
+    "day": "04",
+    "hour": "14",
+    "minute": "30",
+    "second": "38"
+  },
+  {
+    "id": 2439,
+    "heading": "Occupazioni agenzie di lavoro interinale in tutto il Sud",
+    "created": "2001-07-03 11:49:07",
+    "linked_file": null,
+    "hugo": "2439-occupazioni-agenzie-di-lavoro-interinale-in-tutto-il-sud",
+    "date": "2001-07-03",
+    "time": "11:49:07",
+    "year": "2001",
+    "month": "07",
+    "day": "03",
+    "hour": "11",
+    "minute": "49",
+    "second": "07"
+  },
+  {
+    "id": 2457,
+    "heading": "La Tobin Tax fuori dal G8 di Genova...",
+    "created": "2001-07-07 18:14:44",
+    "linked_file": null,
+    "hugo": "2457-la-tobin-tax-fuori-dal-g8-di-genova",
+    "date": "2001-07-07",
+    "time": "18:14:44",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "18",
+    "minute": "14",
+    "second": "44"
+  },
+  {
+    "id": 2461,
+    "heading": "The Venice Biennale: Anti - Goteborg Picket and Incident – 23 June 2001",
+    "created": "2001-07-13 04:32:53",
+    "linked_file": "2001/07/image002.gif",
+    "hugo": "2461-the-venice-biennale-anti-goteborg-picket-and-incident-23-june-2001",
+    "date": "2001-07-13",
+    "time": "04:32:53",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "04",
+    "minute": "32",
+    "second": "53"
+  },
+  {
+    "id": 2474,
+    "heading": "programma del public  forum (ge, 16->22 luglio)",
+    "created": "2001-07-05 17:05:41",
+    "linked_file": "2001/07/vbjcdq.txt",
+    "hugo": "2474-programma-del-public-forum-ge-1622-luglio",
+    "date": "2001-07-05",
+    "time": "17:05:41",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "17",
+    "minute": "05",
+    "second": "41"
+  },
+  {
+    "id": 2476,
+    "heading": "programma manifestazioni del 19 20 e 21 a genova",
+    "created": "2001-07-07 07:45:52",
+    "linked_file": "2001/07/4hajjr.txt",
+    "hugo": "2476-programma-manifestazioni-del-19-20-e-21-a-genova",
+    "date": "2001-07-07",
+    "time": "07:45:52",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "07",
+    "minute": "45",
+    "second": "52"
+  },
+  {
+    "id": 2477,
+    "heading": "Zarrillo ci ha dato una mano",
+    "created": "2001-07-06 14:47:58",
+    "linked_file": null,
+    "hugo": "2477-zarrillo-ci-ha-dato-una-mano",
+    "date": "2001-07-06",
+    "time": "14:47:58",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "14",
+    "minute": "47",
+    "second": "58"
+  },
+  {
+    "id": 2482,
+    "heading": "G8",
+    "created": "2001-07-06 05:58:49",
+    "linked_file": "2001/07/a.jpg",
+    "hugo": "2482-g8",
+    "date": "2001-07-06",
+    "time": "05:58:49",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "05",
+    "minute": "58",
+    "second": "49"
+  },
+  {
+    "id": 2483,
+    "heading": "  Public Forum - genoa july 16th/22nd",
+    "created": "2001-07-06 09:08:38",
+    "linked_file": "2001/07/z4orr5.txt",
+    "hugo": "2483-public-forum-genoa-july-16th22nd",
+    "date": "2001-07-06",
+    "time": "09:08:38",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "09",
+    "minute": "08",
+    "second": "38"
+  },
+  {
+    "id": 2484,
+    "heading": "Genoa, 19-20-21 July Manifestations",
+    "created": "2001-07-06 09:14:16",
+    "linked_file": "2001/07/1xu6v2.txt",
+    "hugo": "2484-genoa-192021-july-manifestations",
+    "date": "2001-07-06",
+    "time": "09:14:16",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "09",
+    "minute": "14",
+    "second": "16"
+  },
+  {
+    "id": 2487,
+    "heading": "napoli: pestaggio sotto la nave del G8",
+    "created": "2001-07-09 13:59:13",
+    "linked_file": null,
+    "hugo": "2487-napoli-pestaggio-sotto-la-nave-del-g8",
+    "date": "2001-07-09",
+    "time": "13:59:13",
+    "year": "2001",
+    "month": "07",
+    "day": "09",
+    "hour": "13",
+    "minute": "59",
+    "second": "13"
+  },
+  {
+    "id": 2502,
+    "heading": "Direct Action against Repression /berlin",
+    "created": "2001-07-07 07:21:18",
+    "linked_file": null,
+    "hugo": "2502-direct-action-against-repression-berlin",
+    "date": "2001-07-07",
+    "time": "07:21:18",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "07",
+    "minute": "21",
+    "second": "18"
+  },
+  {
+    "id": 2505,
+    "heading": "Rassegna stampa verso Genova",
+    "created": "2001-07-07 09:18:55",
+    "linked_file": null,
+    "hugo": "2505-rassegna-stampa-verso-genova",
+    "date": "2001-07-07",
+    "time": "09:18:55",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "09",
+    "minute": "18",
+    "second": "55"
+  },
+  {
+    "id": 2508,
+    "heading": "Moltitudini in marcia contro l'impero (audio - it)",
+    "created": "2001-07-08 14:39:13",
+    "linked_file": "2001/07/moltitudini.rm",
+    "hugo": "2508-moltitudini-in-marcia-contro-limpero-audio-it",
+    "date": "2001-07-08",
+    "time": "14:39:13",
+    "year": "2001",
+    "month": "07",
+    "day": "08",
+    "hour": "14",
+    "minute": "39",
+    "second": "13"
+  },
+  {
+    "id": 2509,
+    "heading": "Qualcosa sta cambiando.....",
+    "created": "2001-07-08 08:12:07",
+    "linked_file": null,
+    "hugo": "2509-qualcosa-sta-cambiando",
+    "date": "2001-07-08",
+    "time": "08:12:07",
+    "year": "2001",
+    "month": "07",
+    "day": "08",
+    "hour": "08",
+    "minute": "12",
+    "second": "07"
+  },
+  {
+    "id": 2512,
+    "heading": "ECCOCI VENITE A PRENDERCI !!!",
+    "created": "2001-07-07 17:21:05",
+    "linked_file": null,
+    "hugo": "2512-eccoci-venite-a-prenderci-",
+    "date": "2001-07-07",
+    "time": "17:21:05",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "17",
+    "minute": "21",
+    "second": "05"
+  },
+  {
+    "id": 2515,
+    "heading": "(en) Update from Genoa Friday July 7th",
+    "created": "2001-07-09 03:15:39",
+    "linked_file": null,
+    "hugo": "2515-en-update-from-genoa-friday-july-7th",
+    "date": "2001-07-09",
+    "time": "03:15:39",
+    "year": "2001",
+    "month": "07",
+    "day": "09",
+    "hour": "03",
+    "minute": "15",
+    "second": "39"
+  },
+  {
+    "id": 2528,
+    "heading": "Prevenzione e trattamento x gas lacrimogeni e pepper spray",
+    "created": "2001-07-23 20:05:44",
+    "linked_file": null,
+    "hugo": "2528-prevenzione-e-trattamento-x-gas-lacrimogeni-e-pepper-spray",
+    "date": "2001-07-23",
+    "time": "20:05:44",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "05",
+    "second": "44"
+  },
+  {
+    "id": 2529,
+    "heading": "Testo del ricorso al TAR - zona rossa illegittima",
+    "created": "2001-07-08 18:32:21",
+    "linked_file": null,
+    "hugo": "2529-testo-del-ricorso-al-tar-zona-rossa-illegittima",
+    "date": "2001-07-08",
+    "time": "18:32:21",
+    "year": "2001",
+    "month": "07",
+    "day": "08",
+    "hour": "18",
+    "minute": "32",
+    "second": "21"
+  },
+  {
+    "id": 2534,
+    "heading": "Ensure you get to Genoa: Know your rights/Connaissez Vos Droits",
+    "created": "2001-07-09 17:09:02",
+    "linked_file": null,
+    "hugo": "2534-ensure-you-get-to-genoa-know-your-rightsconnaissez-vos-droits",
+    "date": "2001-07-09",
+    "time": "17:09:02",
+    "year": "2001",
+    "month": "07",
+    "day": "09",
+    "hour": "17",
+    "minute": "09",
+    "second": "02"
+  },
+  {
+    "id": 2549,
+    "heading": "Genova, ma continuiamo a seguirli?",
+    "created": "2001-07-10 06:54:17",
+    "linked_file": null,
+    "hugo": "2549-genova-ma-continuiamo-a-seguirli",
+    "date": "2001-07-10",
+    "time": "06:54:17",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "06",
+    "minute": "54",
+    "second": "17"
+  },
+  {
+    "id": 2551,
+    "heading": "Novita' su logistica",
+    "created": "2001-07-14 13:32:19",
+    "linked_file": null,
+    "hugo": "2551-novita-su-logistica",
+    "date": "2001-07-14",
+    "time": "13:32:19",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "13",
+    "minute": "32",
+    "second": "19"
+  },
+  {
+    "id": 2552,
+    "heading": "affinchè la protesta non si fermi a Genova",
+    "created": "2001-07-10 11:12:02",
+    "linked_file": null,
+    "hugo": "2552-affinche-la-protesta-non-si-fermi-a-genova",
+    "date": "2001-07-10",
+    "time": "11:12:02",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "11",
+    "minute": "12",
+    "second": "02"
+  },
+  {
+    "id": 2556,
+    "heading": "GENOA WILL NOT BE PORTO ALEGRE",
+    "created": "2001-07-11 09:13:27",
+    "linked_file": null,
+    "hugo": "2556-genoa-will-not-be-porto-alegre",
+    "date": "2001-07-11",
+    "time": "09:13:27",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "09",
+    "minute": "13",
+    "second": "27"
+  },
+  {
+    "id": 2561,
+    "heading": "Tute bianche",
+    "created": "2001-07-10 08:53:47",
+    "linked_file": "2001/07/god.jpg",
+    "hugo": "2561-tute-bianche",
+    "date": "2001-07-10",
+    "time": "08:53:47",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "08",
+    "minute": "53",
+    "second": "47"
+  },
+  {
+    "id": 2567,
+    "heading": "Torino: aperitivo contro il G8",
+    "created": "2001-07-10 14:56:31",
+    "linked_file": null,
+    "hugo": "2567-torino-aperitivo-contro-il-g8",
+    "date": "2001-07-10",
+    "time": "14:56:31",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "14",
+    "minute": "56",
+    "second": "31"
+  },
+  {
+    "id": 2570,
+    "heading": "carovana di biciclette a genova",
+    "created": "2001-07-10 15:45:04",
+    "linked_file": null,
+    "hugo": "2570-carovana-di-biciclette-a-genova",
+    "date": "2001-07-10",
+    "time": "15:45:04",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "15",
+    "minute": "45",
+    "second": "04"
+  },
+  {
+    "id": 2574,
+    "heading": "Luca Casarini's past re-emerges: he had stalinist friends!",
+    "created": "2001-07-10 19:20:52",
+    "linked_file": "2001/07/casarinistalin.jpg",
+    "hugo": "2574-luca-casarinis-past-reemerges-he-had-stalinist-friends",
+    "date": "2001-07-10",
+    "time": "19:20:52",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "19",
+    "minute": "20",
+    "second": "52"
+  },
+  {
+    "id": 2576,
+    "heading": "genoa infosheet july 10",
+    "created": "2001-07-10 21:45:26",
+    "linked_file": null,
+    "hugo": "2576-genoa-infosheet-july-10",
+    "date": "2001-07-10",
+    "time": "21:45:26",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "21",
+    "minute": "45",
+    "second": "26"
+  },
+  {
+    "id": 2584,
+    "heading": "Attenzione! Un altro attacco è stato sferrato da Studio Aperto e TG la 7 contro",
+    "created": "2001-07-11 05:04:25",
+    "linked_file": null,
+    "hugo": "2584-attenzione-un-altro-attacco-e-stato-sferrato-da-studio-aperto-e-tg-la-7-contro",
+    "date": "2001-07-11",
+    "time": "05:04:25",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "05",
+    "minute": "04",
+    "second": "25"
+  },
+  {
+    "id": 2587,
+    "heading": "Clima. Bonn e Genova, sfida in contemporanea su Kyoto",
+    "created": "2001-07-11 06:55:42",
+    "linked_file": null,
+    "hugo": "2587-clima-bonn-e-genova-sfida-in-contemporanea-su-kyoto",
+    "date": "2001-07-11",
+    "time": "06:55:42",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "06",
+    "minute": "55",
+    "second": "42"
+  },
+  {
+    "id": 2591,
+    "heading": " UNA CAROVANA VERSO GENOVA",
+    "created": "2001-07-11 08:04:03",
+    "linked_file": null,
+    "hugo": "2591-una-carovana-verso-genova",
+    "date": "2001-07-11",
+    "time": "08:04:03",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "08",
+    "minute": "04",
+    "second": "03"
+  },
+  {
+    "id": 2592,
+    "heading": " CONTRO IL G8: NASCE RADIO GAP - GLOBAL AUDIO PROJECT",
+    "created": "2001-07-16 06:01:30",
+    "linked_file": null,
+    "hugo": "2592-contro-il-g8-nasce-radio-gap-global-audio-project",
+    "date": "2001-07-16",
+    "time": "06:01:30",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "06",
+    "minute": "01",
+    "second": "30"
+  },
+  {
+    "id": 2593,
+    "heading": "radio popolare network a genova",
+    "created": "2001-07-11 08:30:07",
+    "linked_file": null,
+    "hugo": "2593-radio-popolare-network-a-genova",
+    "date": "2001-07-11",
+    "time": "08:30:07",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "08",
+    "minute": "30",
+    "second": "07"
+  },
+  {
+    "id": 2597,
+    "heading": "No Global: Zona D'Ombra verso Genova",
+    "created": "2001-07-12 10:55:40",
+    "linked_file": null,
+    "hugo": "2597-no-global-zona-dombra-verso-genova",
+    "date": "2001-07-12",
+    "time": "10:55:40",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "10",
+    "minute": "55",
+    "second": "40"
+  },
+  {
+    "id": 2598,
+    "heading": "Anti-G8: primi respinti alla frontiera Ch/I",
+    "created": "2001-07-12 07:54:42",
+    "linked_file": null,
+    "hugo": "2598-antig8-primi-respinti-alla-frontiera-chi",
+    "date": "2001-07-12",
+    "time": "07:54:42",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "07",
+    "minute": "54",
+    "second": "42"
+  },
+  {
+    "id": 2599,
+    "heading": "treno dalla svizzera per genova 16.luglio",
+    "created": "2001-07-11 14:22:51",
+    "linked_file": null,
+    "hugo": "2599-treno-dalla-svizzera-per-genova-16luglio",
+    "date": "2001-07-11",
+    "time": "14:22:51",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "14",
+    "minute": "22",
+    "second": "51"
+  },
+  {
+    "id": 2602,
+    "heading": "Di cosa si discute al g8?",
+    "created": "2001-07-11 15:15:31",
+    "linked_file": "2001/07/cartello_g8.jpg",
+    "hugo": "2602-di-cosa-si-discute-al-g8",
+    "date": "2001-07-11",
+    "time": "15:15:31",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "15",
+    "minute": "15",
+    "second": "31"
+  },
+  {
+    "id": 2603,
+    "heading": "Come arrivare all'Information e al Converge Center",
+    "created": "2001-07-11 15:27:05",
+    "linked_file": "2001/07/imccenter.jpg",
+    "hugo": "2603-come-arrivare-allinformation-e-al-converge-center",
+    "date": "2001-07-11",
+    "time": "15:27:05",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "15",
+    "minute": "27",
+    "second": "05"
+  },
+  {
+    "id": 2605,
+    "heading": "street parade autostradale palermo-genova",
+    "created": "2001-07-11 19:48:52",
+    "linked_file": null,
+    "hugo": "2605-street-parade-autostradale-palermogenova",
+    "date": "2001-07-11",
+    "time": "19:48:52",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "19",
+    "minute": "48",
+    "second": "52"
+  },
+  {
+    "id": 2607,
+    "heading": "genoa anarchist solidarity ship",
+    "created": "2001-07-12 05:28:59",
+    "linked_file": null,
+    "hugo": "2607-genoa-anarchist-solidarity-ship",
+    "date": "2001-07-12",
+    "time": "05:28:59",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "05",
+    "minute": "28",
+    "second": "59"
+  },
+  {
+    "id": 2608,
+    "heading": "mass media spin - missiles !",
+    "created": "2001-07-12 22:50:58",
+    "linked_file": null,
+    "hugo": "2608-mass-media-spin-missiles-",
+    "date": "2001-07-12",
+    "time": "22:50:58",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "22",
+    "minute": "50",
+    "second": "58"
+  },
+  {
+    "id": 2609,
+    "heading": "Genoa G8 : Mediterranean Solidarity ship arrives in Italian Waters.",
+    "created": "2001-07-12 22:48:07",
+    "linked_file": "2001/07/boat__2_.mp3",
+    "hugo": "2609-genoa-g8-mediterranean-solidarity-ship-arrives-in-italian-waters",
+    "date": "2001-07-12",
+    "time": "22:48:07",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "22",
+    "minute": "48",
+    "second": "07"
+  },
+  {
+    "id": 2610,
+    "heading": "ASSICURAZIONE!!!!!!!",
+    "created": "2001-07-12 02:09:50",
+    "linked_file": null,
+    "hugo": "2610-assicurazione",
+    "date": "2001-07-12",
+    "time": "02:09:50",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "02",
+    "minute": "09",
+    "second": "50"
+  },
+  {
+    "id": 2614,
+    "heading": "Berlusconi su difesa lissilistica del G8: \"ghe pensi mi\"",
+    "created": "2001-07-12 04:22:21",
+    "linked_file": null,
+    "hugo": "2614-berlusconi-su-difesa-lissilistica-del-g8-ghe-pensi-mi",
+    "date": "2001-07-12",
+    "time": "04:22:21",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "04",
+    "minute": "22",
+    "second": "21"
+  },
+  {
+    "id": 2616,
+    "heading": " PUBLIC FORUM \"UNALTRO MONDO E' POSSIBILE\"",
+    "created": "2001-07-12 05:02:10",
+    "linked_file": null,
+    "hugo": "2616-public-forum-unaltro-mondo-e-possibile",
+    "date": "2001-07-12",
+    "time": "05:02:10",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "05",
+    "minute": "02",
+    "second": "10"
+  },
+  {
+    "id": 2620,
+    "heading": "Calendario delle Mobilitazioni prima e durante Genova.",
+    "created": "2001-07-18 13:04:56",
+    "linked_file": null,
+    "hugo": "2620-calendario-delle-mobilitazioni-prima-e-durante-genova",
+    "date": "2001-07-18",
+    "time": "13:04:56",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "04",
+    "second": "56"
+  },
+  {
+    "id": 2622,
+    "heading": "IMC map",
+    "created": "2001-07-13 03:22:35",
+    "linked_file": "2001/07/imc.gif",
+    "hugo": "2622-imc-map",
+    "date": "2001-07-13",
+    "time": "03:22:35",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "03",
+    "minute": "22",
+    "second": "35"
+  },
+  {
+    "id": 2625,
+    "heading": "Ancora repressione per i Pugliesi",
+    "created": "2001-07-12 09:24:32",
+    "linked_file": null,
+    "hugo": "2625-ancora-repressione-per-i-pugliesi",
+    "date": "2001-07-12",
+    "time": "09:24:32",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "24",
+    "second": "32"
+  },
+  {
+    "id": 2626,
+    "heading": "Coordinamento Salernitano STOPG8",
+    "created": "2001-07-12 09:06:25",
+    "linked_file": null,
+    "hugo": "2626-coordinamento-salernitano-stopg8",
+    "date": "2001-07-12",
+    "time": "09:06:25",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "06",
+    "second": "25"
+  },
+  {
+    "id": 2634,
+    "heading": "Andare a Genova da Torino",
+    "created": "2001-07-12 09:18:35",
+    "linked_file": null,
+    "hugo": "2634-andare-a-genova-da-torino",
+    "date": "2001-07-12",
+    "time": "09:18:35",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "18",
+    "second": "35"
+  },
+  {
+    "id": 2635,
+    "heading": "In autostrada DALL'ITALIA verso Genova",
+    "created": "2001-07-12 09:19:54",
+    "linked_file": null,
+    "hugo": "2635-in-autostrada-dallitalia-verso-genova",
+    "date": "2001-07-12",
+    "time": "09:19:54",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "19",
+    "second": "54"
+  },
+  {
+    "id": 2636,
+    "heading": "In autostrada/strada DALL'ESTERO verso genova",
+    "created": "2001-07-12 09:20:55",
+    "linked_file": null,
+    "hugo": "2636-in-autostradastrada-dallestero-verso-genova",
+    "date": "2001-07-12",
+    "time": "09:20:55",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "20",
+    "second": "55"
+  },
+  {
+    "id": 2638,
+    "heading": "indy@ge [deutsch]",
+    "created": "2001-07-16 13:56:41",
+    "linked_file": "2001/07/xjf7jq.txt",
+    "hugo": "2638-indyge-deutsch",
+    "date": "2001-07-16",
+    "time": "13:56:41",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "13",
+    "minute": "56",
+    "second": "41"
+  },
+  {
+    "id": 2640,
+    "heading": "Firenze contro il G8",
+    "created": "2001-07-13 08:55:23",
+    "linked_file": null,
+    "hugo": "2640-firenze-contro-il-g8",
+    "date": "2001-07-13",
+    "time": "08:55:23",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "08",
+    "minute": "55",
+    "second": "23"
+  },
+  {
+    "id": 2642,
+    "heading": "Tute bianche di Bologna contro McDonald's",
+    "created": "2001-07-12 13:58:19",
+    "linked_file": null,
+    "hugo": "2642-tute-bianche-di-bologna-contro-mcdonalds",
+    "date": "2001-07-12",
+    "time": "13:58:19",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "13",
+    "minute": "58",
+    "second": "19"
+  },
+  {
+    "id": 2643,
+    "heading": "Tute bianche di Bologna contro McDonald's",
+    "created": "2001-07-12 16:57:44",
+    "linked_file": null,
+    "hugo": "2643-tute-bianche-di-bologna-contro-mcdonalds",
+    "date": "2001-07-12",
+    "time": "16:57:44",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "16",
+    "minute": "57",
+    "second": "44"
+  },
+  {
+    "id": 2644,
+    "heading": "manifestazione ad Agrigento!!!!",
+    "created": "2001-07-13 04:32:46",
+    "linked_file": null,
+    "hugo": "2644-manifestazione-ad-agrigento",
+    "date": "2001-07-13",
+    "time": "04:32:46",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "04",
+    "minute": "32",
+    "second": "46"
+  },
+  {
+    "id": 2649,
+    "heading": "Genoa: the Info Center it's getting ready...",
+    "created": "2001-07-12 15:20:28",
+    "linked_file": null,
+    "hugo": "2649-genoa-the-info-center-its-getting-ready",
+    "date": "2001-07-12",
+    "time": "15:20:28",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "15",
+    "minute": "20",
+    "second": "28"
+  },
+  {
+    "id": 2651,
+    "heading": "how to reach genova from abroad",
+    "created": "2001-07-12 17:56:55",
+    "linked_file": "2001/07/xwanfu.txt",
+    "hugo": "2651-how-to-reach-genova-from-abroad",
+    "date": "2001-07-12",
+    "time": "17:56:55",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "17",
+    "minute": "56",
+    "second": "55"
+  },
+  {
+    "id": 2652,
+    "heading": "logistics update",
+    "created": "2001-07-14 11:55:46",
+    "linked_file": "2001/07/kajach.txt",
+    "hugo": "2652-logistics-update",
+    "date": "2001-07-14",
+    "time": "11:55:46",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "11",
+    "minute": "55",
+    "second": "46"
+  },
+  {
+    "id": 2654,
+    "heading": "A PROPOSAL TO WORLD ACTIVISTS IN GENOA",
+    "created": "2001-07-17 02:38:50",
+    "linked_file": "2001/07/g8palace.jpg",
+    "hugo": "2654-a-proposal-to-world-activists-in-genoa",
+    "date": "2001-07-17",
+    "time": "02:38:50",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "02",
+    "minute": "38",
+    "second": "50"
+  },
+  {
+    "id": 2657,
+    "heading": "border camps and against borders to genoa  etc info from schnews uk",
+    "created": "2001-07-13 01:44:33",
+    "linked_file": null,
+    "hugo": "2657-border-camps-and-against-borders-to-genoa-etc-info-from-schnews-uk",
+    "date": "2001-07-13",
+    "time": "01:44:33",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "01",
+    "minute": "44",
+    "second": "33"
+  },
+  {
+    "id": 2658,
+    "heading": "@narchsit platformist meeting",
+    "created": "2001-07-13 18:39:01",
+    "linked_file": null,
+    "hugo": "2658-narchsit-platformist-meeting",
+    "date": "2001-07-13",
+    "time": "18:39:01",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "18",
+    "minute": "39",
+    "second": "01"
+  },
+  {
+    "id": 2659,
+    "heading": "Napoli: Irruzione al Genovesi contro G8",
+    "created": "2001-07-13 06:09:43",
+    "linked_file": null,
+    "hugo": "2659-napoli-irruzione-al-genovesi-contro-g8",
+    "date": "2001-07-13",
+    "time": "06:09:43",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "06",
+    "minute": "09",
+    "second": "43"
+  },
+  {
+    "id": 2663,
+    "heading": "Per la libertà di andare manifestare a Genova, un picnic..",
+    "created": "2001-07-13 06:32:44",
+    "linked_file": null,
+    "hugo": "2663-per-la-liberta-di-andare-manifestare-a-genova-un-picnic",
+    "date": "2001-07-13",
+    "time": "06:32:44",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "06",
+    "minute": "32",
+    "second": "44"
+  },
+  {
+    "id": 2665,
+    "heading": "Salerno Piazza Flavio Gioia ore 19,00",
+    "created": "2001-07-13 07:15:20",
+    "linked_file": null,
+    "hugo": "2665-salerno-piazza-flavio-gioia-ore-1900",
+    "date": "2001-07-13",
+    "time": "07:15:20",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "07",
+    "minute": "15",
+    "second": "20"
+  },
+  {
+    "id": 2667,
+    "heading": "CEPU invasa dagli studenti anti-G8",
+    "created": "2001-07-13 07:50:01",
+    "linked_file": null,
+    "hugo": "2667-cepu-invasa-dagli-studenti-antig8",
+    "date": "2001-07-13",
+    "time": "07:50:01",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "07",
+    "minute": "50",
+    "second": "01"
+  },
+  {
+    "id": 2670,
+    "heading": "Attac percquisita!",
+    "created": "2001-07-13 08:46:27",
+    "linked_file": null,
+    "hugo": "2670-attac-percquisita",
+    "date": "2001-07-13",
+    "time": "08:46:27",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "08",
+    "minute": "46",
+    "second": "27"
+  },
+  {
+    "id": 2673,
+    "heading": "VOGLIAMO ASSICURARCI O NO?",
+    "created": "2001-07-13 09:29:55",
+    "linked_file": null,
+    "hugo": "2673-vogliamo-assicurarci-o-no",
+    "date": "2001-07-13",
+    "time": "09:29:55",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "09",
+    "minute": "29",
+    "second": "55"
+  },
+  {
+    "id": 2674,
+    "heading": "Genova: Istruzioni per l'uso",
+    "created": "2001-07-13 10:17:27",
+    "linked_file": null,
+    "hugo": "2674-genova-istruzioni-per-luso",
+    "date": "2001-07-13",
+    "time": "10:17:27",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "10",
+    "minute": "17",
+    "second": "27"
+  },
+  {
+    "id": 2675,
+    "heading": "Processione di Sant'Elia",
+    "created": "2001-07-17 07:36:46",
+    "linked_file": null,
+    "hugo": "2675-processione-di-santelia",
+    "date": "2001-07-17",
+    "time": "07:36:46",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "36",
+    "second": "46"
+  },
+  {
+    "id": 2676,
+    "heading": "Guerriglia Semiotica",
+    "created": "2001-07-13 11:03:12",
+    "linked_file": null,
+    "hugo": "2676-guerriglia-semiotica",
+    "date": "2001-07-13",
+    "time": "11:03:12",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "11",
+    "minute": "03",
+    "second": "12"
+  },
+  {
+    "id": 2677,
+    "heading": "La Rete Univ. antiG8 di Milano in partenza...",
+    "created": "2001-07-13 11:07:28",
+    "linked_file": null,
+    "hugo": "2677-la-rete-univ-antig8-di-milano-in-partenza",
+    "date": "2001-07-13",
+    "time": "11:07:28",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "11",
+    "minute": "07",
+    "second": "28"
+  },
+  {
+    "id": 2678,
+    "heading": "OCCUPATA LA MANPOWRE A BERGAMO",
+    "created": "2001-07-17 13:51:44",
+    "linked_file": "2001/07/job3.jpg",
+    "hugo": "2678-occupata-la-manpowre-a-bergamo",
+    "date": "2001-07-17",
+    "time": "13:51:44",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "13",
+    "minute": "51",
+    "second": "44"
+  },
+  {
+    "id": 2681,
+    "heading": "Ganova... pronti a salpare",
+    "created": "2001-07-13 16:41:35",
+    "linked_file": "2001/07/pir_ta.tif",
+    "hugo": "2681-ganova-pronti-a-salpare",
+    "date": "2001-07-13",
+    "time": "16:41:35",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "16",
+    "minute": "41",
+    "second": "35"
+  },
+  {
+    "id": 2685,
+    "heading": "Catholic Priests & Nuns Join Activists at G8 Genoa.",
+    "created": "2001-07-14 04:27:24",
+    "linked_file": null,
+    "hugo": "2685-catholic-priests-nuns-join-activists-at-g8-genoa",
+    "date": "2001-07-14",
+    "time": "04:27:24",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "04",
+    "minute": "27",
+    "second": "24"
+  },
+  {
+    "id": 2686,
+    "heading": "Iniziative locali conto G8: Prato",
+    "created": "2001-07-14 02:13:40",
+    "linked_file": null,
+    "hugo": "2686-iniziative-locali-conto-g8-prato",
+    "date": "2001-07-14",
+    "time": "02:13:40",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "02",
+    "minute": "13",
+    "second": "40"
+  },
+  {
+    "id": 2687,
+    "heading": "Chiuse stazioni di Genova",
+    "created": "2001-07-14 06:13:58",
+    "linked_file": null,
+    "hugo": "2687-chiuse-stazioni-di-genova",
+    "date": "2001-07-14",
+    "time": "06:13:58",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "06",
+    "minute": "13",
+    "second": "58"
+  },
+  {
+    "id": 2694,
+    "heading": "non solo a genova ma in ogni città",
+    "created": "2001-07-15 03:15:26",
+    "linked_file": null,
+    "hugo": "2694-non-solo-a-genova-ma-in-ogni-citta",
+    "date": "2001-07-15",
+    "time": "03:15:26",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "03",
+    "minute": "15",
+    "second": "26"
+  },
+  {
+    "id": 2695,
+    "heading": "Zio Sam",
+    "created": "2001-07-14 07:02:25",
+    "linked_file": "2001/07/ziosam.jpg",
+    "hugo": "2695-zio-sam",
+    "date": "2001-07-14",
+    "time": "07:02:25",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "07",
+    "minute": "02",
+    "second": "25"
+  },
+  {
+    "id": 2698,
+    "heading": "Giotto",
+    "created": "2001-07-14 10:34:43",
+    "linked_file": "2001/07/giotto3.jpg",
+    "hugo": "2698-giotto",
+    "date": "2001-07-14",
+    "time": "10:34:43",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "10",
+    "minute": "34",
+    "second": "43"
+  },
+  {
+    "id": 2699,
+    "heading": "Genova attaccata dai.................",
+    "created": "2001-07-14 10:38:36",
+    "linked_file": "2001/07/genova.exe",
+    "hugo": "2699-genova-attaccata-dai",
+    "date": "2001-07-14",
+    "time": "10:38:36",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "10",
+    "minute": "38",
+    "second": "36"
+  },
+  {
+    "id": 2706,
+    "heading": "Chiasso 14-07-2001",
+    "created": "2001-07-15 13:45:14",
+    "linked_file": null,
+    "hugo": "2706-chiasso-14072001",
+    "date": "2001-07-15",
+    "time": "13:45:14",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "13",
+    "minute": "45",
+    "second": "14"
+  },
+  {
+    "id": 2707,
+    "heading": "TG8FLASH-from Chiasso Border",
+    "created": "2001-07-15 06:17:20",
+    "linked_file": "2001/07/tg8flash01.rm",
+    "hugo": "2707-tg8flashfrom-chiasso-border",
+    "date": "2001-07-15",
+    "time": "06:17:20",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "06",
+    "minute": "17",
+    "second": "20"
+  },
+  {
+    "id": 2710,
+    "heading": "Sgomberate le prigioni genovesi",
+    "created": "2001-07-25 02:43:10",
+    "linked_file": null,
+    "hugo": "2710-sgomberate-le-prigioni-genovesi",
+    "date": "2001-07-25",
+    "time": "02:43:10",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "43",
+    "second": "10"
+  },
+  {
+    "id": 2718,
+    "heading": "La Carovana di biciclette verso Genova contro il G8",
+    "created": "2001-07-15 06:21:32",
+    "linked_file": null,
+    "hugo": "2718-la-carovana-di-biciclette-verso-genova-contro-il-g8",
+    "date": "2001-07-15",
+    "time": "06:21:32",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "06",
+    "minute": "21",
+    "second": "32"
+  },
+  {
+    "id": 2721,
+    "heading": "Genoa open for celebrations",
+    "created": "2001-07-15 10:03:40",
+    "linked_file": null,
+    "hugo": "2721-genoa-open-for-celebrations",
+    "date": "2001-07-15",
+    "time": "10:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 2722,
+    "heading": "Don Juan Online lancia la \"Copertura Edonistica \" di Genova G8",
+    "created": "2001-07-15 08:25:07",
+    "linked_file": null,
+    "hugo": "2722-don-juan-online-lancia-la-copertura-edonistica-di-genova-g8",
+    "date": "2001-07-15",
+    "time": "08:25:07",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "08",
+    "minute": "25",
+    "second": "07"
+  },
+  {
+    "id": 2723,
+    "heading": "Info. on German bus about to cross German/Swiss border",
+    "created": "2001-07-15 11:02:16",
+    "linked_file": "2001/07/psjcwd.txt",
+    "hugo": "2723-info-on-german-bus-about-to-cross-germanswiss-border",
+    "date": "2001-07-15",
+    "time": "11:02:16",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "11",
+    "minute": "02",
+    "second": "16"
+  },
+  {
+    "id": 2725,
+    "heading": "Italian Anarchist Federation",
+    "created": "2001-07-15 10:00:59",
+    "linked_file": null,
+    "hugo": "2725-italian-anarchist-federation",
+    "date": "2001-07-15",
+    "time": "10:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 2726,
+    "heading": "Rete No Global: Negata la nave, scattano le perquisizioni.Rassegna Stampa",
+    "created": "2001-07-15 10:17:14",
+    "linked_file": null,
+    "hugo": "2726-rete-no-global-negata-la-nave-scattano-le-perquisizionirassegna-stampa",
+    "date": "2001-07-15",
+    "time": "10:17:14",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "17",
+    "second": "14"
+  },
+  {
+    "id": 2727,
+    "heading": "il 21 luglio Forza Nuova ha organizzato un raduno internazionale a",
+    "created": "2001-07-15 10:42:09",
+    "linked_file": null,
+    "hugo": "2727-il-21-luglio-forza-nuova-ha-organizzato-un-raduno-internazionale-a",
+    "date": "2001-07-15",
+    "time": "10:42:09",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "42",
+    "second": "09"
+  },
+  {
+    "id": 2729,
+    "heading": "Update on German bus at Swiss border.",
+    "created": "2001-07-15 11:08:14",
+    "linked_file": "2001/07/mrqatq.txt",
+    "hugo": "2729-update-on-german-bus-at-swiss-border",
+    "date": "2001-07-15",
+    "time": "11:08:14",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "11",
+    "minute": "08",
+    "second": "14"
+  },
+  {
+    "id": 2730,
+    "heading": "movimento molecolare",
+    "created": "2001-07-15 12:05:16",
+    "linked_file": "2001/07/movimentomolecolare2.html",
+    "hugo": "2730-movimento-molecolare",
+    "date": "2001-07-15",
+    "time": "12:05:16",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "12",
+    "minute": "05",
+    "second": "16"
+  },
+  {
+    "id": 2732,
+    "heading": "Anarchist against G8",
+    "created": "2001-07-15 23:24:30",
+    "linked_file": null,
+    "hugo": "2732-anarchist-against-g8",
+    "date": "2001-07-15",
+    "time": "23:24:30",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "23",
+    "minute": "24",
+    "second": "30"
+  },
+  {
+    "id": 2733,
+    "heading": "Genoa: what's on By Anarchist against G8",
+    "created": "2001-07-15 14:51:04",
+    "linked_file": null,
+    "hugo": "2733-genoa-whats-on-by-anarchist-against-g8",
+    "date": "2001-07-15",
+    "time": "14:51:04",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "14",
+    "minute": "51",
+    "second": "04"
+  },
+  {
+    "id": 2734,
+    "heading": "genova-sbirri e centree",
+    "created": "2001-07-16 01:55:56",
+    "linked_file": "2001/07/bgd_small.rm",
+    "hugo": "2734-genovasbirri-e-centree",
+    "date": "2001-07-16",
+    "time": "01:55:56",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "01",
+    "minute": "55",
+    "second": "56"
+  },
+  {
+    "id": 2735,
+    "heading": "German bus on Swiss border has got through.",
+    "created": "2001-07-15 14:29:11",
+    "linked_file": null,
+    "hugo": "2735-german-bus-on-swiss-border-has-got-through",
+    "date": "2001-07-15",
+    "time": "14:29:11",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "14",
+    "minute": "29",
+    "second": "11"
+  },
+  {
+    "id": 2736,
+    "heading": "partita la carovana del sud",
+    "created": "2001-07-15 15:30:23",
+    "linked_file": null,
+    "hugo": "2736-partita-la-carovana-del-sud",
+    "date": "2001-07-15",
+    "time": "15:30:23",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "15",
+    "minute": "30",
+    "second": "23"
+  },
+  {
+    "id": 2737,
+    "heading": "work in Progress",
+    "created": "2001-07-15 18:28:05",
+    "linked_file": "2001/07/genua_work_in_porgress_r1_c1.jpg",
+    "hugo": "2737-work-in-progress",
+    "date": "2001-07-15",
+    "time": "18:28:05",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "18",
+    "minute": "28",
+    "second": "05"
+  },
+  {
+    "id": 2739,
+    "heading": "IMC Italy Video Channel",
+    "created": "2001-07-16 02:42:55",
+    "linked_file": "2001/07/imctv.gif",
+    "hugo": "2739-imc-italy-video-channel",
+    "date": "2001-07-16",
+    "time": "02:42:55",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "02",
+    "minute": "42",
+    "second": "55"
+  },
+  {
+    "id": 2745,
+    "heading": "Repressione Preventiva / Preventive Repression",
+    "created": "2001-07-16 00:38:45",
+    "linked_file": null,
+    "hugo": "2745-repressione-preventiva-preventive-repression",
+    "date": "2001-07-16",
+    "time": "00:38:45",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "00",
+    "minute": "38",
+    "second": "45"
+  },
+  {
+    "id": 2747,
+    "heading": "Anarchists against G8",
+    "created": "2001-07-16 01:10:41",
+    "linked_file": null,
+    "hugo": "2747-anarchists-against-g8",
+    "date": "2001-07-16",
+    "time": "01:10:41",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "01",
+    "minute": "10",
+    "second": "41"
+  },
+  {
+    "id": 2750,
+    "heading": "\"Genoa is mapped out like a battle field\"",
+    "created": "2001-07-16 02:45:59",
+    "linked_file": null,
+    "hugo": "2750-genoa-is-mapped-out-like-a-battle-field",
+    "date": "2001-07-16",
+    "time": "02:45:59",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "02",
+    "minute": "45",
+    "second": "59"
+  },
+  {
+    "id": 2751,
+    "heading": "mass media wash and other genoa stories at infoshop.org",
+    "created": "2001-07-16 23:24:44",
+    "linked_file": null,
+    "hugo": "2751-mass-media-wash-and-other-genoa-stories-at-infoshoporg",
+    "date": "2001-07-16",
+    "time": "23:24:44",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "23",
+    "minute": "24",
+    "second": "44"
+  },
+  {
+    "id": 2753,
+    "heading": "CUB: sciopero del 20 luglio e corteo da p.za Montano/Genova",
+    "created": "2001-07-16 03:14:11",
+    "linked_file": null,
+    "hugo": "2753-cub-sciopero-del-20-luglio-e-corteo-da-pza-montanogenova",
+    "date": "2001-07-16",
+    "time": "03:14:11",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "03",
+    "minute": "14",
+    "second": "11"
+  },
+  {
+    "id": 2757,
+    "heading": "Genova...il GSF comincia i lavori...",
+    "created": "2001-07-16 15:39:37",
+    "linked_file": null,
+    "hugo": "2757-genovail-gsf-comincia-i-lavori",
+    "date": "2001-07-16",
+    "time": "15:39:37",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "15",
+    "minute": "39",
+    "second": "37"
+  },
+  {
+    "id": 2758,
+    "heading": "INFO TRENI GENOVA DA ROMA",
+    "created": "2001-07-16 10:03:04",
+    "linked_file": null,
+    "hugo": "2758-info-treni-genova-da-roma",
+    "date": "2001-07-16",
+    "time": "10:03:04",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "03",
+    "second": "04"
+  },
+  {
+    "id": 2764,
+    "heading": "autodifesa",
+    "created": "2001-07-16 08:02:21",
+    "linked_file": null,
+    "hugo": "2764-autodifesa",
+    "date": "2001-07-16",
+    "time": "08:02:21",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "08",
+    "minute": "02",
+    "second": "21"
+  },
+  {
+    "id": 2765,
+    "heading": "Info on accomodation etc in Genoa",
+    "created": "2001-07-16 08:16:50",
+    "linked_file": "2001/07/7mxwm9.txt",
+    "hugo": "2765-info-on-accomodation-etc-in-genoa",
+    "date": "2001-07-16",
+    "time": "08:16:50",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "08",
+    "minute": "16",
+    "second": "50"
+  },
+  {
+    "id": 2766,
+    "heading": "Barriere e altro",
+    "created": "2001-07-16 08:38:59",
+    "linked_file": null,
+    "hugo": "2766-barriere-e-altro",
+    "date": "2001-07-16",
+    "time": "08:38:59",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "08",
+    "minute": "38",
+    "second": "59"
+  },
+  {
+    "id": 2767,
+    "heading": "GSF: UNA BOMBA CONTRO IL MOVIMENTO SCONFIGGIAMO LA PAURA, VENIAMO TUTTI A GENOVA",
+    "created": "2001-07-16 15:40:58",
+    "linked_file": null,
+    "hugo": "2767-gsf-una-bomba-contro-il-movimento-sconfiggiamo-la-paura-veniamo-tutti-a-genova",
+    "date": "2001-07-16",
+    "time": "15:40:58",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "15",
+    "minute": "40",
+    "second": "58"
+  },
+  {
+    "id": 2768,
+    "heading": "Allarmi bomba che rasentano il ridicolo (1)",
+    "created": "2001-07-16 09:31:53",
+    "linked_file": null,
+    "hugo": "2768-allarmi-bomba-che-rasentano-il-ridicolo-1",
+    "date": "2001-07-16",
+    "time": "09:31:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "31",
+    "second": "53"
+  },
+  {
+    "id": 2769,
+    "heading": "beware of provocations",
+    "created": "2001-07-16 09:39:18",
+    "linked_file": null,
+    "hugo": "2769-beware-of-provocations",
+    "date": "2001-07-16",
+    "time": "09:39:18",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "39",
+    "second": "18"
+  },
+  {
+    "id": 2770,
+    "heading": "Allarmi bomba che rasentano il ridicolo (2)",
+    "created": "2001-07-16 09:46:04",
+    "linked_file": null,
+    "hugo": "2770-allarmi-bomba-che-rasentano-il-ridicolo-2",
+    "date": "2001-07-16",
+    "time": "09:46:04",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "46",
+    "second": "04"
+  },
+  {
+    "id": 2772,
+    "heading": "Harmless Explosives Sought by Military?",
+    "created": "2001-07-16 09:54:21",
+    "linked_file": null,
+    "hugo": "2772-harmless-explosives-sought-by-military",
+    "date": "2001-07-16",
+    "time": "09:54:21",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "54",
+    "second": "21"
+  },
+  {
+    "id": 2773,
+    "heading": "Watch out for spindoctors, agents provocateurs etc",
+    "created": "2001-07-16 10:08:53",
+    "linked_file": null,
+    "hugo": "2773-watch-out-for-spindoctors-agents-provocateurs-etc",
+    "date": "2001-07-16",
+    "time": "10:08:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "08",
+    "second": "53"
+  },
+  {
+    "id": 2775,
+    "heading": "novita' dalla frontiera di chiasso",
+    "created": "2001-07-16 10:36:24",
+    "linked_file": null,
+    "hugo": "2775-novita-dalla-frontiera-di-chiasso",
+    "date": "2001-07-16",
+    "time": "10:36:24",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "36",
+    "second": "24"
+  },
+  {
+    "id": 2776,
+    "heading": "Irruzioni nei centri sociali a Torino",
+    "created": "2001-07-16 10:55:53",
+    "linked_file": null,
+    "hugo": "2776-irruzioni-nei-centri-sociali-a-torino",
+    "date": "2001-07-16",
+    "time": "10:55:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "55",
+    "second": "53"
+  },
+  {
+    "id": 2777,
+    "heading": "Università-punti controinformativi",
+    "created": "2001-07-16 10:58:48",
+    "linked_file": null,
+    "hugo": "2777-universitapunti-controinformativi",
+    "date": "2001-07-16",
+    "time": "10:58:48",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "58",
+    "second": "48"
+  },
+  {
+    "id": 2778,
+    "heading": "SEQUESTRATO DALLA POLIZIA",
+    "created": "2001-07-16 16:04:52",
+    "linked_file": null,
+    "hugo": "2778-sequestrato-dalla-polizia",
+    "date": "2001-07-16",
+    "time": "16:04:52",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "16",
+    "minute": "04",
+    "second": "52"
+  },
+  {
+    "id": 2779,
+    "heading": "Anyone know where to buy some weed in Genoa? Any good areas/shops etc?",
+    "created": "2001-07-16 11:42:53",
+    "linked_file": null,
+    "hugo": "2779-anyone-know-where-to-buy-some-weed-in-genoa-any-good-areasshops-etc",
+    "date": "2001-07-16",
+    "time": "11:42:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "11",
+    "minute": "42",
+    "second": "53"
+  },
+  {
+    "id": 2780,
+    "heading": "Allarme bomba al Carlini",
+    "created": "2001-07-16 12:24:10",
+    "linked_file": null,
+    "hugo": "2780-allarme-bomba-al-carlini",
+    "date": "2001-07-16",
+    "time": "12:24:10",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "24",
+    "second": "10"
+  },
+  {
+    "id": 2783,
+    "heading": "Cariche a Chiasso. Occupate la dogana. Riots at the swiss border",
+    "created": "2001-07-16 14:16:08",
+    "linked_file": null,
+    "hugo": "2783-cariche-a-chiasso-occupate-la-dogana-riots-at-the-swiss-border",
+    "date": "2001-07-16",
+    "time": "14:16:08",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "14",
+    "minute": "16",
+    "second": "08"
+  },
+  {
+    "id": 2784,
+    "heading": "direct new for bomb alarm",
+    "created": "2001-07-16 23:19:29",
+    "linked_file": null,
+    "hugo": "2784-direct-new-for-bomb-alarm",
+    "date": "2001-07-16",
+    "time": "23:19:29",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "23",
+    "minute": "19",
+    "second": "29"
+  },
+  {
+    "id": 2785,
+    "heading": "ge  - bomba vicino al carlini (finta?)",
+    "created": "2001-07-16 12:11:14",
+    "linked_file": null,
+    "hugo": "2785-ge-bomba-vicino-al-carlini-finta",
+    "date": "2001-07-16",
+    "time": "12:11:14",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "11",
+    "second": "14"
+  },
+  {
+    "id": 2786,
+    "heading": "Aggiornamenti da Geova- Stadio Carlini",
+    "created": "2001-07-16 12:19:23",
+    "linked_file": null,
+    "hugo": "2786-aggiornamenti-da-geova-stadio-carlini",
+    "date": "2001-07-16",
+    "time": "12:19:23",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "19",
+    "second": "23"
+  },
+  {
+    "id": 2788,
+    "heading": "Perquisizioni a Torino-Searches in Turin",
+    "created": "2001-07-16 16:39:22",
+    "linked_file": "2001/07/zmaz3j.txt",
+    "hugo": "2788-perquisizioni-a-torinosearches-in-turin",
+    "date": "2001-07-16",
+    "time": "16:39:22",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "16",
+    "minute": "39",
+    "second": "22"
+  },
+  {
+    "id": 2790,
+    "heading": "news from carlini stadium",
+    "created": "2001-07-16 12:47:18",
+    "linked_file": null,
+    "hugo": "2790-news-from-carlini-stadium",
+    "date": "2001-07-16",
+    "time": "12:47:18",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "47",
+    "second": "18"
+  },
+  {
+    "id": 2792,
+    "heading": "news from milan : eviction!",
+    "created": "2001-07-16 16:17:25",
+    "linked_file": null,
+    "hugo": "2792-news-from-milan-eviction",
+    "date": "2001-07-16",
+    "time": "16:17:25",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "16",
+    "minute": "17",
+    "second": "25"
+  },
+  {
+    "id": 2794,
+    "heading": "Finnish White Overalls in Genoa",
+    "created": "2001-07-17 05:49:17",
+    "linked_file": null,
+    "hugo": "2794-finnish-white-overalls-in-genoa",
+    "date": "2001-07-17",
+    "time": "05:49:17",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "49",
+    "second": "17"
+  },
+  {
+    "id": 2795,
+    "heading": "Terreur in Genua ???",
+    "created": "2001-07-16 14:12:06",
+    "linked_file": null,
+    "hugo": "2795-terreur-in-genua-",
+    "date": "2001-07-16",
+    "time": "14:12:06",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "14",
+    "minute": "12",
+    "second": "06"
+  },
+  {
+    "id": 2797,
+    "heading": "Chiasso: liberi i 4 compagni arrestati",
+    "created": "2001-07-16 13:45:00",
+    "linked_file": null,
+    "hugo": "2797-chiasso-liberi-i-4-compagni-arrestati",
+    "date": "2001-07-16",
+    "time": "13:45:00",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "13",
+    "minute": "45",
+    "second": "00"
+  },
+  {
+    "id": 2798,
+    "heading": "Irish are here",
+    "created": "2001-07-16 15:03:40",
+    "linked_file": "2001/07/gx1xcr.txt",
+    "hugo": "2798-irish-are-here",
+    "date": "2001-07-16",
+    "time": "15:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "15",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 2806,
+    "heading": "Attentato a Tute Bianche a Genova.",
+    "created": "2001-07-16 18:35:59",
+    "linked_file": null,
+    "hugo": "2806-attentato-a-tute-bianche-a-genova",
+    "date": "2001-07-16",
+    "time": "18:35:59",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "35",
+    "second": "59"
+  },
+  {
+    "id": 2809,
+    "heading": "A PROPOSAL TO WORLD ACTIVISTS",
+    "created": "2001-07-20 00:23:22",
+    "linked_file": "2001/07/headline2.jpg",
+    "hugo": "2809-a-proposal-to-world-activists",
+    "date": "2001-07-20",
+    "time": "00:23:22",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "23",
+    "second": "22"
+  },
+  {
+    "id": 2820,
+    "heading": "Perquisito il cso Askatasuna",
+    "created": "2001-07-16 17:09:09",
+    "linked_file": null,
+    "hugo": "2820-perquisito-il-cso-askatasuna",
+    "date": "2001-07-16",
+    "time": "17:09:09",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "17",
+    "minute": "09",
+    "second": "09"
+  },
+  {
+    "id": 2821,
+    "heading": "bomb at carlini stadium",
+    "created": "2001-07-16 18:37:27",
+    "linked_file": "2001/07/bomberman.ram",
+    "hugo": "2821-bomb-at-carlini-stadium",
+    "date": "2001-07-16",
+    "time": "18:37:27",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "37",
+    "second": "27"
+  },
+  {
+    "id": 2822,
+    "heading": "Cresce la represssione per il G8",
+    "created": "2001-07-18 06:22:47",
+    "linked_file": null,
+    "hugo": "2822-cresce-la-represssione-per-il-g8",
+    "date": "2001-07-18",
+    "time": "06:22:47",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "22",
+    "second": "47"
+  },
+  {
+    "id": 2823,
+    "heading": "The great 8 fear the consciousness",
+    "created": "2001-07-17 15:04:19",
+    "linked_file": null,
+    "hugo": "2823-the-great-8-fear-the-consciousness",
+    "date": "2001-07-17",
+    "time": "15:04:19",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "15",
+    "minute": "04",
+    "second": "19"
+  },
+  {
+    "id": 2825,
+    "heading": "nobordercaravan in genova",
+    "created": "2001-07-16 18:22:23",
+    "linked_file": null,
+    "hugo": "2825-nobordercaravan-in-genova",
+    "date": "2001-07-16",
+    "time": "18:22:23",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "22",
+    "second": "23"
+  },
+  {
+    "id": 2826,
+    "heading": "\"Strategy of tension\" used again in Italy?",
+    "created": "2001-07-17 06:29:29",
+    "linked_file": null,
+    "hugo": "2826-strategy-of-tension-used-again-in-italy",
+    "date": "2001-07-17",
+    "time": "06:29:29",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "06",
+    "minute": "29",
+    "second": "29"
+  },
+  {
+    "id": 2828,
+    "heading": "Pristina -monopoli -bologna.",
+    "created": "2001-07-16 18:53:49",
+    "linked_file": null,
+    "hugo": "2828-pristina-monopoli-bologna",
+    "date": "2001-07-16",
+    "time": "18:53:49",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "53",
+    "second": "49"
+  },
+  {
+    "id": 2829,
+    "heading": "G8: Train to Genoa with stop in Chiasso",
+    "created": "2001-07-16 18:56:14",
+    "linked_file": "2001/07/1o7jev.txt",
+    "hugo": "2829-g8-train-to-genoa-with-stop-in-chiasso",
+    "date": "2001-07-16",
+    "time": "18:56:14",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "56",
+    "second": "14"
+  },
+  {
+    "id": 2836,
+    "heading": "en) Preventive Repression",
+    "created": "2001-07-16 20:31:56",
+    "linked_file": null,
+    "hugo": "2836-en-preventive-repression",
+    "date": "2001-07-16",
+    "time": "20:31:56",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "20",
+    "minute": "31",
+    "second": "56"
+  },
+  {
+    "id": 2837,
+    "heading": "genoa pictures",
+    "created": "2001-07-16 21:04:23",
+    "linked_file": null,
+    "hugo": "2837-genoa-pictures",
+    "date": "2001-07-16",
+    "time": "21:04:23",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "21",
+    "minute": "04",
+    "second": "23"
+  },
+  {
+    "id": 2839,
+    "heading": "ZONArozza bifo-people-loach",
+    "created": "2001-07-16 21:20:29",
+    "linked_file": "2001/07/zonarozza.rm",
+    "hugo": "2839-zonarozza-bifopeopleloach",
+    "date": "2001-07-16",
+    "time": "21:20:29",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "21",
+    "minute": "20",
+    "second": "29"
+  },
+  {
+    "id": 2846,
+    "heading": "\\\"REVOLT\\'S FIREMEN\\\"",
+    "created": "2001-07-17 03:02:54",
+    "linked_file": null,
+    "hugo": "2846-revolts-firemen",
+    "date": "2001-07-17",
+    "time": "03:02:54",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "03",
+    "minute": "02",
+    "second": "54"
+  },
+  {
+    "id": 2854,
+    "heading": "continua il viaggio della carovana del sud",
+    "created": "2001-07-17 03:07:29",
+    "linked_file": null,
+    "hugo": "2854-continua-il-viaggio-della-carovana-del-sud",
+    "date": "2001-07-17",
+    "time": "03:07:29",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "03",
+    "minute": "07",
+    "second": "29"
+  },
+  {
+    "id": 2855,
+    "heading": "Brignole: meglio aperta",
+    "created": "2001-07-17 04:00:39",
+    "linked_file": null,
+    "hugo": "2855-brignole-meglio-aperta",
+    "date": "2001-07-17",
+    "time": "04:00:39",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "00",
+    "second": "39"
+  },
+  {
+    "id": 2857,
+    "heading": "Social Forum report:  Raffael Freire",
+    "created": "2001-07-17 04:15:26",
+    "linked_file": null,
+    "hugo": "2857-social-forum-report-raffael-freire",
+    "date": "2001-07-17",
+    "time": "04:15:26",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "15",
+    "second": "26"
+  },
+  {
+    "id": 2859,
+    "heading": "G8: UN GOAL SULLE BARRIERE DELLA ZONA ROSSA CONTRO IL VERTICE",
+    "created": "2001-07-17 04:21:56",
+    "linked_file": null,
+    "hugo": "2859-g8-un-goal-sulle-barriere-della-zona-rossa-contro-il-vertice",
+    "date": "2001-07-17",
+    "time": "04:21:56",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "21",
+    "second": "56"
+  },
+  {
+    "id": 2860,
+    "heading": "G8: The situation at the greek borders",
+    "created": "2001-07-18 09:53:23",
+    "linked_file": "2001/07/8dswef.txt",
+    "hugo": "2860-g8-the-situation-at-the-greek-borders",
+    "date": "2001-07-18",
+    "time": "09:53:23",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "53",
+    "second": "23"
+  },
+  {
+    "id": 2861,
+    "heading": "What is really happening in Genoa?",
+    "created": "2001-07-17 04:47:12",
+    "linked_file": "2001/07/genoa_poster.gif",
+    "hugo": "2861-what-is-really-happening-in-genoa",
+    "date": "2001-07-17",
+    "time": "04:47:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "47",
+    "second": "12"
+  },
+  {
+    "id": 2863,
+    "heading": "Genoa Police Raid Social Center (among other things)",
+    "created": "2001-07-17 05:03:36",
+    "linked_file": "2001/07/monannouncement.rm",
+    "hugo": "2863-genoa-police-raid-social-center-among-other-things",
+    "date": "2001-07-17",
+    "time": "05:03:36",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "03",
+    "second": "36"
+  },
+  {
+    "id": 2864,
+    "heading": "Perquisizioni al Pinelli e allo Sciorta",
+    "created": "2001-07-17 05:04:06",
+    "linked_file": null,
+    "hugo": "2864-perquisizioni-al-pinelli-e-allo-sciorta",
+    "date": "2001-07-17",
+    "time": "05:04:06",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "04",
+    "second": "06"
+  },
+  {
+    "id": 2865,
+    "heading": "Perquisizioni al Pinelli e allo Sciorba",
+    "created": "2001-07-17 18:09:12",
+    "linked_file": null,
+    "hugo": "2865-perquisizioni-al-pinelli-e-allo-sciorba",
+    "date": "2001-07-17",
+    "time": "18:09:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "09",
+    "second": "12"
+  },
+  {
+    "id": 2866,
+    "heading": "perquisizione al Pinelli",
+    "created": "2001-07-17 05:09:13",
+    "linked_file": null,
+    "hugo": "2866-perquisizione-al-pinelli",
+    "date": "2001-07-17",
+    "time": "05:09:13",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "09",
+    "second": "13"
+  },
+  {
+    "id": 2868,
+    "heading": "tension increasing in Genova",
+    "created": "2001-07-21 19:29:37",
+    "linked_file": null,
+    "hugo": "2868-tension-increasing-in-genova",
+    "date": "2001-07-21",
+    "time": "19:29:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "29",
+    "second": "37"
+  },
+  {
+    "id": 2870,
+    "heading": "Walden Bello Speaks at Social Forum in Genoa Monday (english)",
+    "created": "2001-07-17 17:11:23",
+    "linked_file": "2001/07/belloenglish.mp3",
+    "hugo": "2870-walden-bello-speaks-at-social-forum-in-genoa-monday-english",
+    "date": "2001-07-17",
+    "time": "17:11:23",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "17",
+    "minute": "11",
+    "second": "23"
+  },
+  {
+    "id": 2871,
+    "heading": "Ultime sulla repressione",
+    "created": "2001-07-20 06:53:48",
+    "linked_file": null,
+    "hugo": "2871-ultime-sulla-repressione",
+    "date": "2001-07-20",
+    "time": "06:53:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "53",
+    "second": "48"
+  },
+  {
+    "id": 2872,
+    "heading": "Conferenza su lavoro e globalizzazione, del GSF",
+    "created": "2001-07-17 05:30:00",
+    "linked_file": null,
+    "hugo": "2872-conferenza-su-lavoro-e-globalizzazione-del-gsf",
+    "date": "2001-07-17",
+    "time": "05:30:00",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "30",
+    "second": "00"
+  },
+  {
+    "id": 2878,
+    "heading": "L'INVITO DEI DS ALLA MANIFESTAZIONE DEL 21",
+    "created": "2001-07-20 07:36:51",
+    "linked_file": null,
+    "hugo": "2878-linvito-dei-ds-alla-manifestazione-del-21",
+    "date": "2001-07-20",
+    "time": "07:36:51",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "36",
+    "second": "51"
+  },
+  {
+    "id": 2879,
+    "heading": "Amnesty International: Policing must respect human rights standards",
+    "created": "2001-07-17 07:00:20",
+    "linked_file": null,
+    "hugo": "2879-amnesty-international-policing-must-respect-human-rights-standards",
+    "date": "2001-07-17",
+    "time": "07:00:20",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "00",
+    "second": "20"
+  },
+  {
+    "id": 2883,
+    "heading": "Arresti e perquisizioni a Roma",
+    "created": "2001-07-17 18:24:01",
+    "linked_file": null,
+    "hugo": "2883-arresti-e-perquisizioni-a-roma",
+    "date": "2001-07-17",
+    "time": "18:24:01",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "24",
+    "second": "01"
+  },
+  {
+    "id": 2887,
+    "heading": "comunicato 1 - martedì 17/07/2001 - Anarchici contro il G8",
+    "created": "2001-07-17 07:55:04",
+    "linked_file": null,
+    "hugo": "2887-comunicato-1-martedi-17072001-anarchici-contro-il-g8",
+    "date": "2001-07-17",
+    "time": "07:55:04",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "55",
+    "second": "04"
+  },
+  {
+    "id": 2888,
+    "heading": "BRIGNOLE APERTA AI MANIFESTANTI",
+    "created": "2001-07-17 18:27:23",
+    "linked_file": null,
+    "hugo": "2888-brignole-aperta-ai-manifestanti",
+    "date": "2001-07-17",
+    "time": "18:27:23",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "27",
+    "second": "23"
+  },
+  {
+    "id": 2890,
+    "heading": "Da Seattle a Genova passando per il cortile di casa",
+    "created": "2001-07-17 08:09:05",
+    "linked_file": null,
+    "hugo": "2890-da-seattle-a-genova-passando-per-il-cortile-di-casa",
+    "date": "2001-07-17",
+    "time": "08:09:05",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "08",
+    "minute": "09",
+    "second": "05"
+  },
+  {
+    "id": 2894,
+    "heading": "Fermato Jose' Bove'. Conferenza stampa del GSF",
+    "created": "2001-07-17 09:08:45",
+    "linked_file": null,
+    "hugo": "2894-fermato-jose-bove-conferenza-stampa-del-gsf",
+    "date": "2001-07-17",
+    "time": "09:08:45",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "09",
+    "minute": "08",
+    "second": "45"
+  },
+  {
+    "id": 2895,
+    "heading": "Cancellato il \"British Globalise Resistance train\"",
+    "created": "2001-07-19 11:08:32",
+    "linked_file": null,
+    "hugo": "2895-cancellato-il-british-globalise-resistance-train",
+    "date": "2001-07-19",
+    "time": "11:08:32",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "08",
+    "second": "32"
+  },
+  {
+    "id": 2899,
+    "heading": "Offensiva Internazionale di Genova",
+    "created": "2001-07-17 09:51:30",
+    "linked_file": null,
+    "hugo": "2899-offensiva-internazionale-di-genova",
+    "date": "2001-07-17",
+    "time": "09:51:30",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "09",
+    "minute": "51",
+    "second": "30"
+  },
+  {
+    "id": 2900,
+    "heading": "Beautiful Brave Genoa - Gold Medal Resistance- Home of Balilla",
+    "created": "2001-07-17 15:25:05",
+    "linked_file": null,
+    "hugo": "2900-beautiful-brave-genoa-gold-medal-resistance-home-of-balilla",
+    "date": "2001-07-17",
+    "time": "15:25:05",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "15",
+    "minute": "25",
+    "second": "05"
+  },
+  {
+    "id": 2901,
+    "heading": "repressione a La Spezia",
+    "created": "2001-07-17 19:36:45",
+    "linked_file": null,
+    "hugo": "2901-repressione-a-la-spezia",
+    "date": "2001-07-17",
+    "time": "19:36:45",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "19",
+    "minute": "36",
+    "second": "45"
+  },
+  {
+    "id": 2903,
+    "heading": "Jose' Bove' e' in Italia",
+    "created": "2001-07-17 18:42:40",
+    "linked_file": null,
+    "hugo": "2903-jose-bove-e-in-italia",
+    "date": "2001-07-17",
+    "time": "18:42:40",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "42",
+    "second": "40"
+  },
+  {
+    "id": 2904,
+    "heading": "Cancellato il treno \"Global Resistance\"",
+    "created": "2001-07-17 10:21:30",
+    "linked_file": null,
+    "hugo": "2904-cancellato-il-treno-global-resistance",
+    "date": "2001-07-17",
+    "time": "10:21:30",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "10",
+    "minute": "21",
+    "second": "30"
+  },
+  {
+    "id": 2906,
+    "heading": "Azione di Attac e partita di calcio",
+    "created": "2001-07-17 18:39:16",
+    "linked_file": null,
+    "hugo": "2906-azione-di-attac-e-partita-di-calcio",
+    "date": "2001-07-17",
+    "time": "18:39:16",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "39",
+    "second": "16"
+  },
+  {
+    "id": 2907,
+    "heading": "treni speciali dall'italia",
+    "created": "2001-07-17 11:11:56",
+    "linked_file": null,
+    "hugo": "2907-treni-speciali-dallitalia",
+    "date": "2001-07-17",
+    "time": "11:11:56",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "11",
+    "second": "56"
+  },
+  {
+    "id": 2910,
+    "heading": "Genoa: Police Actions",
+    "created": "2001-07-17 11:13:07",
+    "linked_file": null,
+    "hugo": "2910-genoa-police-actions",
+    "date": "2001-07-17",
+    "time": "11:13:07",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "13",
+    "second": "07"
+  },
+  {
+    "id": 2911,
+    "heading": "teargas instructions for kids",
+    "created": "2001-07-18 09:46:43",
+    "linked_file": "2001/07/teargaslessons.jpg",
+    "hugo": "2911-teargas-instructions-for-kids",
+    "date": "2001-07-18",
+    "time": "09:46:43",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "46",
+    "second": "43"
+  },
+  {
+    "id": 2912,
+    "heading": "Globalise Resistance train to Genoa was stoped by French Transport Minister",
+    "created": "2001-07-17 20:27:04",
+    "linked_file": "2001/07/ednqez.txt",
+    "hugo": "2912-globalise-resistance-train-to-genoa-was-stoped-by-french-transport-minister",
+    "date": "2001-07-17",
+    "time": "20:27:04",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "27",
+    "second": "04"
+  },
+  {
+    "id": 2914,
+    "heading": "Tutti a Genova contro il G8",
+    "created": "2001-07-17 11:30:48",
+    "linked_file": null,
+    "hugo": "2914-tutti-a-genova-contro-il-g8",
+    "date": "2001-07-17",
+    "time": "11:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 2916,
+    "heading": "All to Genoa against the G8",
+    "created": "2001-07-19 18:37:08",
+    "linked_file": null,
+    "hugo": "2916-all-to-genoa-against-the-g8",
+    "date": "2001-07-19",
+    "time": "18:37:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "37",
+    "second": "08"
+  },
+  {
+    "id": 2917,
+    "heading": "Smash the G8 - workers and youth unite!",
+    "created": "2001-07-19 18:55:23",
+    "linked_file": "2001/07/vignetta_g8.gif",
+    "hugo": "2917-smash-the-g8-workers-and-youth-unite",
+    "date": "2001-07-19",
+    "time": "18:55:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "55",
+    "second": "23"
+  },
+  {
+    "id": 2919,
+    "heading": "INFORMAZIONI E CONSIGLI PER I MANIFESTANTI",
+    "created": "2001-07-24 05:55:34",
+    "linked_file": null,
+    "hugo": "2919-informazioni-e-consigli-per-i-manifestanti",
+    "date": "2001-07-24",
+    "time": "05:55:34",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "55",
+    "second": "34"
+  },
+  {
+    "id": 2920,
+    "heading": "Comunicato 2 - Anarchici contro il G8 - martedì 17/07/2001",
+    "created": "2001-07-17 12:28:25",
+    "linked_file": null,
+    "hugo": "2920-comunicato-2-anarchici-contro-il-g8-martedi-17072001",
+    "date": "2001-07-17",
+    "time": "12:28:25",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "12",
+    "minute": "28",
+    "second": "25"
+  },
+  {
+    "id": 2921,
+    "heading": "COMMENT SE MAINTENIR EN BONNE ETAT DE SANTE DANS UNE MANIF",
+    "created": "2001-07-17 12:30:54",
+    "linked_file": null,
+    "hugo": "2921-comment-se-maintenir-en-bonne-etat-de-sante-dans-une-manif",
+    "date": "2001-07-17",
+    "time": "12:30:54",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "12",
+    "minute": "30",
+    "second": "54"
+  },
+  {
+    "id": 2922,
+    "heading": "Treni per il ritorno da Genova",
+    "created": "2001-07-17 12:46:11",
+    "linked_file": null,
+    "hugo": "2922-treni-per-il-ritorno-da-genova",
+    "date": "2001-07-17",
+    "time": "12:46:11",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "12",
+    "minute": "46",
+    "second": "11"
+  },
+  {
+    "id": 2926,
+    "heading": "per la liberta' di movemente",
+    "created": "2001-07-17 13:17:22",
+    "linked_file": null,
+    "hugo": "2926-per-la-liberta-di-movemente",
+    "date": "2001-07-17",
+    "time": "13:17:22",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "13",
+    "minute": "17",
+    "second": "22"
+  },
+  {
+    "id": 2928,
+    "heading": "From Germany to Genoa, Europe Cracks Down on Political Dissent",
+    "created": "2001-07-17 18:58:52",
+    "linked_file": null,
+    "hugo": "2928-from-germany-to-genoa-europe-cracks-down-on-political-dissent",
+    "date": "2001-07-17",
+    "time": "18:58:52",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "58",
+    "second": "52"
+  },
+  {
+    "id": 2933,
+    "heading": "Treni per Genova (e ritorno) dall'Italia",
+    "created": "2001-07-20 06:18:55",
+    "linked_file": null,
+    "hugo": "2933-treni-per-genova-e-ritorno-dallitalia",
+    "date": "2001-07-20",
+    "time": "06:18:55",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "18",
+    "second": "55"
+  },
+  {
+    "id": 2934,
+    "heading": "State Of The World Report",
+    "created": "2001-07-19 17:52:09",
+    "linked_file": "2001/07/unheli8bwuuo.jpg",
+    "hugo": "2934-state-of-the-world-report",
+    "date": "2001-07-19",
+    "time": "17:52:09",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "52",
+    "second": "09"
+  },
+  {
+    "id": 2936,
+    "heading": "The great 8 fear the consciousness",
+    "created": "2001-07-17 15:14:13",
+    "linked_file": null,
+    "hugo": "2936-the-great-8-fear-the-consciousness",
+    "date": "2001-07-17",
+    "time": "15:14:13",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "15",
+    "minute": "14",
+    "second": "13"
+  },
+  {
+    "id": 2937,
+    "heading": "SMASH THE BORDER!!!",
+    "created": "2001-07-17 16:30:48",
+    "linked_file": null,
+    "hugo": "2937-smash-the-border",
+    "date": "2001-07-17",
+    "time": "16:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 2938,
+    "heading": "CUB-SLAI Cobas - Sciopero e Corteo a Genova Ponente (20/7)",
+    "created": "2001-07-17 16:00:44",
+    "linked_file": "2001/07/cub.gif",
+    "hugo": "2938-cubslai-cobas-sciopero-e-corteo-a-genova-ponente-207",
+    "date": "2001-07-17",
+    "time": "16:00:44",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "00",
+    "second": "44"
+  },
+  {
+    "id": 2940,
+    "heading": "Fermo  a genova per 5 ragazze tedesche.",
+    "created": "2001-07-17 16:14:19",
+    "linked_file": null,
+    "hugo": "2940-fermo-a-genova-per-5-ragazze-tedesche",
+    "date": "2001-07-17",
+    "time": "16:14:19",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "14",
+    "second": "19"
+  },
+  {
+    "id": 2942,
+    "heading": "G8 - Repression of forigners",
+    "created": "2001-07-18 05:13:53",
+    "linked_file": null,
+    "hugo": "2942-g8-repression-of-forigners",
+    "date": "2001-07-18",
+    "time": "05:13:53",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "13",
+    "second": "53"
+  },
+  {
+    "id": 2943,
+    "heading": "As from a nightmare",
+    "created": "2001-07-17 20:53:28",
+    "linked_file": null,
+    "hugo": "2943-as-from-a-nightmare",
+    "date": "2001-07-17",
+    "time": "20:53:28",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "53",
+    "second": "28"
+  },
+  {
+    "id": 2944,
+    "heading": "allarme bomba  via dante 17 luglio ore 23",
+    "created": "2001-07-17 16:43:00",
+    "linked_file": null,
+    "hugo": "2944-allarme-bomba-via-dante-17-luglio-ore-23",
+    "date": "2001-07-17",
+    "time": "16:43:00",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "43",
+    "second": "00"
+  },
+  {
+    "id": 2948,
+    "heading": "first impressions in genoa",
+    "created": "2001-07-17 22:57:49",
+    "linked_file": null,
+    "hugo": "2948-first-impressions-in-genoa",
+    "date": "2001-07-17",
+    "time": "22:57:49",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "22",
+    "minute": "57",
+    "second": "49"
+  },
+  {
+    "id": 2950,
+    "heading": "English Translation of GSF Medical Bulletin",
+    "created": "2001-07-17 17:32:41",
+    "linked_file": null,
+    "hugo": "2950-english-translation-of-gsf-medical-bulletin",
+    "date": "2001-07-17",
+    "time": "17:32:41",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "17",
+    "minute": "32",
+    "second": "41"
+  },
+  {
+    "id": 2957,
+    "heading": "\"Bomb\" at Carlini stadium",
+    "created": "2001-07-17 19:46:36",
+    "linked_file": "2001/07/police_explosion_16th_july.rm",
+    "hugo": "2957-bomb-at-carlini-stadium",
+    "date": "2001-07-17",
+    "time": "19:46:36",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "19",
+    "minute": "46",
+    "second": "36"
+  },
+  {
+    "id": 2961,
+    "heading": "(en,it,de,fr,gr,pl) Important: International (Antinational) Genova Offensive ()",
+    "created": "2001-07-17 20:22:12",
+    "linked_file": null,
+    "hugo": "2961-enitdefrgrpl-important-international-antinational-genova-offensive-",
+    "date": "2001-07-17",
+    "time": "20:22:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "22",
+    "second": "12"
+  },
+  {
+    "id": 2962,
+    "heading": "(it) Comunicato 1 - Anarchici contro il G8 - marted A - 17/07/2001",
+    "created": "2001-07-17 20:23:40",
+    "linked_file": null,
+    "hugo": "2962-it-comunicato-1-anarchici-contro-il-g8-marted-a-17072001",
+    "date": "2001-07-17",
+    "time": "20:23:40",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "23",
+    "second": "40"
+  },
+  {
+    "id": 2964,
+    "heading": "it) nessun oggetto [EXCERPT]",
+    "created": "2001-07-17 20:26:12",
+    "linked_file": null,
+    "hugo": "2964-it-nessun-oggetto-excerpt",
+    "date": "2001-07-17",
+    "time": "20:26:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "26",
+    "second": "12"
+  },
+  {
+    "id": 2966,
+    "heading": "(en) irish anarchists ' (en) What is wrong with the G8  '",
+    "created": "2001-07-18 04:22:49",
+    "linked_file": null,
+    "hugo": "2966-en-irish-anarchists-en-what-is-wrong-with-the-g8-",
+    "date": "2001-07-18",
+    "time": "04:22:49",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "22",
+    "second": "49"
+  },
+  {
+    "id": 2972,
+    "heading": "hundreds of cops in Carlini Stadium / centinaia di sbirri al Carlini",
+    "created": "2001-07-18 16:44:14",
+    "linked_file": null,
+    "hugo": "2972-hundreds-of-cops-in-carlini-stadium-centinaia-di-sbirri-al-carlini",
+    "date": "2001-07-18",
+    "time": "16:44:14",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "44",
+    "second": "14"
+  },
+  {
+    "id": 2976,
+    "heading": "page 2 of tear gas instructions",
+    "created": "2001-07-17 23:08:45",
+    "linked_file": "2001/07/teargas4kids.jpg",
+    "hugo": "2976-page-2-of-tear-gas-instructions",
+    "date": "2001-07-17",
+    "time": "23:08:45",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "08",
+    "second": "45"
+  },
+  {
+    "id": 2980,
+    "heading": "La polizia al Carlini: aggiornamento",
+    "created": "2001-07-17 23:31:00",
+    "linked_file": null,
+    "hugo": "2980-la-polizia-al-carlini-aggiornamento",
+    "date": "2001-07-17",
+    "time": "23:31:00",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "31",
+    "second": "00"
+  },
+  {
+    "id": 2985,
+    "heading": "ATTAC",
+    "created": "2001-07-17 23:54:26",
+    "linked_file": "2001/07/attac.rm",
+    "hugo": "2985-attac",
+    "date": "2001-07-17",
+    "time": "23:54:26",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "54",
+    "second": "26"
+  },
+  {
+    "id": 2986,
+    "heading": "Polizia al Carlini/Police at Carlini Stadium/Polizei umzingelt  Carlini-Stadion",
+    "created": "2001-07-17 23:54:46",
+    "linked_file": null,
+    "hugo": "2986-polizia-al-carlinipolice-at-carlini-stadiumpolizei-umzingelt-carlinistadion",
+    "date": "2001-07-17",
+    "time": "23:54:46",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "54",
+    "second": "46"
+  },
+  {
+    "id": 2989,
+    "heading": "Le facce da culo Diessine e verdi nel corteo del 21.",
+    "created": "2001-07-18 06:47:33",
+    "linked_file": null,
+    "hugo": "2989-le-facce-da-culo-diessine-e-verdi-nel-corteo-del-21",
+    "date": "2001-07-18",
+    "time": "06:47:33",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "47",
+    "second": "33"
+  },
+  {
+    "id": 2990,
+    "heading": "DIGOS al ciclamini",
+    "created": "2001-07-18 00:55:11",
+    "linked_file": null,
+    "hugo": "2990-digos-al-ciclamini",
+    "date": "2001-07-18",
+    "time": "00:55:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "00",
+    "minute": "55",
+    "second": "11"
+  },
+  {
+    "id": 2991,
+    "heading": "GENOVA E' DAPPERTUTTO",
+    "created": "2001-07-18 06:04:20",
+    "linked_file": null,
+    "hugo": "2991-genova-e-dappertutto",
+    "date": "2001-07-18",
+    "time": "06:04:20",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "04",
+    "second": "20"
+  },
+  {
+    "id": 2992,
+    "heading": "Digos al Carlini - intervista audio [it]",
+    "created": "2001-07-30 16:07:24",
+    "linked_file": "2001/07/carlini.mp3",
+    "hugo": "2992-digos-al-carlini-intervista-audio-it",
+    "date": "2001-07-30",
+    "time": "16:07:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "07",
+    "second": "24"
+  },
+  {
+    "id": 2993,
+    "heading": "Clamoroso a Marassi!",
+    "created": "2001-07-18 01:20:51",
+    "linked_file": null,
+    "hugo": "2993-clamoroso-a-marassi",
+    "date": "2001-07-18",
+    "time": "01:20:51",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "20",
+    "second": "51"
+  },
+  {
+    "id": 2994,
+    "heading": "british activist held out by train cancellation",
+    "created": "2001-07-18 01:22:52",
+    "linked_file": null,
+    "hugo": "2994-british-activist-held-out-by-train-cancellation",
+    "date": "2001-07-18",
+    "time": "01:22:52",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "22",
+    "second": "52"
+  },
+  {
+    "id": 2995,
+    "heading": "Police beat arrested activists in custody",
+    "created": "2001-07-18 02:36:13",
+    "linked_file": null,
+    "hugo": "2995-police-beat-arrested-activists-in-custody",
+    "date": "2001-07-18",
+    "time": "02:36:13",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "02",
+    "minute": "36",
+    "second": "13"
+  },
+  {
+    "id": 2996,
+    "heading": "(fr) (fr) Important: International (Antinational) Genova Offensive (en,it,de,gr,",
+    "created": "2001-07-18 01:45:28",
+    "linked_file": null,
+    "hugo": "2996-fr-fr-important-international-antinational-genova-offensive-enitdegr",
+    "date": "2001-07-18",
+    "time": "01:45:28",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "45",
+    "second": "28"
+  },
+  {
+    "id": 2997,
+    "heading": "our world is not for sale",
+    "created": "2001-07-18 01:59:47",
+    "linked_file": "2001/07/g8symb.jpg",
+    "hugo": "2997-our-world-is-not-for-sale",
+    "date": "2001-07-18",
+    "time": "01:59:47",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "59",
+    "second": "47"
+  },
+  {
+    "id": 3000,
+    "heading": "Informações de Génova (portugues)",
+    "created": "2001-07-18 02:23:06",
+    "linked_file": null,
+    "hugo": "3000-informacoes-de-genova-portugues",
+    "date": "2001-07-18",
+    "time": "02:23:06",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "02",
+    "minute": "23",
+    "second": "06"
+  },
+  {
+    "id": 3003,
+    "heading": "attentato incendiario a milano-ansa",
+    "created": "2001-07-18 03:03:40",
+    "linked_file": null,
+    "hugo": "3003-attentato-incendiario-a-milanoansa",
+    "date": "2001-07-18",
+    "time": "03:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 3004,
+    "heading": "Perquisa al Campo Ciclamini/ Police raided Campo Ciclamini",
+    "created": "2001-07-18 07:29:52",
+    "linked_file": null,
+    "hugo": "3004-perquisa-al-campo-ciclamini-police-raided-campo-ciclamini",
+    "date": "2001-07-18",
+    "time": "07:29:52",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "07",
+    "minute": "29",
+    "second": "52"
+  },
+  {
+    "id": 3005,
+    "heading": "Rete dune anti globalizzazione",
+    "created": "2001-07-18 03:32:29",
+    "linked_file": "2001/07/izwvnd.txt",
+    "hugo": "3005-rete-dune-anti-globalizzazione",
+    "date": "2001-07-18",
+    "time": "03:32:29",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "32",
+    "second": "29"
+  },
+  {
+    "id": 3007,
+    "heading": "aggiornamento dal Carlini",
+    "created": "2001-07-18 03:47:35",
+    "linked_file": null,
+    "hugo": "3007-aggiornamento-dal-carlini",
+    "date": "2001-07-18",
+    "time": "03:47:35",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "47",
+    "second": "35"
+  },
+  {
+    "id": 3008,
+    "heading": "Occupazione di un'ambasciata svedese",
+    "created": "2001-07-19 03:06:08",
+    "linked_file": null,
+    "hugo": "3008-occupazione-di-unambasciata-svedese",
+    "date": "2001-07-19",
+    "time": "03:06:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "06",
+    "second": "08"
+  },
+  {
+    "id": 3010,
+    "heading": "Police Explosion In genoa 16/07/01 Video",
+    "created": "2001-07-18 03:57:05",
+    "linked_file": null,
+    "hugo": "3010-police-explosion-in-genoa-160701-video",
+    "date": "2001-07-18",
+    "time": "03:57:05",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "57",
+    "second": "05"
+  },
+  {
+    "id": 3011,
+    "heading": "Roma: partito il treno disobbediente di R.A.G.E.",
+    "created": "2001-07-18 04:00:07",
+    "linked_file": null,
+    "hugo": "3011-roma-partito-il-treno-disobbediente-di-rage",
+    "date": "2001-07-18",
+    "time": "04:00:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "00",
+    "second": "07"
+  },
+  {
+    "id": 3021,
+    "heading": "Digos al Carlini (photo)",
+    "created": "2001-07-18 04:12:05",
+    "linked_file": "2001/07/carlini8.jpg",
+    "hugo": "3021-digos-al-carlini-photo",
+    "date": "2001-07-18",
+    "time": "04:12:05",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "12",
+    "second": "05"
+  },
+  {
+    "id": 3023,
+    "heading": "corteo del sindacalismo di base",
+    "created": "2001-07-18 04:25:18",
+    "linked_file": null,
+    "hugo": "3023-corteo-del-sindacalismo-di-base",
+    "date": "2001-07-18",
+    "time": "04:25:18",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "25",
+    "second": "18"
+  },
+  {
+    "id": 3026,
+    "heading": "busta incendiaria al TG4",
+    "created": "2001-07-18 05:20:46",
+    "linked_file": null,
+    "hugo": "3026-busta-incendiaria-al-tg4",
+    "date": "2001-07-18",
+    "time": "05:20:46",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "20",
+    "second": "46"
+  },
+  {
+    "id": 3030,
+    "heading": "Genova: Super Video in Action",
+    "created": "2001-07-18 09:56:50",
+    "linked_file": "2001/07/super_video_01.jpg",
+    "hugo": "3030-genova-super-video-in-action",
+    "date": "2001-07-18",
+    "time": "09:56:50",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "56",
+    "second": "50"
+  },
+  {
+    "id": 3032,
+    "heading": "polarization, attention and polvo di pietra",
+    "created": "2001-07-18 05:24:37",
+    "linked_file": null,
+    "hugo": "3032-polarization-attention-and-polvo-di-pietra",
+    "date": "2001-07-18",
+    "time": "05:24:37",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "24",
+    "second": "37"
+  },
+  {
+    "id": 3036,
+    "heading": "Cows & MadCows in Genova",
+    "created": "2001-07-18 05:34:39",
+    "linked_file": "2001/07/cows_madcows.jpg",
+    "hugo": "3036-cows-madcows-in-genova",
+    "date": "2001-07-18",
+    "time": "05:34:39",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "34",
+    "second": "39"
+  },
+  {
+    "id": 3038,
+    "heading": "Fermamo il G8",
+    "created": "2001-07-18 05:40:12",
+    "linked_file": "2001/07/fermamo_g8.jpg",
+    "hugo": "3038-fermamo-il-g8",
+    "date": "2001-07-18",
+    "time": "05:40:12",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "40",
+    "second": "12"
+  },
+  {
+    "id": 3039,
+    "heading": "Porno mazzate sotto gli occhi di Benito",
+    "created": "2001-07-18 06:35:27",
+    "linked_file": null,
+    "hugo": "3039-porno-mazzate-sotto-gli-occhi-di-benito",
+    "date": "2001-07-18",
+    "time": "06:35:27",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "35",
+    "second": "27"
+  },
+  {
+    "id": 3040,
+    "heading": "exploding envelope at TG4",
+    "created": "2001-07-18 05:56:22",
+    "linked_file": null,
+    "hugo": "3040-exploding-envelope-at-tg4",
+    "date": "2001-07-18",
+    "time": "05:56:22",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "56",
+    "second": "22"
+  },
+  {
+    "id": 3042,
+    "heading": "ANCORA  ATTENTATI INCENDIARI CONTRO IL G8",
+    "created": "2001-07-22 05:12:12",
+    "linked_file": null,
+    "hugo": "3042-ancora-attentati-incendiari-contro-il-g8",
+    "date": "2001-07-22",
+    "time": "05:12:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "12",
+    "second": "12"
+  },
+  {
+    "id": 3043,
+    "heading": "Genova: German activist is threatened of being send to jail\n",
+    "created": "2001-07-18 06:12:28",
+    "linked_file": null,
+    "hugo": "3043-genova-german-activist-is-threatened-of-being-send-to-jail",
+    "date": "2001-07-18",
+    "time": "06:12:28",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "12",
+    "second": "28"
+  },
+  {
+    "id": 3046,
+    "heading": "porno and a beating under the eyes of Benito (translation)",
+    "created": "2001-07-18 09:51:19",
+    "linked_file": null,
+    "hugo": "3046-porno-and-a-beating-under-the-eyes-of-benito-translation",
+    "date": "2001-07-18",
+    "time": "09:51:19",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "51",
+    "second": "19"
+  },
+  {
+    "id": 3047,
+    "heading": "Benevento attacchinaggio fermato",
+    "created": "2001-07-18 06:26:40",
+    "linked_file": null,
+    "hugo": "3047-benevento-attacchinaggio-fermato",
+    "date": "2001-07-18",
+    "time": "06:26:40",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "26",
+    "second": "40"
+  },
+  {
+    "id": 3051,
+    "heading": "uomo e ambiente \"peace & ecology\"",
+    "created": "2001-07-18 07:18:32",
+    "linked_file": "2001/07/peace-ecology1.jpg",
+    "hugo": "3051-uomo-e-ambiente-peace-ecology",
+    "date": "2001-07-18",
+    "time": "07:18:32",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "07",
+    "minute": "18",
+    "second": "32"
+  },
+  {
+    "id": 3052,
+    "heading": "Tre compagni arrestati a Bergamo",
+    "created": "2001-07-18 07:38:09",
+    "linked_file": null,
+    "hugo": "3052-tre-compagni-arrestati-a-bergamo",
+    "date": "2001-07-18",
+    "time": "07:38:09",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "07",
+    "minute": "38",
+    "second": "09"
+  },
+  {
+    "id": 3054,
+    "heading": "What's wrong with the G8",
+    "created": "2001-07-18 09:12:41",
+    "linked_file": "2001/07/genoa_leaf.gif",
+    "hugo": "3054-whats-wrong-with-the-g8",
+    "date": "2001-07-18",
+    "time": "09:12:41",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "12",
+    "second": "41"
+  },
+  {
+    "id": 3055,
+    "heading": "peace&ecology",
+    "created": "2001-07-18 08:20:42",
+    "linked_file": "2001/07/peace-ecology0.jpg",
+    "hugo": "3055-peaceecology",
+    "date": "2001-07-18",
+    "time": "08:20:42",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "20",
+    "second": "42"
+  },
+  {
+    "id": 3056,
+    "heading": "bomba a Bologna",
+    "created": "2001-07-18 09:26:54",
+    "linked_file": null,
+    "hugo": "3056-bomba-a-bologna",
+    "date": "2001-07-18",
+    "time": "09:26:54",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "26",
+    "second": "54"
+  },
+  {
+    "id": 3057,
+    "heading": "situazione alla frontiera di Ventimiglia/Ventimiglia situation",
+    "created": "2001-07-18 16:30:19",
+    "linked_file": null,
+    "hugo": "3057-situazione-alla-frontiera-di-ventimigliaventimiglia-situation",
+    "date": "2001-07-18",
+    "time": "16:30:19",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "30",
+    "second": "19"
+  },
+  {
+    "id": 3058,
+    "heading": "PERQUISITECI TUTTI!!!!",
+    "created": "2001-07-18 12:05:02",
+    "linked_file": null,
+    "hugo": "3058-perquisiteci-tutti",
+    "date": "2001-07-18",
+    "time": "12:05:02",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "05",
+    "second": "02"
+  },
+  {
+    "id": 3065,
+    "heading": "Swedish Police to visit Genua",
+    "created": "2001-07-18 12:45:11",
+    "linked_file": null,
+    "hugo": "3065-swedish-police-to-visit-genua",
+    "date": "2001-07-18",
+    "time": "12:45:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "45",
+    "second": "11"
+  },
+  {
+    "id": 3066,
+    "heading": "G8: FAILS THE WORLD'S CHILDREN",
+    "created": "2001-07-18 08:28:48",
+    "linked_file": null,
+    "hugo": "3066-g8-fails-the-worlds-children",
+    "date": "2001-07-18",
+    "time": "08:28:48",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "28",
+    "second": "48"
+  },
+  {
+    "id": 3067,
+    "heading": "Rude Awakening",
+    "created": "2001-07-25 07:40:43",
+    "linked_file": "2001/07/karlino.rm",
+    "hugo": "3067-rude-awakening",
+    "date": "2001-07-25",
+    "time": "07:40:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "40",
+    "second": "43"
+  },
+  {
+    "id": 3069,
+    "heading": "Super video a Genova",
+    "created": "2001-07-18 13:20:15",
+    "linked_file": "2001/07/arrivo_genova.rm",
+    "hugo": "3069-super-video-a-genova",
+    "date": "2001-07-18",
+    "time": "13:20:15",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "20",
+    "second": "15"
+  },
+  {
+    "id": 3071,
+    "heading": "PLEASE DISTANCE YOURSELF FROM VIOLENT PROTESTERS",
+    "created": "2001-07-18 18:03:10",
+    "linked_file": null,
+    "hugo": "3071-please-distance-yourself-from-violent-protesters",
+    "date": "2001-07-18",
+    "time": "18:03:10",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "18",
+    "minute": "03",
+    "second": "10"
+  },
+  {
+    "id": 3072,
+    "heading": "NO to Violence, NO to Debt",
+    "created": "2001-07-18 21:34:16",
+    "linked_file": null,
+    "hugo": "3072-no-to-violence-no-to-debt",
+    "date": "2001-07-18",
+    "time": "21:34:16",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "21",
+    "minute": "34",
+    "second": "16"
+  },
+  {
+    "id": 3074,
+    "heading": "genova.eventi.17",
+    "created": "2001-07-18 09:29:36",
+    "linked_file": null,
+    "hugo": "3074-genovaeventi17",
+    "date": "2001-07-18",
+    "time": "09:29:36",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "29",
+    "second": "36"
+  },
+  {
+    "id": 3083,
+    "heading": "deportation of the arrested",
+    "created": "2001-07-18 12:26:58",
+    "linked_file": null,
+    "hugo": "3083-deportation-of-the-arrested",
+    "date": "2001-07-18",
+    "time": "12:26:58",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "26",
+    "second": "58"
+  },
+  {
+    "id": 3088,
+    "heading": "DS e manifestazione del 21 (comunicato GSF)",
+    "created": "2001-07-18 14:39:06",
+    "linked_file": "2001/07/gwklby.txt",
+    "hugo": "3088-ds-e-manifestazione-del-21-comunicato-gsf",
+    "date": "2001-07-18",
+    "time": "14:39:06",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "39",
+    "second": "06"
+  },
+  {
+    "id": 3089,
+    "heading": "Radio News from Genova",
+    "created": "2001-07-23 17:44:35",
+    "linked_file": "2001/07/gr18072001.mp3",
+    "hugo": "3089-radio-news-from-genova",
+    "date": "2001-07-23",
+    "time": "17:44:35",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "44",
+    "second": "35"
+  },
+  {
+    "id": 3091,
+    "heading": "All to Genoa (appeal by Italian Communists)",
+    "created": "2001-07-18 13:38:35",
+    "linked_file": null,
+    "hugo": "3091-all-to-genoa-appeal-by-italian-communists",
+    "date": "2001-07-18",
+    "time": "13:38:35",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "38",
+    "second": "35"
+  },
+  {
+    "id": 3097,
+    "heading": "Photos Genua Wednesday afternoon",
+    "created": "2001-07-18 11:22:07",
+    "linked_file": "2001/07/mittwoch.gif",
+    "hugo": "3097-photos-genua-wednesday-afternoon",
+    "date": "2001-07-18",
+    "time": "11:22:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "11",
+    "minute": "22",
+    "second": "07"
+  },
+  {
+    "id": 3101,
+    "heading": "Genova: Action of Inhabitants in the Red Zone",
+    "created": "2001-07-18 13:13:57",
+    "linked_file": null,
+    "hugo": "3101-genova-action-of-inhabitants-in-the-red-zone",
+    "date": "2001-07-18",
+    "time": "13:13:57",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "13",
+    "second": "57"
+  },
+  {
+    "id": 3102,
+    "heading": "13 Persons were arrested in Bologna",
+    "created": "2001-07-18 11:33:27",
+    "linked_file": null,
+    "hugo": "3102-13-persons-were-arrested-in-bologna",
+    "date": "2001-07-18",
+    "time": "11:33:27",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "11",
+    "minute": "33",
+    "second": "27"
+  },
+  {
+    "id": 3105,
+    "heading": "Catholic Priests, Nuns Join Protest   In Genoa.",
+    "created": "2001-07-18 12:20:47",
+    "linked_file": null,
+    "hugo": "3105-catholic-priests-nuns-join-protest-in-genoa",
+    "date": "2001-07-18",
+    "time": "12:20:47",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "20",
+    "second": "47"
+  },
+  {
+    "id": 3108,
+    "heading": "UN: 52% of Africans Live on less than $1 a day as G8 Aid Dwindles.",
+    "created": "2001-07-18 12:35:35",
+    "linked_file": null,
+    "hugo": "3108-un-52-of-africans-live-on-less-than-1-a-day-as-g8-aid-dwindles",
+    "date": "2001-07-18",
+    "time": "12:35:35",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "35",
+    "second": "35"
+  },
+  {
+    "id": 3109,
+    "heading": "Genoa Social Forum Condemns Bombs",
+    "created": "2001-07-18 14:13:04",
+    "linked_file": "2001/07/test.ra",
+    "hugo": "3109-genoa-social-forum-condemns-bombs",
+    "date": "2001-07-18",
+    "time": "14:13:04",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "13",
+    "second": "04"
+  },
+  {
+    "id": 3112,
+    "heading": "Jose Bove in GENOVA",
+    "created": "2001-07-18 13:02:07",
+    "linked_file": "2001/07/bove_in_gonova__da_.jpg",
+    "hugo": "3112-jose-bove-in-genova",
+    "date": "2001-07-18",
+    "time": "13:02:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "02",
+    "second": "07"
+  },
+  {
+    "id": 3114,
+    "heading": "si riparte",
+    "created": "2001-07-18 13:10:17",
+    "linked_file": null,
+    "hugo": "3114-si-riparte",
+    "date": "2001-07-18",
+    "time": "13:10:17",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "10",
+    "second": "17"
+  },
+  {
+    "id": 3116,
+    "heading": "July 19th Report from Genova",
+    "created": "2001-07-18 15:18:42",
+    "linked_file": "2001/07/leanoq.txt",
+    "hugo": "3116-july-19th-report-from-genova",
+    "date": "2001-07-18",
+    "time": "15:18:42",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "18",
+    "second": "42"
+  },
+  {
+    "id": 3117,
+    "heading": "Video/Coverage on Dutch News Channel 16-18 jul",
+    "created": "2001-07-18 18:53:23",
+    "linked_file": null,
+    "hugo": "3117-videocoverage-on-dutch-news-channel-1618-jul",
+    "date": "2001-07-18",
+    "time": "18:53:23",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "18",
+    "minute": "53",
+    "second": "23"
+  },
+  {
+    "id": 3119,
+    "heading": "informazioni a Savona per i manifestanti",
+    "created": "2001-07-18 13:20:33",
+    "linked_file": null,
+    "hugo": "3119-informazioni-a-savona-per-i-manifestanti",
+    "date": "2001-07-18",
+    "time": "13:20:33",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "20",
+    "second": "33"
+  },
+  {
+    "id": 3122,
+    "heading": "non portate i cellulari a genova!",
+    "created": "2001-07-18 16:04:01",
+    "linked_file": null,
+    "hugo": "3122-non-portate-i-cellulari-a-genova",
+    "date": "2001-07-18",
+    "time": "16:04:01",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "04",
+    "second": "01"
+  },
+  {
+    "id": 3127,
+    "heading": "Also the nature against G8.",
+    "created": "2001-07-18 16:03:23",
+    "linked_file": null,
+    "hugo": "3127-also-the-nature-against-g8",
+    "date": "2001-07-18",
+    "time": "16:03:23",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "03",
+    "second": "23"
+  },
+  {
+    "id": 3128,
+    "heading": "Forza Genoa!!!  Solidarity from Argentina",
+    "created": "2001-07-18 20:42:31",
+    "linked_file": null,
+    "hugo": "3128-forza-genoa-solidarity-from-argentina",
+    "date": "2001-07-18",
+    "time": "20:42:31",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "42",
+    "second": "31"
+  },
+  {
+    "id": 3129,
+    "heading": "Voci globali contro il G8",
+    "created": "2001-07-18 14:32:08",
+    "linked_file": "2001/07/hebe.jpg.jpg",
+    "hugo": "3129-voci-globali-contro-il-g8",
+    "date": "2001-07-18",
+    "time": "14:32:08",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "32",
+    "second": "08"
+  },
+  {
+    "id": 3130,
+    "heading": "portate i cellulari a Genova",
+    "created": "2001-07-18 14:32:15",
+    "linked_file": null,
+    "hugo": "3130-portate-i-cellulari-a-genova",
+    "date": "2001-07-18",
+    "time": "14:32:15",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "32",
+    "second": "15"
+  },
+  {
+    "id": 3131,
+    "heading": "da Genova",
+    "created": "2001-07-18 14:37:11",
+    "linked_file": "2001/07/25.jpg",
+    "hugo": "3131-da-genova",
+    "date": "2001-07-18",
+    "time": "14:37:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "37",
+    "second": "11"
+  },
+  {
+    "id": 3136,
+    "heading": "Ultime da Chiasso/Breaking news from Chiasso",
+    "created": "2001-07-18 19:05:19",
+    "linked_file": null,
+    "hugo": "3136-ultime-da-chiassobreaking-news-from-chiasso",
+    "date": "2001-07-18",
+    "time": "19:05:19",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "19",
+    "minute": "05",
+    "second": "19"
+  },
+  {
+    "id": 3137,
+    "heading": "conferenza stampa gsf intervento di indymedia",
+    "created": "2001-07-18 15:31:30",
+    "linked_file": null,
+    "hugo": "3137-conferenza-stampa-gsf-intervento-di-indymedia",
+    "date": "2001-07-18",
+    "time": "15:31:30",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "31",
+    "second": "30"
+  },
+  {
+    "id": 3138,
+    "heading": "Antifascismo a Genova",
+    "created": "2001-07-18 15:36:05",
+    "linked_file": null,
+    "hugo": "3138-antifascismo-a-genova",
+    "date": "2001-07-18",
+    "time": "15:36:05",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "36",
+    "second": "05"
+  },
+  {
+    "id": 3139,
+    "heading": "intervento di indymedia alla conferenza stampa del gsf",
+    "created": "2001-07-18 15:39:11",
+    "linked_file": null,
+    "hugo": "3139-intervento-di-indymedia-alla-conferenza-stampa-del-gsf",
+    "date": "2001-07-18",
+    "time": "15:39:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "39",
+    "second": "11"
+  },
+  {
+    "id": 3140,
+    "heading": "conferenza stampa gsf intervento indymedia",
+    "created": "2001-07-18 15:45:08",
+    "linked_file": null,
+    "hugo": "3140-conferenza-stampa-gsf-intervento-indymedia",
+    "date": "2001-07-18",
+    "time": "15:45:08",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "45",
+    "second": "08"
+  },
+  {
+    "id": 3142,
+    "heading": "Rilasciati i 13 compagni bolognesi",
+    "created": "2001-07-18 16:22:43",
+    "linked_file": null,
+    "hugo": "3142-rilasciati-i-13-compagni-bolognesi",
+    "date": "2001-07-18",
+    "time": "16:22:43",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "22",
+    "second": "43"
+  },
+  {
+    "id": 3147,
+    "heading": "A MESSAGE TO WORLD LEADERS",
+    "created": "2001-07-18 23:18:18",
+    "linked_file": "2001/07/mace6.jpg",
+    "hugo": "3147-a-message-to-world-leaders",
+    "date": "2001-07-18",
+    "time": "23:18:18",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "23",
+    "minute": "18",
+    "second": "18"
+  },
+  {
+    "id": 3149,
+    "heading": "News from the W.O.M.B.L.E.S. campsfield brigade",
+    "created": "2001-07-18 16:28:53",
+    "linked_file": null,
+    "hugo": "3149-news-from-the-wombles-campsfield-brigade",
+    "date": "2001-07-18",
+    "time": "16:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 3154,
+    "heading": "Programma completo del 19, 20, 21",
+    "created": "2001-07-20 10:59:33",
+    "linked_file": null,
+    "hugo": "3154-programma-completo-del-19-20-21",
+    "date": "2001-07-20",
+    "time": "10:59:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "59",
+    "second": "33"
+  },
+  {
+    "id": 3155,
+    "heading": "MANU CHAO plays in genova for thousands",
+    "created": "2001-07-18 17:04:07",
+    "linked_file": "2001/07/cubaflag.jpg",
+    "hugo": "3155-manu-chao-plays-in-genova-for-thousands",
+    "date": "2001-07-18",
+    "time": "17:04:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "17",
+    "minute": "04",
+    "second": "07"
+  },
+  {
+    "id": 3157,
+    "heading": "Globalise Resistance Train",
+    "created": "2001-07-19 14:05:30",
+    "linked_file": null,
+    "hugo": "3157-globalise-resistance-train",
+    "date": "2001-07-19",
+    "time": "14:05:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "05",
+    "second": "30"
+  },
+  {
+    "id": 3158,
+    "heading": "Critcal Mass arrives from Padova",
+    "created": "2001-07-23 03:44:27",
+    "linked_file": "2001/07/crit_mass_padeua.mpg",
+    "hugo": "3158-critcal-mass-arrives-from-padova",
+    "date": "2001-07-23",
+    "time": "03:44:27",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "44",
+    "second": "27"
+  },
+  {
+    "id": 3159,
+    "heading": "Critcal Mass Pic 1",
+    "created": "2001-07-18 17:09:22",
+    "linked_file": "2001/07/bike_wine.jpg",
+    "hugo": "3159-critcal-mass-pic-1",
+    "date": "2001-07-18",
+    "time": "17:09:22",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "17",
+    "minute": "09",
+    "second": "22"
+  },
+  {
+    "id": 3162,
+    "heading": "Free food at Manau Chao",
+    "created": "2001-07-18 17:14:25",
+    "linked_file": "2001/07/clandestino.jpg",
+    "hugo": "3162-free-food-at-manau-chao",
+    "date": "2001-07-18",
+    "time": "17:14:25",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "17",
+    "minute": "14",
+    "second": "25"
+  },
+  {
+    "id": 3167,
+    "heading": "What is the G-8 and why does it matter?",
+    "created": "2001-07-19 18:36:29",
+    "linked_file": null,
+    "hugo": "3167-what-is-the-g8-and-why-does-it-matter",
+    "date": "2001-07-19",
+    "time": "18:36:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "36",
+    "second": "29"
+  },
+  {
+    "id": 3168,
+    "heading": "deported from genoa - human rights abuses at immigration",
+    "created": "2001-07-18 21:37:01",
+    "linked_file": null,
+    "hugo": "3168-deported-from-genoa-human-rights-abuses-at-immigration",
+    "date": "2001-07-18",
+    "time": "21:37:01",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "21",
+    "minute": "37",
+    "second": "01"
+  },
+  {
+    "id": 3170,
+    "heading": "Friends, Romans. . . Lend me your ears",
+    "created": "2001-07-19 12:20:06",
+    "linked_file": null,
+    "hugo": "3170-friends-romans-lend-me-your-ears",
+    "date": "2001-07-19",
+    "time": "12:20:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "20",
+    "second": "06"
+  },
+  {
+    "id": 3174,
+    "heading": "Canto anti zona rossa",
+    "created": "2001-07-18 20:48:58",
+    "linked_file": "2001/07/canto.rm",
+    "hugo": "3174-canto-anti-zona-rossa",
+    "date": "2001-07-18",
+    "time": "20:48:58",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "48",
+    "second": "58"
+  },
+  {
+    "id": 3175,
+    "heading": "Strikes hit Italy, 1000s of striking workers chant 'we are going to genoa '",
+    "created": "2001-07-18 20:25:56",
+    "linked_file": null,
+    "hugo": "3175-strikes-hit-italy-1000s-of-striking-workers-chant-we-are-going-to-genoa-",
+    "date": "2001-07-18",
+    "time": "20:25:56",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "25",
+    "second": "56"
+  },
+  {
+    "id": 3176,
+    "heading": "en) Summary of recent police searches in Italy",
+    "created": "2001-07-18 20:29:26",
+    "linked_file": null,
+    "hugo": "3176-en-summary-of-recent-police-searches-in-italy",
+    "date": "2001-07-18",
+    "time": "20:29:26",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "29",
+    "second": "26"
+  },
+  {
+    "id": 3177,
+    "heading": "it) Riassunto delle perquisizioni di questi giorni",
+    "created": "2001-07-18 20:31:09",
+    "linked_file": null,
+    "hugo": "3177-it-riassunto-delle-perquisizioni-di-questi-giorni",
+    "date": "2001-07-18",
+    "time": "20:31:09",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "31",
+    "second": "09"
+  },
+  {
+    "id": 3179,
+    "heading": "Bologna-Milano",
+    "created": "2001-07-18 20:44:38",
+    "linked_file": "2001/07/boge.rm",
+    "hugo": "3179-bolognamilano",
+    "date": "2001-07-18",
+    "time": "20:44:38",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "44",
+    "second": "38"
+  },
+  {
+    "id": 3180,
+    "heading": "Genoa on Minds of Protesters - la times",
+    "created": "2001-07-19 00:04:27",
+    "linked_file": null,
+    "hugo": "3180-genoa-on-minds-of-protesters-la-times",
+    "date": "2001-07-19",
+    "time": "00:04:27",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "00",
+    "minute": "04",
+    "second": "27"
+  },
+  {
+    "id": 3181,
+    "heading": "G8 - what & why",
+    "created": "2001-07-19 01:27:08",
+    "linked_file": null,
+    "hugo": "3181-g8-what-why",
+    "date": "2001-07-19",
+    "time": "01:27:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "01",
+    "minute": "27",
+    "second": "08"
+  },
+  {
+    "id": 3183,
+    "heading": "Genova footage on video popup? (english)  att italy techies",
+    "created": "2001-07-19 05:38:15",
+    "linked_file": null,
+    "hugo": "3183-genova-footage-on-video-popup-english-att-italy-techies",
+    "date": "2001-07-19",
+    "time": "05:38:15",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "05",
+    "minute": "38",
+    "second": "15"
+  },
+  {
+    "id": 3185,
+    "heading": "melbourne solidarity",
+    "created": "2001-07-18 22:27:50",
+    "linked_file": null,
+    "hugo": "3185-melbourne-solidarity",
+    "date": "2001-07-18",
+    "time": "22:27:50",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "22",
+    "minute": "27",
+    "second": "50"
+  },
+  {
+    "id": 3190,
+    "heading": "Where are the Genoa G8 archives? Beyond one day?",
+    "created": "2001-07-20 04:54:13",
+    "linked_file": null,
+    "hugo": "3190-where-are-the-genoa-g8-archives-beyond-one-day",
+    "date": "2001-07-20",
+    "time": "04:54:13",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "54",
+    "second": "13"
+  },
+  {
+    "id": 3192,
+    "heading": "Violent Crime rises in U.K. but Blair targets G8 protesters",
+    "created": "2001-07-18 23:08:54",
+    "linked_file": null,
+    "hugo": "3192-violent-crime-rises-in-uk-but-blair-targets-g8-protesters",
+    "date": "2001-07-18",
+    "time": "23:08:54",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "23",
+    "minute": "08",
+    "second": "54"
+  },
+  {
+    "id": 3194,
+    "heading": "A kiss from Africa",
+    "created": "2001-07-22 12:11:24",
+    "linked_file": "2001/07/kiss.mp3",
+    "hugo": "3194-a-kiss-from-africa",
+    "date": "2001-07-22",
+    "time": "12:11:24",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "11",
+    "second": "24"
+  },
+  {
+    "id": 3195,
+    "heading": "Scarf, Hat, Supplies On Hand - Ready to Rock !",
+    "created": "2001-07-19 11:22:29",
+    "linked_file": null,
+    "hugo": "3195-scarf-hat-supplies-on-hand-ready-to-rock-",
+    "date": "2001-07-19",
+    "time": "11:22:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "22",
+    "second": "29"
+  },
+  {
+    "id": 3198,
+    "heading": "Message from Global Village Tribunal in Genoa",
+    "created": "2001-07-19 11:14:30",
+    "linked_file": null,
+    "hugo": "3198-message-from-global-village-tribunal-in-genoa",
+    "date": "2001-07-19",
+    "time": "11:14:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "14",
+    "second": "30"
+  },
+  {
+    "id": 3201,
+    "heading": "G7  Protest Completely Justified. More Protest Needed.",
+    "created": "2001-07-20 01:34:27",
+    "linked_file": null,
+    "hugo": "3201-g7-protest-completely-justified-more-protest-needed",
+    "date": "2001-07-20",
+    "time": "01:34:27",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "34",
+    "second": "27"
+  },
+  {
+    "id": 3203,
+    "heading": "concerto 20:00h",
+    "created": "2001-07-19 01:48:53",
+    "linked_file": "2001/07/liberta.rm",
+    "hugo": "3203-concerto-2000h",
+    "date": "2001-07-19",
+    "time": "01:48:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "01",
+    "minute": "48",
+    "second": "53"
+  },
+  {
+    "id": 3209,
+    "heading": "joke on corporate media",
+    "created": "2001-07-19 03:35:06",
+    "linked_file": null,
+    "hugo": "3209-joke-on-corporate-media",
+    "date": "2001-07-19",
+    "time": "03:35:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "35",
+    "second": "06"
+  },
+  {
+    "id": 3212,
+    "heading": "bbc corporate report",
+    "created": "2001-07-19 01:43:27",
+    "linked_file": null,
+    "hugo": "3212-bbc-corporate-report",
+    "date": "2001-07-19",
+    "time": "01:43:27",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "01",
+    "minute": "43",
+    "second": "27"
+  },
+  {
+    "id": 3215,
+    "heading": "Manu Chao, borders, and globalization",
+    "created": "2001-07-19 03:29:20",
+    "linked_file": null,
+    "hugo": "3215-manu-chao-borders-and-globalization",
+    "date": "2001-07-19",
+    "time": "03:29:20",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "29",
+    "second": "20"
+  },
+  {
+    "id": 3216,
+    "heading": "Manu Chao, borders, and globalization",
+    "created": "2001-07-19 03:13:16",
+    "linked_file": null,
+    "hugo": "3216-manu-chao-borders-and-globalization",
+    "date": "2001-07-19",
+    "time": "03:13:16",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "13",
+    "second": "16"
+  },
+  {
+    "id": 3219,
+    "heading": "BBC: Protestors Target O' So Phony Tony",
+    "created": "2001-07-20 02:06:57",
+    "linked_file": null,
+    "hugo": "3219-bbc-protestors-target-o-so-phony-tony",
+    "date": "2001-07-20",
+    "time": "02:06:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "06",
+    "second": "57"
+  },
+  {
+    "id": 3226,
+    "heading": "Swedish Consulate occupied (translation from yesterday)",
+    "created": "2001-07-19 06:24:01",
+    "linked_file": null,
+    "hugo": "3226-swedish-consulate-occupied-translation-from-yesterday",
+    "date": "2001-07-19",
+    "time": "06:24:01",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "06",
+    "minute": "24",
+    "second": "01"
+  },
+  {
+    "id": 3227,
+    "heading": "WOMBLES arrive in Genoa!!!",
+    "created": "2001-07-19 03:53:11",
+    "linked_file": "2001/07/qhqwz8.txt",
+    "hugo": "3227-wombles-arrive-in-genoa",
+    "date": "2001-07-19",
+    "time": "03:53:11",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "53",
+    "second": "11"
+  },
+  {
+    "id": 3229,
+    "heading": "Come mai i \"disobbedienti\" hanno i loro attrezzi ?",
+    "created": "2001-07-19 03:57:44",
+    "linked_file": null,
+    "hugo": "3229-come-mai-i-disobbedienti-hanno-i-loro-attrezzi-",
+    "date": "2001-07-19",
+    "time": "03:57:44",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "57",
+    "second": "44"
+  },
+  {
+    "id": 3231,
+    "heading": "Czech Bus Stopped at Brenner Border",
+    "created": "2001-07-19 04:50:13",
+    "linked_file": null,
+    "hugo": "3231-czech-bus-stopped-at-brenner-border",
+    "date": "2001-07-19",
+    "time": "04:50:13",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "04",
+    "minute": "50",
+    "second": "13"
+  },
+  {
+    "id": 3232,
+    "heading": "Fuerza Aerea Zapatista",
+    "created": "2001-07-19 04:44:40",
+    "linked_file": null,
+    "hugo": "3232-fuerza-aerea-zapatista",
+    "date": "2001-07-19",
+    "time": "04:44:40",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "04",
+    "minute": "44",
+    "second": "40"
+  },
+  {
+    "id": 3233,
+    "heading": "iranian manifestation",
+    "created": "2001-07-23 02:37:37",
+    "linked_file": null,
+    "hugo": "3233-iranian-manifestation",
+    "date": "2001-07-23",
+    "time": "02:37:37",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "37",
+    "second": "37"
+  },
+  {
+    "id": 3238,
+    "heading": "Provocazioni nostrane",
+    "created": "2001-07-19 04:56:01",
+    "linked_file": null,
+    "hugo": "3238-provocazioni-nostrane",
+    "date": "2001-07-19",
+    "time": "04:56:01",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "04",
+    "minute": "56",
+    "second": "01"
+  },
+  {
+    "id": 3240,
+    "heading": "RADIO GAP TRASMETTE IN FM!!!",
+    "created": "2001-07-19 09:16:07",
+    "linked_file": null,
+    "hugo": "3240-radio-gap-trasmette-in-fm",
+    "date": "2001-07-19",
+    "time": "09:16:07",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "09",
+    "minute": "16",
+    "second": "07"
+  },
+  {
+    "id": 3241,
+    "heading": "G8, anche il voto di Noam Chomsky per il referendum autogestito di Legambiente",
+    "created": "2001-07-19 05:25:25",
+    "linked_file": null,
+    "hugo": "3241-g8-anche-il-voto-di-noam-chomsky-per-il-referendum-autogestito-di-legambiente",
+    "date": "2001-07-19",
+    "time": "05:25:25",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "05",
+    "minute": "25",
+    "second": "25"
+  },
+  {
+    "id": 3243,
+    "heading": "Genova Stop G8 18.07 [picture report]",
+    "created": "2001-07-21 09:36:32",
+    "linked_file": null,
+    "hugo": "3243-genova-stop-g8-1807-picture-report",
+    "date": "2001-07-21",
+    "time": "09:36:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "36",
+    "second": "32"
+  },
+  {
+    "id": 3248,
+    "heading": "genova.eventi.18",
+    "created": "2001-07-19 05:38:55",
+    "linked_file": null,
+    "hugo": "3248-genovaeventi18",
+    "date": "2001-07-19",
+    "time": "05:38:55",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "05",
+    "minute": "38",
+    "second": "55"
+  },
+  {
+    "id": 3250,
+    "heading": "Background Information on the protest in Genoa",
+    "created": "2001-07-19 07:15:53",
+    "linked_file": null,
+    "hugo": "3250-background-information-on-the-protest-in-genoa",
+    "date": "2001-07-19",
+    "time": "07:15:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "15",
+    "second": "53"
+  },
+  {
+    "id": 3251,
+    "heading": "genova: fachist's police stopt german aktivists",
+    "created": "2001-07-19 21:54:12",
+    "linked_file": null,
+    "hugo": "3251-genova-fachists-police-stopt-german-aktivists",
+    "date": "2001-07-19",
+    "time": "21:54:12",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "21",
+    "minute": "54",
+    "second": "12"
+  },
+  {
+    "id": 3253,
+    "heading": "Arrivo dei fiorentini e pisani ... in musica",
+    "created": "2001-07-19 07:11:14",
+    "linked_file": "2001/07/arrivo_genovagklnrb.rm",
+    "hugo": "3253-arrivo-dei-fiorentini-e-pisani-in-musica",
+    "date": "2001-07-19",
+    "time": "07:11:14",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "11",
+    "second": "14"
+  },
+  {
+    "id": 3255,
+    "heading": "GSF works/ lavoriGSF",
+    "created": "2001-07-19 06:22:45",
+    "linked_file": "2001/07/bovety9m6j.jpg",
+    "hugo": "3255-gsf-works-lavorigsf",
+    "date": "2001-07-19",
+    "time": "06:22:45",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "06",
+    "minute": "22",
+    "second": "45"
+  },
+  {
+    "id": 3259,
+    "heading": "White Knights Say \"ENOUGH\" to G7",
+    "created": "2001-07-19 07:40:06",
+    "linked_file": null,
+    "hugo": "3259-white-knights-say-enough-to-g7",
+    "date": "2001-07-19",
+    "time": "07:40:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "40",
+    "second": "06"
+  },
+  {
+    "id": 3260,
+    "heading": "I greci fermati ad Ancona! The Greeks blocked at Ancona!",
+    "created": "2001-07-19 06:58:06",
+    "linked_file": null,
+    "hugo": "3260-i-greci-fermati-ad-ancona-the-greeks-blocked-at-ancona",
+    "date": "2001-07-19",
+    "time": "06:58:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "06",
+    "minute": "58",
+    "second": "06"
+  },
+  {
+    "id": 3264,
+    "heading": "czech/austrian bus held on austrian border for 3 hours",
+    "created": "2001-07-20 23:54:03",
+    "linked_file": null,
+    "hugo": "3264-czechaustrian-bus-held-on-austrian-border-for-3-hours",
+    "date": "2001-07-20",
+    "time": "23:54:03",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "23",
+    "minute": "54",
+    "second": "03"
+  },
+  {
+    "id": 3265,
+    "heading": "LA SETTIMA CHIAVE: COMUNICATO DELLE TUTE BIANCHE",
+    "created": "2001-07-19 07:20:02",
+    "linked_file": null,
+    "hugo": "3265-la-settima-chiave-comunicato-delle-tute-bianche",
+    "date": "2001-07-19",
+    "time": "07:20:02",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "20",
+    "second": "02"
+  },
+  {
+    "id": 3267,
+    "heading": "G8 Data Protection Fears",
+    "created": "2001-07-19 07:29:30",
+    "linked_file": null,
+    "hugo": "3267-g8-data-protection-fears",
+    "date": "2001-07-19",
+    "time": "07:29:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "29",
+    "second": "30"
+  },
+  {
+    "id": 3270,
+    "heading": "genua:polizia medoviale",
+    "created": "2001-07-19 07:55:35",
+    "linked_file": null,
+    "hugo": "3270-genuapolizia-medoviale",
+    "date": "2001-07-19",
+    "time": "07:55:35",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "55",
+    "second": "35"
+  },
+  {
+    "id": 3272,
+    "heading": "CHIUSA LA STAZIONE DI BRIGNOLE",
+    "created": "2001-07-19 08:30:03",
+    "linked_file": null,
+    "hugo": "3272-chiusa-la-stazione-di-brignole",
+    "date": "2001-07-19",
+    "time": "08:30:03",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "30",
+    "second": "03"
+  },
+  {
+    "id": 3273,
+    "heading": "Global AIDS Alliance Challenges G8",
+    "created": "2001-07-19 08:17:36",
+    "linked_file": null,
+    "hugo": "3273-global-aids-alliance-challenges-g8",
+    "date": "2001-07-19",
+    "time": "08:17:36",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "17",
+    "second": "36"
+  },
+  {
+    "id": 3274,
+    "heading": "IS IMC OR GSF LEADERS PROMOTING STORMING OR VIOLENCE?",
+    "created": "2001-07-19 08:28:11",
+    "linked_file": "2001/07/g8c.gif",
+    "hugo": "3274-is-imc-or-gsf-leaders-promoting-storming-or-violence",
+    "date": "2001-07-19",
+    "time": "08:28:11",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "28",
+    "second": "11"
+  },
+  {
+    "id": 3276,
+    "heading": "Programma Ufficiale Genoa Social Forum 19 luglio 2001",
+    "created": "2001-07-19 08:30:13",
+    "linked_file": null,
+    "hugo": "3276-programma-ufficiale-genoa-social-forum-19-luglio-2001",
+    "date": "2001-07-19",
+    "time": "08:30:13",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "30",
+    "second": "13"
+  },
+  {
+    "id": 3278,
+    "heading": "LA DISOBBEDIENZA AUTORIZZATA",
+    "created": "2001-07-19 10:14:30",
+    "linked_file": null,
+    "hugo": "3278-la-disobbedienza-autorizzata",
+    "date": "2001-07-19",
+    "time": "10:14:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "10",
+    "minute": "14",
+    "second": "30"
+  },
+  {
+    "id": 3279,
+    "heading": "Multinationales, consulats et banques bloquées à Lausanne",
+    "created": "2001-07-19 08:59:39",
+    "linked_file": "2001/07/cdpg8h.txt",
+    "hugo": "3279-multinationales-consulats-et-banques-bloquees-a-lausanne",
+    "date": "2001-07-19",
+    "time": "08:59:39",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "59",
+    "second": "39"
+  },
+  {
+    "id": 3280,
+    "heading": "W.O.M.B.L.E.S. camp evicted near campsfield!! W.O.M.B.L.E.S. arrested!!",
+    "created": "2001-07-19 09:12:46",
+    "linked_file": null,
+    "hugo": "3280-wombles-camp-evicted-near-campsfield-wombles-arrested",
+    "date": "2001-07-19",
+    "time": "09:12:46",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "09",
+    "minute": "12",
+    "second": "46"
+  },
+  {
+    "id": 3283,
+    "heading": "la polizia carica ad ancona",
+    "created": "2001-07-19 20:31:43",
+    "linked_file": null,
+    "hugo": "3283-la-polizia-carica-ad-ancona",
+    "date": "2001-07-19",
+    "time": "20:31:43",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "31",
+    "second": "43"
+  },
+  {
+    "id": 3285,
+    "heading": "I suoni diversi del GSF",
+    "created": "2001-07-19 10:04:58",
+    "linked_file": null,
+    "hugo": "3285-i-suoni-diversi-del-gsf",
+    "date": "2001-07-19",
+    "time": "10:04:58",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "10",
+    "minute": "04",
+    "second": "58"
+  },
+  {
+    "id": 3287,
+    "heading": "Immigration march: Success!",
+    "created": "2001-07-19 12:04:10",
+    "linked_file": null,
+    "hugo": "3287-immigration-march-success",
+    "date": "2001-07-19",
+    "time": "12:04:10",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "04",
+    "second": "10"
+  },
+  {
+    "id": 3289,
+    "heading": "Genoa -- Afternoon before the storm?",
+    "created": "2001-07-19 12:06:13",
+    "linked_file": null,
+    "hugo": "3289-genoa-afternoon-before-the-storm",
+    "date": "2001-07-19",
+    "time": "12:06:13",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "06",
+    "second": "13"
+  },
+  {
+    "id": 3290,
+    "heading": "LATEST NEWS FRON ANCONA",
+    "created": "2001-07-19 15:12:32",
+    "linked_file": null,
+    "hugo": "3290-latest-news-fron-ancona",
+    "date": "2001-07-19",
+    "time": "15:12:32",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "15",
+    "minute": "12",
+    "second": "32"
+  },
+  {
+    "id": 3291,
+    "heading": "150-200 greeks sent home / 150-200 greci a casa!",
+    "created": "2001-07-20 15:46:55",
+    "linked_file": null,
+    "hugo": "3291-150200-greeks-sent-home-150200-greci-a-casa",
+    "date": "2001-07-20",
+    "time": "15:46:55",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "46",
+    "second": "55"
+  },
+  {
+    "id": 3293,
+    "heading": "news from the demo",
+    "created": "2001-07-19 11:14:15",
+    "linked_file": null,
+    "hugo": "3293-news-from-the-demo",
+    "date": "2001-07-19",
+    "time": "11:14:15",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "14",
+    "second": "15"
+  },
+  {
+    "id": 3297,
+    "heading": "Appello per una convergenza delle lotte contro le politiche securitarie e la rep",
+    "created": "2001-07-19 11:26:32",
+    "linked_file": null,
+    "hugo": "3297-appello-per-una-convergenza-delle-lotte-contro-le-politiche-securitarie-e-la-rep",
+    "date": "2001-07-19",
+    "time": "11:26:32",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "26",
+    "second": "32"
+  },
+  {
+    "id": 3298,
+    "heading": "tensions in front of the police office / tensioni davanti alla Questura",
+    "created": "2001-07-19 11:41:46",
+    "linked_file": null,
+    "hugo": "3298-tensions-in-front-of-the-police-office-tensioni-davanti-alla-questura",
+    "date": "2001-07-19",
+    "time": "11:41:46",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "41",
+    "second": "46"
+  },
+  {
+    "id": 3299,
+    "heading": "HUELGA GENERAL EN ARGENTINA",
+    "created": "2001-07-19 11:42:17",
+    "linked_file": null,
+    "hugo": "3299-huelga-general-en-argentina",
+    "date": "2001-07-19",
+    "time": "11:42:17",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "42",
+    "second": "17"
+  },
+  {
+    "id": 3300,
+    "heading": "Pronta in São Paulo la manifestazione contro il G8",
+    "created": "2001-07-19 12:12:54",
+    "linked_file": null,
+    "hugo": "3300-pronta-in-sao-paulo-la-manifestazione-contro-il-g8",
+    "date": "2001-07-19",
+    "time": "12:12:54",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "12",
+    "second": "54"
+  },
+  {
+    "id": 3301,
+    "heading": "Solidarity Action in Toronto",
+    "created": "2001-07-19 11:46:51",
+    "linked_file": null,
+    "hugo": "3301-solidarity-action-in-toronto",
+    "date": "2001-07-19",
+    "time": "11:46:51",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "46",
+    "second": "51"
+  },
+  {
+    "id": 3302,
+    "heading": "IS IMC OR GSF LEADERS PROMOTING STORMING OR VIOLENCE?",
+    "created": "2001-07-19 11:49:49",
+    "linked_file": "2001/07/g8cqpvytr.gif",
+    "hugo": "3302-is-imc-or-gsf-leaders-promoting-storming-or-violence",
+    "date": "2001-07-19",
+    "time": "11:49:49",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "49",
+    "second": "49"
+  },
+  {
+    "id": 3304,
+    "heading": "CENSOR TEST",
+    "created": "2001-07-19 12:34:58",
+    "linked_file": null,
+    "hugo": "3304-censor-test",
+    "date": "2001-07-19",
+    "time": "12:34:58",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "34",
+    "second": "58"
+  },
+  {
+    "id": 3305,
+    "heading": "IMC IS CENSORING POSTS NOW",
+    "created": "2001-07-19 18:50:55",
+    "linked_file": null,
+    "hugo": "3305-imc-is-censoring-posts-now",
+    "date": "2001-07-19",
+    "time": "18:50:55",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "50",
+    "second": "55"
+  },
+  {
+    "id": 3306,
+    "heading": "Ottawa Solidarity Action",
+    "created": "2001-07-19 12:02:02",
+    "linked_file": null,
+    "hugo": "3306-ottawa-solidarity-action",
+    "date": "2001-07-19",
+    "time": "12:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 3308,
+    "heading": "IS IMC OR GSF LEADERS PROMOTING STORMING OR VIOLENCE?",
+    "created": "2001-07-19 14:27:23",
+    "linked_file": null,
+    "hugo": "3308-is-imc-or-gsf-leaders-promoting-storming-or-violence",
+    "date": "2001-07-19",
+    "time": "14:27:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "27",
+    "second": "23"
+  },
+  {
+    "id": 3309,
+    "heading": "GSF Press Release",
+    "created": "2001-07-19 14:21:42",
+    "linked_file": null,
+    "hugo": "3309-gsf-press-release",
+    "date": "2001-07-19",
+    "time": "14:21:42",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "21",
+    "second": "42"
+  },
+  {
+    "id": 3316,
+    "heading": "LA DISOBEDIENZA AUTORIZZATA",
+    "created": "2001-07-19 14:28:49",
+    "linked_file": null,
+    "hugo": "3316-la-disobedienza-autorizzata",
+    "date": "2001-07-19",
+    "time": "14:28:49",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "28",
+    "second": "49"
+  },
+  {
+    "id": 3317,
+    "heading": "World Bank On G8 (propaganda warning)",
+    "created": "2001-07-19 12:32:41",
+    "linked_file": null,
+    "hugo": "3317-world-bank-on-g8-propaganda-warning",
+    "date": "2001-07-19",
+    "time": "12:32:41",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "32",
+    "second": "41"
+  },
+  {
+    "id": 3321,
+    "heading": "A message from Quebec",
+    "created": "2001-07-19 12:51:25",
+    "linked_file": null,
+    "hugo": "3321-a-message-from-quebec",
+    "date": "2001-07-19",
+    "time": "12:51:25",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "51",
+    "second": "25"
+  },
+  {
+    "id": 3323,
+    "heading": "HE STRATEGY OF TENSION: Then and Now.",
+    "created": "2001-07-19 12:54:50",
+    "linked_file": null,
+    "hugo": "3323-he-strategy-of-tension-then-and-now",
+    "date": "2001-07-19",
+    "time": "12:54:50",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "54",
+    "second": "50"
+  },
+  {
+    "id": 3324,
+    "heading": "Anti-G8 Carneval in Helsinki tomorrow",
+    "created": "2001-07-19 12:55:12",
+    "linked_file": null,
+    "hugo": "3324-antig8-carneval-in-helsinki-tomorrow",
+    "date": "2001-07-19",
+    "time": "12:55:12",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "55",
+    "second": "12"
+  },
+  {
+    "id": 3325,
+    "heading": "Migrants demo (report and picture)",
+    "created": "2001-07-19 14:46:33",
+    "linked_file": "2001/07/demostart1.jpg",
+    "hugo": "3325-migrants-demo-report-and-picture",
+    "date": "2001-07-19",
+    "time": "14:46:33",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "46",
+    "second": "33"
+  },
+  {
+    "id": 3326,
+    "heading": "PublixTheatreCaravan J18+J19",
+    "created": "2001-07-19 12:58:59",
+    "linked_file": null,
+    "hugo": "3326-publixtheatrecaravan-j18+j19",
+    "date": "2001-07-19",
+    "time": "12:58:59",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "58",
+    "second": "59"
+  },
+  {
+    "id": 3327,
+    "heading": "Beyond maps and metaphors, Architecture",
+    "created": "2001-07-19 13:01:33",
+    "linked_file": null,
+    "hugo": "3327-beyond-maps-and-metaphors-architecture",
+    "date": "2001-07-19",
+    "time": "13:01:33",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "13",
+    "minute": "01",
+    "second": "33"
+  },
+  {
+    "id": 3328,
+    "heading": "Pink fairy at migrants demo (picture)",
+    "created": "2001-07-21 19:00:53",
+    "linked_file": "2001/07/fairy1.jpg",
+    "hugo": "3328-pink-fairy-at-migrants-demo-picture",
+    "date": "2001-07-21",
+    "time": "19:00:53",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "00",
+    "second": "53"
+  },
+  {
+    "id": 3329,
+    "heading": "Migrants demo picture",
+    "created": "2001-07-20 10:08:42",
+    "linked_file": "2001/07/greens1.jpg",
+    "hugo": "3329-migrants-demo-picture",
+    "date": "2001-07-20",
+    "time": "10:08:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "08",
+    "second": "42"
+  },
+  {
+    "id": 3330,
+    "heading": "no border no deportation",
+    "created": "2001-07-19 13:42:44",
+    "linked_file": "2001/07/nodeportation.jpg",
+    "hugo": "3330-no-border-no-deportation",
+    "date": "2001-07-19",
+    "time": "13:42:44",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "13",
+    "minute": "42",
+    "second": "44"
+  },
+  {
+    "id": 3339,
+    "heading": "Residents solidarity in Genova (picture)",
+    "created": "2001-07-19 18:32:18",
+    "linked_file": "2001/07/che1.jpg",
+    "hugo": "3339-residents-solidarity-in-genova-picture",
+    "date": "2001-07-19",
+    "time": "18:32:18",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "32",
+    "second": "18"
+  },
+  {
+    "id": 3340,
+    "heading": "Bush Proposal Needs to be Applied Retroactively",
+    "created": "2001-07-19 14:49:38",
+    "linked_file": null,
+    "hugo": "3340-bush-proposal-needs-to-be-applied-retroactively",
+    "date": "2001-07-19",
+    "time": "14:49:38",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "49",
+    "second": "38"
+  },
+  {
+    "id": 3347,
+    "heading": "more pictures from the noborder demonstration in genoa",
+    "created": "2001-07-19 23:53:51",
+    "linked_file": "2001/07/campsfield.jpg",
+    "hugo": "3347-more-pictures-from-the-noborder-demonstration-in-genoa",
+    "date": "2001-07-19",
+    "time": "23:53:51",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "23",
+    "minute": "53",
+    "second": "51"
+  },
+  {
+    "id": 3353,
+    "heading": "Solidarity From Canada",
+    "created": "2001-07-19 18:26:09",
+    "linked_file": null,
+    "hugo": "3353-solidarity-from-canada",
+    "date": "2001-07-19",
+    "time": "18:26:09",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "26",
+    "second": "09"
+  },
+  {
+    "id": 3354,
+    "heading": "i greci rispediti a casa da ancona - greek ferry sent back from ancona",
+    "created": "2001-07-19 15:17:22",
+    "linked_file": null,
+    "hugo": "3354-i-greci-rispediti-a-casa-da-ancona-greek-ferry-sent-back-from-ancona",
+    "date": "2001-07-19",
+    "time": "15:17:22",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "15",
+    "minute": "17",
+    "second": "22"
+  },
+  {
+    "id": 3358,
+    "heading": "Solidaridad con Genova en Buenos Aires-Argentina",
+    "created": "2001-07-19 16:50:50",
+    "linked_file": null,
+    "hugo": "3358-solidaridad-con-genova-en-buenos-airesargentina",
+    "date": "2001-07-19",
+    "time": "16:50:50",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "16",
+    "minute": "50",
+    "second": "50"
+  },
+  {
+    "id": 3360,
+    "heading": "Showdown in Genoa: Anti-capitalists vs. the state",
+    "created": "2001-07-19 18:29:24",
+    "linked_file": null,
+    "hugo": "3360-showdown-in-genoa-anticapitalists-vs-the-state",
+    "date": "2001-07-19",
+    "time": "18:29:24",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "29",
+    "second": "24"
+  },
+  {
+    "id": 3361,
+    "heading": "ANCONA: altro gruppo di greci partito per ge / other greek group gone to genoa",
+    "created": "2001-07-19 15:57:04",
+    "linked_file": "2001/07/g8anconaho.jpg",
+    "hugo": "3361-ancona-altro-gruppo-di-greci-partito-per-ge-other-greek-group-gone-to-genoa",
+    "date": "2001-07-19",
+    "time": "15:57:04",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "15",
+    "minute": "57",
+    "second": "04"
+  },
+  {
+    "id": 3362,
+    "heading": "Throat as monitoring any PoMo owls",
+    "created": "2001-07-19 16:13:47",
+    "linked_file": null,
+    "hugo": "3362-throat-as-monitoring-any-pomo-owls",
+    "date": "2001-07-19",
+    "time": "16:13:47",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "16",
+    "minute": "13",
+    "second": "47"
+  },
+  {
+    "id": 3365,
+    "heading": "Borders demonstration 19/07/701 dance against IMF",
+    "created": "2001-07-19 16:45:17",
+    "linked_file": null,
+    "hugo": "3365-borders-demonstration-1907701-dance-against-imf",
+    "date": "2001-07-19",
+    "time": "16:45:17",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "16",
+    "minute": "45",
+    "second": "17"
+  },
+  {
+    "id": 3369,
+    "heading": "Allagato il Carlini/ Carlini stadium flooded",
+    "created": "2001-07-19 17:05:38",
+    "linked_file": null,
+    "hugo": "3369-allagato-il-carlini-carlini-stadium-flooded",
+    "date": "2001-07-19",
+    "time": "17:05:38",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "05",
+    "second": "38"
+  },
+  {
+    "id": 3370,
+    "heading": "Genes : Resume de la mobilisation de jeudi.",
+    "created": "2001-07-19 17:00:18",
+    "linked_file": null,
+    "hugo": "3370-genes-resume-de-la-mobilisation-de-jeudi",
+    "date": "2001-07-19",
+    "time": "17:00:18",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "00",
+    "second": "18"
+  },
+  {
+    "id": 3371,
+    "heading": "Greeks Ricorso alla Corte Europea",
+    "created": "2001-07-19 17:00:24",
+    "linked_file": null,
+    "hugo": "3371-greeks-ricorso-alla-corte-europea",
+    "date": "2001-07-19",
+    "time": "17:00:24",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "00",
+    "second": "24"
+  },
+  {
+    "id": 3380,
+    "heading": "genova.eventi.19",
+    "created": "2001-07-22 21:29:35",
+    "linked_file": null,
+    "hugo": "3380-genovaeventi19",
+    "date": "2001-07-22",
+    "time": "21:29:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "21",
+    "minute": "29",
+    "second": "35"
+  },
+  {
+    "id": 3383,
+    "heading": "34 Austrian Activists denied entry",
+    "created": "2001-07-19 17:46:00",
+    "linked_file": null,
+    "hugo": "3383-34-austrian-activists-denied-entry",
+    "date": "2001-07-19",
+    "time": "17:46:00",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "46",
+    "second": "00"
+  },
+  {
+    "id": 3384,
+    "heading": "Interview with Jose, an illegal Colombian immigrant",
+    "created": "2001-07-19 18:03:42",
+    "linked_file": null,
+    "hugo": "3384-interview-with-jose-an-illegal-colombian-immigrant",
+    "date": "2001-07-19",
+    "time": "18:03:42",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "03",
+    "second": "42"
+  },
+  {
+    "id": 3388,
+    "heading": "Containers in via xx settembre e corso buenos aires it en",
+    "created": "2001-07-19 17:56:11",
+    "linked_file": null,
+    "hugo": "3388-containers-in-via-xx-settembre-e-corso-buenos-aires-it-en",
+    "date": "2001-07-19",
+    "time": "17:56:11",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "56",
+    "second": "11"
+  },
+  {
+    "id": 3392,
+    "heading": "July 19th report",
+    "created": "2001-07-21 14:54:31",
+    "linked_file": "2001/07/sws1uh.txt",
+    "hugo": "3392-july-19th-report",
+    "date": "2001-07-21",
+    "time": "14:54:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "54",
+    "second": "31"
+  },
+  {
+    "id": 3394,
+    "heading": "noborder.nonation.publixtheatrecaravan in genova",
+    "created": "2001-07-19 18:14:03",
+    "linked_file": "2001/07/publix1.jpg",
+    "hugo": "3394-nobordernonationpublixtheatrecaravan-in-genova",
+    "date": "2001-07-19",
+    "time": "18:14:03",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "14",
+    "second": "03"
+  },
+  {
+    "id": 3399,
+    "heading": "Fermi, scontri e rimpatri ad Ancona / Stop, riots and backhome in Ancona",
+    "created": "2001-07-20 01:35:38",
+    "linked_file": null,
+    "hugo": "3399-fermi-scontri-e-rimpatri-ad-ancona-stop-riots-and-backhome-in-ancona",
+    "date": "2001-07-20",
+    "time": "01:35:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "35",
+    "second": "38"
+  },
+  {
+    "id": 3400,
+    "heading": "t",
+    "created": "2001-07-19 18:28:53",
+    "linked_file": "2001/07/demostart100-thumb.jpg",
+    "hugo": "3400-t",
+    "date": "2001-07-19",
+    "time": "18:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 3405,
+    "heading": "Pink Silver March - Tactical Frivolity",
+    "created": "2001-07-20 07:57:05",
+    "linked_file": null,
+    "hugo": "3405-pink-silver-march-tactical-frivolity",
+    "date": "2001-07-20",
+    "time": "07:57:05",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "57",
+    "second": "05"
+  },
+  {
+    "id": 3411,
+    "heading": "Sit down protest",
+    "created": "2001-07-26 03:44:44",
+    "linked_file": "2001/07/peacefel_protester_3.jpg",
+    "hugo": "3411-sit-down-protest",
+    "date": "2001-07-26",
+    "time": "03:44:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "44",
+    "second": "44"
+  },
+  {
+    "id": 3412,
+    "heading": "Resoconto corteo immigrati / migrants demonstration report",
+    "created": "2001-07-25 05:03:57",
+    "linked_file": null,
+    "hugo": "3412-resoconto-corteo-immigrati-migrants-demonstration-report",
+    "date": "2001-07-25",
+    "time": "05:03:57",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "05",
+    "minute": "03",
+    "second": "57"
+  },
+  {
+    "id": 3418,
+    "heading": "containers city",
+    "created": "2001-07-19 19:02:09",
+    "linked_file": null,
+    "hugo": "3418-containers-city",
+    "date": "2001-07-19",
+    "time": "19:02:09",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "02",
+    "second": "09"
+  },
+  {
+    "id": 3419,
+    "heading": "Berlusconi Offends Genoese Ladies with His Fascist Edict",
+    "created": "2001-07-19 19:06:08",
+    "linked_file": null,
+    "hugo": "3419-berlusconi-offends-genoese-ladies-with-his-fascist-edict",
+    "date": "2001-07-19",
+    "time": "19:06:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "06",
+    "second": "08"
+  },
+  {
+    "id": 3421,
+    "heading": "Comunicato 3 - Anarchici contro il G8 - giovedì 19/07/2001",
+    "created": "2001-07-19 19:18:41",
+    "linked_file": null,
+    "hugo": "3421-comunicato-3-anarchici-contro-il-g8-giovedi-19072001",
+    "date": "2001-07-19",
+    "time": "19:18:41",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "18",
+    "second": "41"
+  },
+  {
+    "id": 3424,
+    "heading": "conteiners",
+    "created": "2001-07-19 19:29:07",
+    "linked_file": null,
+    "hugo": "3424-conteiners",
+    "date": "2001-07-19",
+    "time": "19:29:07",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "29",
+    "second": "07"
+  },
+  {
+    "id": 3425,
+    "heading": "Massive Strike Paralyses Argentina - Disastrous Cuts.",
+    "created": "2001-07-19 19:29:12",
+    "linked_file": null,
+    "hugo": "3425-massive-strike-paralyses-argentina-disastrous-cuts",
+    "date": "2001-07-19",
+    "time": "19:29:12",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "29",
+    "second": "12"
+  },
+  {
+    "id": 3427,
+    "heading": "FIGHT  ON!  US  Attempts to Drive Through IG FARBEN DIET for Poor,  at Summit",
+    "created": "2001-07-19 19:51:23",
+    "linked_file": null,
+    "hugo": "3427-fight-on-us-attempts-to-drive-through-ig-farben-diet-for-poor-at-summit",
+    "date": "2001-07-19",
+    "time": "19:51:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "51",
+    "second": "23"
+  },
+  {
+    "id": 3430,
+    "heading": " This is what Bush and his Business Backers Want to do With the Poor.",
+    "created": "2001-07-19 22:34:14",
+    "linked_file": null,
+    "hugo": "3430-this-is-what-bush-and-his-business-backers-want-to-do-with-the-poor",
+    "date": "2001-07-19",
+    "time": "22:34:14",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "22",
+    "minute": "34",
+    "second": "14"
+  },
+  {
+    "id": 3431,
+    "heading": "italian e-commerce sites - what the h_ck !",
+    "created": "2001-07-19 20:26:29",
+    "linked_file": null,
+    "hugo": "3431-italian-ecommerce-sites-what-the-hck-",
+    "date": "2001-07-19",
+    "time": "20:26:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "26",
+    "second": "29"
+  },
+  {
+    "id": 3432,
+    "heading": "dealing with trauma post action",
+    "created": "2001-07-19 20:28:29",
+    "linked_file": null,
+    "hugo": "3432-dealing-with-trauma-post-action",
+    "date": "2001-07-19",
+    "time": "20:28:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "28",
+    "second": "29"
+  },
+  {
+    "id": 3434,
+    "heading": "il programma di traduttore è ok/ translator program is ok",
+    "created": "2001-07-19 20:33:45",
+    "linked_file": null,
+    "hugo": "3434-il-programma-di-traduttore-e-ok-translator-program-is-ok",
+    "date": "2001-07-19",
+    "time": "20:33:45",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "33",
+    "second": "45"
+  },
+  {
+    "id": 3436,
+    "heading": "more photos",
+    "created": "2001-07-19 20:49:23",
+    "linked_file": null,
+    "hugo": "3436-more-photos",
+    "date": "2001-07-19",
+    "time": "20:49:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "49",
+    "second": "23"
+  },
+  {
+    "id": 3437,
+    "heading": "Protestors Laugh at G8 Security",
+    "created": "2001-07-19 21:17:53",
+    "linked_file": null,
+    "hugo": "3437-protestors-laugh-at-g8-security",
+    "date": "2001-07-19",
+    "time": "21:17:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "21",
+    "minute": "17",
+    "second": "53"
+  },
+  {
+    "id": 3439,
+    "heading": "Question: Bush 700-member entourage",
+    "created": "2001-07-19 23:57:29",
+    "linked_file": null,
+    "hugo": "3439-question-bush-700member-entourage",
+    "date": "2001-07-19",
+    "time": "23:57:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "23",
+    "minute": "57",
+    "second": "29"
+  },
+  {
+    "id": 3443,
+    "heading": "CENSOR TEST",
+    "created": "2001-07-20 02:22:32",
+    "linked_file": null,
+    "hugo": "3443-censor-test",
+    "date": "2001-07-20",
+    "time": "02:22:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "22",
+    "second": "32"
+  },
+  {
+    "id": 3444,
+    "heading": "Wellington Solidarity anti-G8 Demonstration",
+    "created": "2001-07-19 22:26:10",
+    "linked_file": null,
+    "hugo": "3444-wellington-solidarity-antig8-demonstration",
+    "date": "2001-07-19",
+    "time": "22:26:10",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "22",
+    "minute": "26",
+    "second": "10"
+  },
+  {
+    "id": 3446,
+    "heading": "Solidarity demos in Norway",
+    "created": "2001-07-20 00:28:33",
+    "linked_file": null,
+    "hugo": "3446-solidarity-demos-in-norway",
+    "date": "2001-07-20",
+    "time": "00:28:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "28",
+    "second": "33"
+  },
+  {
+    "id": 3449,
+    "heading": "volnatino hate g-eight [it/en]",
+    "created": "2001-07-19 23:49:47",
+    "linked_file": null,
+    "hugo": "3449-volnatino-hate-geight-iten",
+    "date": "2001-07-19",
+    "time": "23:49:47",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "23",
+    "minute": "49",
+    "second": "47"
+  },
+  {
+    "id": 3457,
+    "heading": "Red zone extended overnight",
+    "created": "2001-07-20 01:16:52",
+    "linked_file": null,
+    "hugo": "3457-red-zone-extended-overnight",
+    "date": "2001-07-20",
+    "time": "01:16:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "16",
+    "second": "52"
+  },
+  {
+    "id": 3461,
+    "heading": "La polizia circonda il Centro Sociale Inmensa",
+    "created": "2001-07-20 00:32:38",
+    "linked_file": null,
+    "hugo": "3461-la-polizia-circonda-il-centro-sociale-inmensa",
+    "date": "2001-07-20",
+    "time": "00:32:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "32",
+    "second": "38"
+  },
+  {
+    "id": 3462,
+    "heading": "Solidarity demonstration in Athens",
+    "created": "2001-07-20 00:34:37",
+    "linked_file": null,
+    "hugo": "3462-solidarity-demonstration-in-athens",
+    "date": "2001-07-20",
+    "time": "00:34:37",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "34",
+    "second": "37"
+  },
+  {
+    "id": 3463,
+    "heading": "Polizia all'immensa / Police to the Inmensa",
+    "created": "2001-07-20 01:37:03",
+    "linked_file": null,
+    "hugo": "3463-polizia-allimmensa-police-to-the-inmensa",
+    "date": "2001-07-20",
+    "time": "01:37:03",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "37",
+    "second": "03"
+  },
+  {
+    "id": 3464,
+    "heading": "Police at Pinelli centre?? 0850hrs",
+    "created": "2001-07-20 00:44:57",
+    "linked_file": null,
+    "hugo": "3464-police-at-pinelli-centre-0850hrs",
+    "date": "2001-07-20",
+    "time": "00:44:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "44",
+    "second": "57"
+  },
+  {
+    "id": 3465,
+    "heading": "March in Athens outside Italian Embassy",
+    "created": "2001-07-20 00:57:21",
+    "linked_file": null,
+    "hugo": "3465-march-in-athens-outside-italian-embassy",
+    "date": "2001-07-20",
+    "time": "00:57:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "57",
+    "second": "21"
+  },
+  {
+    "id": 3466,
+    "heading": "Anarchist area under siege / Area anarchica sotto assedio",
+    "created": "2001-07-20 00:51:05",
+    "linked_file": null,
+    "hugo": "3466-anarchist-area-under-siege-area-anarchica-sotto-assedio",
+    "date": "2001-07-20",
+    "time": "00:51:05",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "51",
+    "second": "05"
+  },
+  {
+    "id": 3467,
+    "heading": "Greci ad Ancona",
+    "created": "2001-07-20 00:54:35",
+    "linked_file": null,
+    "hugo": "3467-greci-ad-ancona",
+    "date": "2001-07-20",
+    "time": "00:54:35",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "54",
+    "second": "35"
+  },
+  {
+    "id": 3468,
+    "heading": "Ricorso contro l'Italia alla Corte Europea",
+    "created": "2001-07-20 01:19:54",
+    "linked_file": null,
+    "hugo": "3468-ricorso-contro-litalia-alla-corte-europea",
+    "date": "2001-07-20",
+    "time": "01:19:54",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "19",
+    "second": "54"
+  },
+  {
+    "id": 3474,
+    "heading": "Report From The Red Zone",
+    "created": "2001-07-20 01:15:46",
+    "linked_file": "2001/07/0719_rob_genoa.mp3",
+    "hugo": "3474-report-from-the-red-zone",
+    "date": "2001-07-20",
+    "time": "01:15:46",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "15",
+    "second": "46"
+  },
+  {
+    "id": 3477,
+    "heading": "polizia a quarto (ospedale psichiatrico)",
+    "created": "2001-07-20 01:29:02",
+    "linked_file": null,
+    "hugo": "3477-polizia-a-quarto-ospedale-psichiatrico",
+    "date": "2001-07-20",
+    "time": "01:29:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "29",
+    "second": "02"
+  },
+  {
+    "id": 3481,
+    "heading": "csa inmensa ore 9:45 ancora trattiamo",
+    "created": "2001-07-20 01:52:29",
+    "linked_file": null,
+    "hugo": "3481-csa-inmensa-ore-945-ancora-trattiamo",
+    "date": "2001-07-20",
+    "time": "01:52:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "52",
+    "second": "29"
+  },
+  {
+    "id": 3484,
+    "heading": "The WORLD CRUSADE",
+    "created": "2001-07-20 02:02:36",
+    "linked_file": null,
+    "hugo": "3484-the-world-crusade",
+    "date": "2001-07-20",
+    "time": "02:02:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "02",
+    "second": "36"
+  },
+  {
+    "id": 3485,
+    "heading": "GSF Press release 3.000 manifestanti sotto la pioggia ieri sera",
+    "created": "2001-07-20 02:38:25",
+    "linked_file": null,
+    "hugo": "3485-gsf-press-release-3000-manifestanti-sotto-la-pioggia-ieri-sera",
+    "date": "2001-07-20",
+    "time": "02:38:25",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "38",
+    "second": "25"
+  },
+  {
+    "id": 3487,
+    "heading": "J19 TheatreActions (Video)",
+    "created": "2001-07-20 02:24:24",
+    "linked_file": "2001/07/j19.rm",
+    "hugo": "3487-j19-theatreactions-video",
+    "date": "2001-07-20",
+    "time": "02:24:24",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "24",
+    "second": "24"
+  },
+  {
+    "id": 3488,
+    "heading": "Inmensa developments / sviluppi all'Inmensa",
+    "created": "2001-07-20 02:24:45",
+    "linked_file": null,
+    "hugo": "3488-inmensa-developments-sviluppi-allinmensa",
+    "date": "2001-07-20",
+    "time": "02:24:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "24",
+    "second": "45"
+  },
+  {
+    "id": 3489,
+    "heading": "GREEK PARLIAMENTARIANS STOPPED FROM ENTERING GENOVA",
+    "created": "2001-07-20 02:33:47",
+    "linked_file": null,
+    "hugo": "3489-greek-parliamentarians-stopped-from-entering-genova",
+    "date": "2001-07-20",
+    "time": "02:33:47",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "33",
+    "second": "47"
+  },
+  {
+    "id": 3492,
+    "heading": "Speaker on Refugee and Human Rights at the Immigration Demo (english, mp3)",
+    "created": "2001-07-20 02:42:47",
+    "linked_file": "2001/07/osaren.mp3",
+    "hugo": "3492-speaker-on-refugee-and-human-rights-at-the-immigration-demo-english-mp3",
+    "date": "2001-07-20",
+    "time": "02:42:47",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "42",
+    "second": "47"
+  },
+  {
+    "id": 3494,
+    "heading": "Global Village Tribunal",
+    "created": "2001-07-20 03:03:37",
+    "linked_file": null,
+    "hugo": "3494-global-village-tribunal",
+    "date": "2001-07-20",
+    "time": "03:03:37",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "03",
+    "second": "37"
+  },
+  {
+    "id": 3495,
+    "heading": "Solidarity Demo in Finland",
+    "created": "2001-07-20 03:19:15",
+    "linked_file": null,
+    "hugo": "3495-solidarity-demo-in-finland",
+    "date": "2001-07-20",
+    "time": "03:19:15",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "19",
+    "second": "15"
+  },
+  {
+    "id": 3496,
+    "heading": "stories from the austrian border",
+    "created": "2001-07-20 03:06:31",
+    "linked_file": null,
+    "hugo": "3496-stories-from-the-austrian-border",
+    "date": "2001-07-20",
+    "time": "03:06:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "06",
+    "second": "31"
+  },
+  {
+    "id": 3497,
+    "heading": "PDF poster - Help inform others about indymedia coverage",
+    "created": "2001-07-20 04:23:15",
+    "linked_file": "2001/07/genoa_poster5ckbwj.gif",
+    "hugo": "3497-pdf-poster-help-inform-others-about-indymedia-coverage",
+    "date": "2001-07-20",
+    "time": "04:23:15",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "23",
+    "second": "15"
+  },
+  {
+    "id": 3501,
+    "heading": "occupazione del consulato tedesco a Lugano",
+    "created": "2001-07-20 03:23:21",
+    "linked_file": null,
+    "hugo": "3501-occupazione-del-consulato-tedesco-a-lugano",
+    "date": "2001-07-20",
+    "time": "03:23:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "23",
+    "second": "21"
+  },
+  {
+    "id": 3502,
+    "heading": "Comunicato 4 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 03:39:52",
+    "linked_file": null,
+    "hugo": "3502-comunicato-4-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "03:39:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "39",
+    "second": "52"
+  },
+  {
+    "id": 3504,
+    "heading": "Comunicato 5 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 04:23:18",
+    "linked_file": null,
+    "hugo": "3504-comunicato-5-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "04:23:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "23",
+    "second": "18"
+  },
+  {
+    "id": 3505,
+    "heading": "container",
+    "created": "2001-07-20 04:16:34",
+    "linked_file": "2001/07/container.tif",
+    "hugo": "3505-container",
+    "date": "2001-07-20",
+    "time": "04:16:34",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "16",
+    "second": "34"
+  },
+  {
+    "id": 3506,
+    "heading": "Prisoners in Göteborg (Sweden)",
+    "created": "2001-07-20 04:19:48",
+    "linked_file": null,
+    "hugo": "3506-prisoners-in-goteborg-sweden",
+    "date": "2001-07-20",
+    "time": "04:19:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "19",
+    "second": "48"
+  },
+  {
+    "id": 3507,
+    "heading": "container-barricades",
+    "created": "2001-07-20 05:01:36",
+    "linked_file": "2001/07/contain.jpg",
+    "hugo": "3507-containerbarricades",
+    "date": "2001-07-20",
+    "time": "05:01:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "01",
+    "second": "36"
+  },
+  {
+    "id": 3513,
+    "heading": "map",
+    "created": "2001-07-20 04:42:56",
+    "linked_file": "2001/07/map1230pm.jpg",
+    "hugo": "3513-map",
+    "date": "2001-07-20",
+    "time": "04:42:56",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "42",
+    "second": "56"
+  },
+  {
+    "id": 3516,
+    "heading": "Web cam in Genoa",
+    "created": "2001-07-20 05:02:08",
+    "linked_file": null,
+    "hugo": "3516-web-cam-in-genoa",
+    "date": "2001-07-20",
+    "time": "05:02:08",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "02",
+    "second": "08"
+  },
+  {
+    "id": 3517,
+    "heading": "Web Cam - Direct Link",
+    "created": "2001-07-20 06:45:06",
+    "linked_file": null,
+    "hugo": "3517-web-cam-direct-link",
+    "date": "2001-07-20",
+    "time": "06:45:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "45",
+    "second": "06"
+  },
+  {
+    "id": 3519,
+    "heading": "demonstration starts at calini",
+    "created": "2001-07-20 05:19:19",
+    "linked_file": null,
+    "hugo": "3519-demonstration-starts-at-calini",
+    "date": "2001-07-20",
+    "time": "05:19:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "19",
+    "second": "19"
+  },
+  {
+    "id": 3522,
+    "heading": "infermiere picchiato da polizia",
+    "created": "2001-07-20 05:50:42",
+    "linked_file": null,
+    "hugo": "3522-infermiere-picchiato-da-polizia",
+    "date": "2001-07-20",
+    "time": "05:50:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "50",
+    "second": "42"
+  },
+  {
+    "id": 3523,
+    "heading": "polizia sgombera piazza tommaseo",
+    "created": "2001-07-20 05:35:58",
+    "linked_file": null,
+    "hugo": "3523-polizia-sgombera-piazza-tommaseo",
+    "date": "2001-07-20",
+    "time": "05:35:58",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "35",
+    "second": "58"
+  },
+  {
+    "id": 3528,
+    "heading": "map at 1.00 pm",
+    "created": "2001-07-20 06:20:51",
+    "linked_file": "2001/07/map100pm.jpg",
+    "hugo": "3528-map-at-100-pm",
+    "date": "2001-07-20",
+    "time": "06:20:51",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "20",
+    "second": "51"
+  },
+  {
+    "id": 3531,
+    "heading": "Non-violent action",
+    "created": "2001-07-20 08:30:48",
+    "linked_file": null,
+    "hugo": "3531-nonviolent-action",
+    "date": "2001-07-20",
+    "time": "08:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 3535,
+    "heading": "IMC come organo di partito?",
+    "created": "2001-07-20 07:59:52",
+    "linked_file": null,
+    "hugo": "3535-imc-come-organo-di-partito",
+    "date": "2001-07-20",
+    "time": "07:59:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "59",
+    "second": "52"
+  },
+  {
+    "id": 3536,
+    "heading": "MELBOURNE,AUSTRALIA IN SOLIDARITY (Sabato)",
+    "created": "2001-07-20 06:33:34",
+    "linked_file": null,
+    "hugo": "3536-melbourneaustralia-in-solidarity-sabato",
+    "date": "2001-07-20",
+    "time": "06:33:34",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "33",
+    "second": "34"
+  },
+  {
+    "id": 3539,
+    "heading": "MELBOURNE,AUSTRALIA SOLIDARITY (anche Domenica)",
+    "created": "2001-07-20 05:49:10",
+    "linked_file": null,
+    "hugo": "3539-melbourneaustralia-solidarity-anche-domenica",
+    "date": "2001-07-20",
+    "time": "05:49:10",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "49",
+    "second": "10"
+  },
+  {
+    "id": 3540,
+    "heading": "poster",
+    "created": "2001-07-20 05:49:10",
+    "linked_file": "2001/07/poster_g8.pdf",
+    "hugo": "3540-poster",
+    "date": "2001-07-20",
+    "time": "05:49:10",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "49",
+    "second": "10"
+  },
+  {
+    "id": 3543,
+    "heading": "il cellulare è un'arma preziosa",
+    "created": "2001-07-20 08:12:29",
+    "linked_file": null,
+    "hugo": "3543-il-cellulare-e-unarma-preziosa",
+    "date": "2001-07-20",
+    "time": "08:12:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "12",
+    "second": "29"
+  },
+  {
+    "id": 3546,
+    "heading": "map of the situation at 2.00 pm",
+    "created": "2001-07-20 06:08:06",
+    "linked_file": "2001/07/map200pm.jpg",
+    "hugo": "3546-map-of-the-situation-at-200-pm",
+    "date": "2001-07-20",
+    "time": "06:08:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "08",
+    "second": "06"
+  },
+  {
+    "id": 3547,
+    "heading": "G8",
+    "created": "2001-07-20 06:30:18",
+    "linked_file": null,
+    "hugo": "3547-g8",
+    "date": "2001-07-20",
+    "time": "06:30:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "30",
+    "second": "18"
+  },
+  {
+    "id": 3554,
+    "heading": "spara",
+    "created": "2001-07-21 04:09:58",
+    "linked_file": "2001/07/untitled.jpg",
+    "hugo": "3554-spara",
+    "date": "2001-07-21",
+    "time": "04:09:58",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "09",
+    "second": "58"
+  },
+  {
+    "id": 3557,
+    "heading": "occupata l ambasciata tedesca a lugano svizzera",
+    "created": "2001-07-20 06:40:29",
+    "linked_file": null,
+    "hugo": "3557-occupata-l-ambasciata-tedesca-a-lugano-svizzera",
+    "date": "2001-07-20",
+    "time": "06:40:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "40",
+    "second": "29"
+  },
+  {
+    "id": 3559,
+    "heading": "ancona: chieste dimissioni per questore e prefetto per greci rimpatriati",
+    "created": "2001-07-20 06:47:41",
+    "linked_file": null,
+    "hugo": "3559-ancona-chieste-dimissioni-per-questore-e-prefetto-per-greci-rimpatriati",
+    "date": "2001-07-20",
+    "time": "06:47:41",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "47",
+    "second": "41"
+  },
+  {
+    "id": 3564,
+    "heading": "genoa is burning",
+    "created": "2001-07-20 09:30:31",
+    "linked_file": "2001/07/genova7.jpg",
+    "hugo": "3564-genoa-is-burning",
+    "date": "2001-07-20",
+    "time": "09:30:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "30",
+    "second": "31"
+  },
+  {
+    "id": 3565,
+    "heading": "\"venti\" di guerra (video)",
+    "created": "2001-07-20 07:31:43",
+    "linked_file": "2001/07/venti.rm",
+    "hugo": "3565-venti-di-guerra-video",
+    "date": "2001-07-20",
+    "time": "07:31:43",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "31",
+    "second": "43"
+  },
+  {
+    "id": 3569,
+    "heading": "poster2",
+    "created": "2001-07-20 06:55:28",
+    "linked_file": "2001/07/poster_g8b.pdf",
+    "hugo": "3569-poster2",
+    "date": "2001-07-20",
+    "time": "06:55:28",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "55",
+    "second": "28"
+  },
+  {
+    "id": 3572,
+    "heading": "protester at fence",
+    "created": "2001-07-20 07:39:32",
+    "linked_file": "2001/07/interview.rm",
+    "hugo": "3572-protester-at-fence",
+    "date": "2001-07-20",
+    "time": "07:39:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "39",
+    "second": "32"
+  },
+  {
+    "id": 3574,
+    "heading": "map from 3.00 pm",
+    "created": "2001-07-20 07:32:08",
+    "linked_file": "2001/07/map300pm.jpg",
+    "hugo": "3574-map-from-300-pm",
+    "date": "2001-07-20",
+    "time": "07:32:08",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "32",
+    "second": "08"
+  },
+  {
+    "id": 3575,
+    "heading": "IMC Italy Video Channel",
+    "created": "2001-07-20 07:39:22",
+    "linked_file": "2001/07/imctvlqqvra.gif",
+    "hugo": "3575-imc-italy-video-channel",
+    "date": "2001-07-20",
+    "time": "07:39:22",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "39",
+    "second": "22"
+  },
+  {
+    "id": 3576,
+    "heading": "violata zona rossa",
+    "created": "2001-07-20 08:50:32",
+    "linked_file": null,
+    "hugo": "3576-violata-zona-rossa",
+    "date": "2001-07-20",
+    "time": "08:50:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "50",
+    "second": "32"
+  },
+  {
+    "id": 3577,
+    "heading": "black block e lacrimogeni",
+    "created": "2001-07-20 07:21:20",
+    "linked_file": null,
+    "hugo": "3577-black-block-e-lacrimogeni",
+    "date": "2001-07-20",
+    "time": "07:21:20",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "21",
+    "second": "20"
+  },
+  {
+    "id": 3578,
+    "heading": "Protest Pics",
+    "created": "2001-07-20 11:35:19",
+    "linked_file": "2001/07/genua_fr_popup_big_brand_r.jpg",
+    "hugo": "3578-protest-pics",
+    "date": "2001-07-20",
+    "time": "11:35:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "35",
+    "second": "19"
+  },
+  {
+    "id": 3579,
+    "heading": " In the summer of the protest",
+    "created": "2001-07-20 07:44:38",
+    "linked_file": null,
+    "hugo": "3579-in-the-summer-of-the-protest",
+    "date": "2001-07-20",
+    "time": "07:44:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "44",
+    "second": "38"
+  },
+  {
+    "id": 3586,
+    "heading": "Bombardamento dall'elicottero",
+    "created": "2001-07-20 07:43:44",
+    "linked_file": null,
+    "hugo": "3586-bombardamento-dallelicottero",
+    "date": "2001-07-20",
+    "time": "07:43:44",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "43",
+    "second": "44"
+  },
+  {
+    "id": 3594,
+    "heading": "Non Black Bloc: SBIRRI / No Black Bloc: cops in disguise",
+    "created": "2001-07-23 03:46:20",
+    "linked_file": null,
+    "hugo": "3594-non-black-bloc-sbirri-no-black-bloc-cops-in-disguise",
+    "date": "2001-07-23",
+    "time": "03:46:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "46",
+    "second": "20"
+  },
+  {
+    "id": 3621,
+    "heading": "Emilio Fede al TG4 delle 16",
+    "created": "2001-07-20 10:51:11",
+    "linked_file": null,
+    "hugo": "3621-emilio-fede-al-tg4-delle-16",
+    "date": "2001-07-20",
+    "time": "10:51:11",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "51",
+    "second": "11"
+  },
+  {
+    "id": 3627,
+    "heading": "this is a revolution against capitalism",
+    "created": "2001-07-20 08:28:35",
+    "linked_file": null,
+    "hugo": "3627-this-is-a-revolution-against-capitalism",
+    "date": "2001-07-20",
+    "time": "08:28:35",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "28",
+    "second": "35"
+  },
+  {
+    "id": 3636,
+    "heading": "Carabinieri disguised as anarchists in Genoa",
+    "created": "2001-07-20 09:48:42",
+    "linked_file": null,
+    "hugo": "3636-carabinieri-disguised-as-anarchists-in-genoa",
+    "date": "2001-07-20",
+    "time": "09:48:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "48",
+    "second": "42"
+  },
+  {
+    "id": 3639,
+    "heading": "Carabinieri disguised as anarchists in Genoa",
+    "created": "2001-07-20 09:29:36",
+    "linked_file": null,
+    "hugo": "3639-carabinieri-disguised-as-anarchists-in-genoa",
+    "date": "2001-07-20",
+    "time": "09:29:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "29",
+    "second": "36"
+  },
+  {
+    "id": 3640,
+    "heading": "cariche e pestaggi",
+    "created": "2001-07-20 08:58:36",
+    "linked_file": "2001/07/cariche_e_pestaggi.rm",
+    "hugo": "3640-cariche-e-pestaggi",
+    "date": "2001-07-20",
+    "time": "08:58:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "58",
+    "second": "36"
+  },
+  {
+    "id": 3643,
+    "heading": "From La Repubblica (sorry for the Altavista translation - no time)",
+    "created": "2001-07-20 08:51:25",
+    "linked_file": null,
+    "hugo": "3643-from-la-repubblica-sorry-for-the-altavista-translation-no-time",
+    "date": "2001-07-20",
+    "time": "08:51:25",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "51",
+    "second": "25"
+  },
+  {
+    "id": 3655,
+    "heading": "URGENTE BISOGNO DI AVVOCATI... II LAWYERS NEEDED...",
+    "created": "2001-07-20 08:54:32",
+    "linked_file": null,
+    "hugo": "3655-urgente-bisogno-di-avvocati-ii-lawyers-needed",
+    "date": "2001-07-20",
+    "time": "08:54:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "54",
+    "second": "32"
+  },
+  {
+    "id": 3657,
+    "heading": "Anti-G8 Demonstration in Athens at 19.30",
+    "created": "2001-07-30 09:58:31",
+    "linked_file": null,
+    "hugo": "3657-antig8-demonstration-in-athens-at-1930",
+    "date": "2001-07-30",
+    "time": "09:58:31",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "58",
+    "second": "31"
+  },
+  {
+    "id": 3661,
+    "heading": "arresti",
+    "created": "2001-07-20 10:02:28",
+    "linked_file": null,
+    "hugo": "3661-arresti",
+    "date": "2001-07-20",
+    "time": "10:02:28",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "02",
+    "second": "28"
+  },
+  {
+    "id": 3662,
+    "heading": "Web Cam Live",
+    "created": "2001-07-20 09:55:52",
+    "linked_file": null,
+    "hugo": "3662-web-cam-live",
+    "date": "2001-07-20",
+    "time": "09:55:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "55",
+    "second": "52"
+  },
+  {
+    "id": 3663,
+    "heading": "Comunicato 6 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 09:58:45",
+    "linked_file": null,
+    "hugo": "3663-comunicato-6-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "09:58:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "58",
+    "second": "45"
+  },
+  {
+    "id": 3664,
+    "heading": "riots in genua",
+    "created": "2001-07-20 13:06:21",
+    "linked_file": "2001/07/demo.jpg",
+    "hugo": "3664-riots-in-genua",
+    "date": "2001-07-20",
+    "time": "13:06:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "06",
+    "second": "21"
+  },
+  {
+    "id": 3668,
+    "heading": "G8: PROTESTE; CORTEO DISOBBEDIENTI, INCIDENTI A BRIGNOLE",
+    "created": "2001-07-20 09:09:21",
+    "linked_file": null,
+    "hugo": "3668-g8-proteste-corteo-disobbedienti-incidenti-a-brignole",
+    "date": "2001-07-20",
+    "time": "09:09:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "09",
+    "second": "21"
+  },
+  {
+    "id": 3677,
+    "heading": "Further testimonies on fake blackblocsters in Genoa",
+    "created": "2001-07-20 10:50:02",
+    "linked_file": null,
+    "hugo": "3677-further-testimonies-on-fake-blackblocsters-in-genoa",
+    "date": "2001-07-20",
+    "time": "10:50:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "50",
+    "second": "02"
+  },
+  {
+    "id": 3681,
+    "heading": "The Party is Over in Genoa Today",
+    "created": "2001-07-20 11:52:06",
+    "linked_file": null,
+    "hugo": "3681-the-party-is-over-in-genoa-today",
+    "date": "2001-07-20",
+    "time": "11:52:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "52",
+    "second": "06"
+  },
+  {
+    "id": 3683,
+    "heading": "Agnoletto ha chiesto di abbandonare la piazza per evitare scontri piu' gravi",
+    "created": "2001-07-20 10:12:57",
+    "linked_file": null,
+    "hugo": "3683-agnoletto-ha-chiesto-di-abbandonare-la-piazza-per-evitare-scontri-piu-gravi",
+    "date": "2001-07-20",
+    "time": "10:12:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "12",
+    "second": "57"
+  },
+  {
+    "id": 3690,
+    "heading": "Genova: ragazzo in fin di vita",
+    "created": "2001-07-20 11:29:38",
+    "linked_file": null,
+    "hugo": "3690-genova-ragazzo-in-fin-di-vita",
+    "date": "2001-07-20",
+    "time": "11:29:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "29",
+    "second": "38"
+  },
+  {
+    "id": 3695,
+    "heading": "repubblica",
+    "created": "2001-07-20 10:05:27",
+    "linked_file": null,
+    "hugo": "3695-repubblica",
+    "date": "2001-07-20",
+    "time": "10:05:27",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "05",
+    "second": "27"
+  },
+  {
+    "id": 3702,
+    "heading": "After Police Attack, Protestors Fight Back",
+    "created": "2001-07-20 10:27:46",
+    "linked_file": "2001/07/caribinierigk0fh4.mov",
+    "hugo": "3702-after-police-attack-protestors-fight-back",
+    "date": "2001-07-20",
+    "time": "10:27:46",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "27",
+    "second": "46"
+  },
+  {
+    "id": 3705,
+    "heading": "Reuters: Protester Shot in Head, Run Over",
+    "created": "2001-07-20 11:33:45",
+    "linked_file": null,
+    "hugo": "3705-reuters-protester-shot-in-head-run-over",
+    "date": "2001-07-20",
+    "time": "11:33:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "33",
+    "second": "45"
+  },
+  {
+    "id": 3706,
+    "heading": "[fotografie da genova]",
+    "created": "2001-07-25 13:38:06",
+    "linked_file": "2001/07/pestaggi.jpg",
+    "hugo": "3706-fotografie-da-genova",
+    "date": "2001-07-25",
+    "time": "13:38:06",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "38",
+    "second": "06"
+  },
+  {
+    "id": 3710,
+    "heading": "Latest News from Genova",
+    "created": "2001-07-20 10:20:45",
+    "linked_file": null,
+    "hugo": "3710-latest-news-from-genova",
+    "date": "2001-07-20",
+    "time": "10:20:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "20",
+    "second": "45"
+  },
+  {
+    "id": 3716,
+    "heading": "Polizia brutality on Ya Basta",
+    "created": "2001-07-20 10:10:32",
+    "linked_file": "2001/07/polizia_brutality_on_ya_basta.rm",
+    "hugo": "3716-polizia-brutality-on-ya-basta",
+    "date": "2001-07-20",
+    "time": "10:10:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "10",
+    "second": "32"
+  },
+  {
+    "id": 3720,
+    "heading": "Demonstrant shot in head by police-bastards!!!!",
+    "created": "2001-07-20 10:12:12",
+    "linked_file": null,
+    "hugo": "3720-demonstrant-shot-in-head-by-policebastards",
+    "date": "2001-07-20",
+    "time": "10:12:12",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "12",
+    "second": "12"
+  },
+  {
+    "id": 3725,
+    "heading": "jesus cristh",
+    "created": "2001-07-20 10:16:47",
+    "linked_file": null,
+    "hugo": "3725-jesus-cristh",
+    "date": "2001-07-20",
+    "time": "10:16:47",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "16",
+    "second": "47"
+  },
+  {
+    "id": 3727,
+    "heading": "Details about shots at Demonstrant",
+    "created": "2001-07-20 10:38:29",
+    "linked_file": null,
+    "hugo": "3727-details-about-shots-at-demonstrant",
+    "date": "2001-07-20",
+    "time": "10:38:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "38",
+    "second": "29"
+  },
+  {
+    "id": 3728,
+    "heading": "netstrike",
+    "created": "2001-07-20 10:33:39",
+    "linked_file": null,
+    "hugo": "3728-netstrike",
+    "date": "2001-07-20",
+    "time": "10:33:39",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "33",
+    "second": "39"
+  },
+  {
+    "id": 3730,
+    "heading": "Uomini contro uomini",
+    "created": "2001-07-20 14:21:37",
+    "linked_file": "2001/07/1032759.jpg",
+    "hugo": "3730-uomini-contro-uomini",
+    "date": "2001-07-20",
+    "time": "14:21:37",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "14",
+    "minute": "21",
+    "second": "37"
+  },
+  {
+    "id": 3735,
+    "heading": "Ucciso un manifestante, un altro è ferito gravemente",
+    "created": "2001-07-20 10:27:50",
+    "linked_file": null,
+    "hugo": "3735-ucciso-un-manifestante-un-altro-e-ferito-gravemente",
+    "date": "2001-07-20",
+    "time": "10:27:50",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "27",
+    "second": "50"
+  },
+  {
+    "id": 3736,
+    "heading": "Demonstrant Dead!!!!!!!!!!!!!!!",
+    "created": "2001-07-20 12:19:56",
+    "linked_file": null,
+    "hugo": "3736-demonstrant-dead",
+    "date": "2001-07-20",
+    "time": "12:19:56",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "19",
+    "second": "56"
+  },
+  {
+    "id": 3739,
+    "heading": "Reuters: Police Say Protester is Dead",
+    "created": "2001-07-20 10:33:02",
+    "linked_file": null,
+    "hugo": "3739-reuters-police-say-protester-is-dead",
+    "date": "2001-07-20",
+    "time": "10:33:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "33",
+    "second": "02"
+  },
+  {
+    "id": 3743,
+    "heading": "In Solidarity: From Washington DC",
+    "created": "2001-07-21 12:26:23",
+    "linked_file": "2001/07/dscn4034-parwashmon2.jpg",
+    "hugo": "3743-in-solidarity-from-washington-dc",
+    "date": "2001-07-21",
+    "time": "12:26:23",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "26",
+    "second": "23"
+  },
+  {
+    "id": 3744,
+    "heading": "Dimostrante morto, cordone polizia isola zona",
+    "created": "2001-07-20 10:35:30",
+    "linked_file": null,
+    "hugo": "3744-dimostrante-morto-cordone-polizia-isola-zona",
+    "date": "2001-07-20",
+    "time": "10:35:30",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "35",
+    "second": "30"
+  },
+  {
+    "id": 3745,
+    "heading": "Protestor shot dead",
+    "created": "2001-07-20 11:18:15",
+    "linked_file": null,
+    "hugo": "3745-protestor-shot-dead",
+    "date": "2001-07-20",
+    "time": "11:18:15",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "18",
+    "second": "15"
+  },
+  {
+    "id": 3746,
+    "heading": "una vetrina non vale quanto una vita !!!!!!",
+    "created": "2001-07-20 12:59:33",
+    "linked_file": null,
+    "hugo": "3746-una-vetrina-non-vale-quanto-una-vita-",
+    "date": "2001-07-20",
+    "time": "12:59:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "59",
+    "second": "33"
+  },
+  {
+    "id": 3755,
+    "heading": "tutti  liberi i 10 tedeschi che avevano occupato il consolato tedesco a lugano",
+    "created": "2001-07-20 10:50:35",
+    "linked_file": null,
+    "hugo": "3755-tutti-liberi-i-10-tedeschi-che-avevano-occupato-il-consolato-tedesco-a-lugano",
+    "date": "2001-07-20",
+    "time": "10:50:35",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "50",
+    "second": "35"
+  },
+  {
+    "id": 3759,
+    "heading": "we_are_winning",
+    "created": "2001-07-20 16:40:48",
+    "linked_file": "2001/07/we_are_winning.rm",
+    "hugo": "3759-wearewinning",
+    "date": "2001-07-20",
+    "time": "16:40:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "40",
+    "second": "48"
+  },
+  {
+    "id": 3761,
+    "heading": "IN VIEW OF THE SITUATION IN GENOVA: STRENGTHENING THE UNITED NATIONS ASSEMBLY",
+    "created": "2001-07-20 12:21:33",
+    "linked_file": null,
+    "hugo": "3761-in-view-of-the-situation-in-genova-strengthening-the-united-nations-assembly",
+    "date": "2001-07-20",
+    "time": "12:21:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "21",
+    "second": "33"
+  },
+  {
+    "id": 3762,
+    "heading": "polizia ferisce pacifisti",
+    "created": "2001-07-20 15:23:17",
+    "linked_file": "2001/07/brutaler_polizeiuebergriff.rm",
+    "hugo": "3762-polizia-ferisce-pacifisti",
+    "date": "2001-07-20",
+    "time": "15:23:17",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "23",
+    "second": "17"
+  },
+  {
+    "id": 3766,
+    "heading": "Violence is good",
+    "created": "2001-07-20 15:42:31",
+    "linked_file": null,
+    "hugo": "3766-violence-is-good",
+    "date": "2001-07-20",
+    "time": "15:42:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "42",
+    "second": "31"
+  },
+  {
+    "id": 3769,
+    "heading": "we support our fighters / sosteniamo i nostri combattenti",
+    "created": "2001-07-20 12:41:48",
+    "linked_file": null,
+    "hugo": "3769-we-support-our-fighters-sosteniamo-i-nostri-combattenti",
+    "date": "2001-07-20",
+    "time": "12:41:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "41",
+    "second": "48"
+  },
+  {
+    "id": 3783,
+    "heading": "Comunicato 7 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 12:10:18",
+    "linked_file": null,
+    "hugo": "3783-comunicato-7-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "12:10:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "10",
+    "second": "18"
+  },
+  {
+    "id": 3787,
+    "heading": "rastrellamenti",
+    "created": "2001-07-20 11:28:54",
+    "linked_file": null,
+    "hugo": "3787-rastrellamenti",
+    "date": "2001-07-20",
+    "time": "11:28:54",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "28",
+    "second": "54"
+  },
+  {
+    "id": 3797,
+    "heading": "Policebrutality against press. Police try to prevent free coverage.",
+    "created": "2001-07-20 12:13:42",
+    "linked_file": null,
+    "hugo": "3797-policebrutality-against-press-police-try-to-prevent-free-coverage",
+    "date": "2001-07-20",
+    "time": "12:13:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "13",
+    "second": "42"
+  },
+  {
+    "id": 3802,
+    "heading": "Police car running over a corpse",
+    "created": "2001-07-20 17:14:26",
+    "linked_file": "2001/07/macchina2.jpg",
+    "hugo": "3802-police-car-running-over-a-corpse",
+    "date": "2001-07-20",
+    "time": "17:14:26",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "17",
+    "minute": "14",
+    "second": "26"
+  },
+  {
+    "id": 3811,
+    "heading": "austrian tv announced second death",
+    "created": "2001-07-20 13:49:03",
+    "linked_file": null,
+    "hugo": "3811-austrian-tv-announced-second-death",
+    "date": "2001-07-20",
+    "time": "13:49:03",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "49",
+    "second": "03"
+  },
+  {
+    "id": 3827,
+    "heading": "Demonstrator killed by normal police gun",
+    "created": "2001-07-25 06:46:40",
+    "linked_file": "2001/07/gun.jpg",
+    "hugo": "3827-demonstrator-killed-by-normal-police-gun",
+    "date": "2001-07-25",
+    "time": "06:46:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "46",
+    "second": "40"
+  },
+  {
+    "id": 3832,
+    "heading": "Morto a genova ragazzo",
+    "created": "2001-07-20 12:47:42",
+    "linked_file": null,
+    "hugo": "3832-morto-a-genova-ragazzo",
+    "date": "2001-07-20",
+    "time": "12:47:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "47",
+    "second": "42"
+  },
+  {
+    "id": 3833,
+    "heading": "Genova 20th...personal report",
+    "created": "2001-07-22 14:26:01",
+    "linked_file": null,
+    "hugo": "3833-genova-20thpersonal-report",
+    "date": "2001-07-22",
+    "time": "14:26:01",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "26",
+    "second": "01"
+  },
+  {
+    "id": 3839,
+    "heading": "support demostration in Buenos Aires",
+    "created": "2001-07-20 12:49:16",
+    "linked_file": null,
+    "hugo": "3839-support-demostration-in-buenos-aires",
+    "date": "2001-07-20",
+    "time": "12:49:16",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "49",
+    "second": "16"
+  },
+  {
+    "id": 3851,
+    "heading": "il tipo a cui viene punatat la pistola è quello morto!!!!",
+    "created": "2001-07-20 14:44:09",
+    "linked_file": null,
+    "hugo": "3851-il-tipo-a-cui-viene-punatat-la-pistola-e-quello-morto",
+    "date": "2001-07-20",
+    "time": "14:44:09",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "14",
+    "minute": "44",
+    "second": "09"
+  },
+  {
+    "id": 3868,
+    "heading": "YOU ARE KILLERS WORLD LEADERS",
+    "created": "2001-07-21 02:08:07",
+    "linked_file": "2001/07/eubush.jpg",
+    "hugo": "3868-you-are-killers-world-leaders",
+    "date": "2001-07-21",
+    "time": "02:08:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "08",
+    "second": "07"
+  },
+  {
+    "id": 3873,
+    "heading": "Tear Gas Buster",
+    "created": "2001-07-20 12:58:56",
+    "linked_file": null,
+    "hugo": "3873-tear-gas-buster",
+    "date": "2001-07-20",
+    "time": "12:58:56",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "58",
+    "second": "56"
+  },
+  {
+    "id": 3874,
+    "heading": "Ya Basta march",
+    "created": "2001-07-23 16:25:17",
+    "linked_file": "2001/07/yabastamarch.jpg",
+    "hugo": "3874-ya-basta-march",
+    "date": "2001-07-23",
+    "time": "16:25:17",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "25",
+    "second": "17"
+  },
+  {
+    "id": 3886,
+    "heading": "act of support",
+    "created": "2001-07-20 13:05:08",
+    "linked_file": null,
+    "hugo": "3886-act-of-support",
+    "date": "2001-07-20",
+    "time": "13:05:08",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "05",
+    "second": "08"
+  },
+  {
+    "id": 3891,
+    "heading": "Ya Basta march attacked by Carabinieri",
+    "created": "2001-07-20 13:16:50",
+    "linked_file": "2001/07/yabastaattack.jpg",
+    "hugo": "3891-ya-basta-march-attacked-by-carabinieri",
+    "date": "2001-07-20",
+    "time": "13:16:50",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "16",
+    "second": "50"
+  },
+  {
+    "id": 3892,
+    "heading": "Carabinieri criticised",
+    "created": "2001-07-20 13:22:57",
+    "linked_file": "2001/07/copcar.jpg",
+    "hugo": "3892-carabinieri-criticised",
+    "date": "2001-07-20",
+    "time": "13:22:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "22",
+    "second": "57"
+  },
+  {
+    "id": 3899,
+    "heading": "Protester shot in self-defense by Italian Police Forces",
+    "created": "2001-07-20 15:05:28",
+    "linked_file": null,
+    "hugo": "3899-protester-shot-in-selfdefense-by-italian-police-forces",
+    "date": "2001-07-20",
+    "time": "15:05:28",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "05",
+    "second": "28"
+  },
+  {
+    "id": 3905,
+    "heading": "Comunicato 8 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 13:33:26",
+    "linked_file": null,
+    "hugo": "3905-comunicato-8-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "13:33:26",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "33",
+    "second": "26"
+  },
+  {
+    "id": 3915,
+    "heading": "hanno visto la polizia sparare",
+    "created": "2001-07-21 08:26:33",
+    "linked_file": "2001/07/hanno_visto_sparare_la_polizia.rm",
+    "hugo": "3915-hanno-visto-la-polizia-sparare",
+    "date": "2001-07-21",
+    "time": "08:26:33",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "26",
+    "second": "33"
+  },
+  {
+    "id": 3932,
+    "heading": "Police advance, stepping over the dead body",
+    "created": "2001-07-20 14:06:48",
+    "linked_file": "2001/07/afterkilling.jpg.jpg",
+    "hugo": "3932-police-advance-stepping-over-the-dead-body",
+    "date": "2001-07-20",
+    "time": "14:06:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "14",
+    "minute": "06",
+    "second": "48"
+  },
+  {
+    "id": 3937,
+    "heading": "lo sparo",
+    "created": "2001-07-21 01:55:23",
+    "linked_file": "2001/07/5_p.jpg",
+    "hugo": "3937-lo-sparo",
+    "date": "2001-07-21",
+    "time": "01:55:23",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "55",
+    "second": "23"
+  },
+  {
+    "id": 3938,
+    "heading": "I Carabinieri vanno sciolto",
+    "created": "2001-07-21 04:07:27",
+    "linked_file": null,
+    "hugo": "3938-i-carabinieri-vanno-sciolto",
+    "date": "2001-07-21",
+    "time": "04:07:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "07",
+    "second": "27"
+  },
+  {
+    "id": 3988,
+    "heading": "Mai +",
+    "created": "2001-07-20 15:11:29",
+    "linked_file": null,
+    "hugo": "3988-mai-+",
+    "date": "2001-07-20",
+    "time": "15:11:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "11",
+    "second": "29"
+  },
+  {
+    "id": 3997,
+    "heading": "Why him?",
+    "created": "2001-07-21 04:46:43",
+    "linked_file": null,
+    "hugo": "3997-why-him",
+    "date": "2001-07-21",
+    "time": "04:46:43",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "46",
+    "second": "43"
+  },
+  {
+    "id": 4007,
+    "heading": "G8, Genua: Picture Shows Police Jeep Driving Over A Protester.",
+    "created": "2001-07-24 04:23:32",
+    "linked_file": "2001/07/genua3.jpg",
+    "hugo": "4007-g8-genua-picture-shows-police-jeep-driving-over-a-protester",
+    "date": "2001-07-24",
+    "time": "04:23:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "23",
+    "second": "32"
+  },
+  {
+    "id": 4012,
+    "heading": "the CNN spin - video clip - disinfo101",
+    "created": "2001-07-20 18:08:07",
+    "linked_file": null,
+    "hugo": "4012-the-cnn-spin-video-clip-disinfo101",
+    "date": "2001-07-20",
+    "time": "18:08:07",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "08",
+    "second": "07"
+  },
+  {
+    "id": 4013,
+    "heading": "Death in Genoa: testimony of the photographer [audio]",
+    "created": "2001-07-20 16:43:22",
+    "linked_file": "2001/07/devin.rm",
+    "hugo": "4013-death-in-genoa-testimony-of-the-photographer-audio",
+    "date": "2001-07-20",
+    "time": "16:43:22",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "43",
+    "second": "22"
+  },
+  {
+    "id": 4018,
+    "heading": "death",
+    "created": "2001-07-20 15:41:02",
+    "linked_file": "2001/07/manifestante1p.jpg",
+    "hugo": "4018-death",
+    "date": "2001-07-20",
+    "time": "15:41:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "41",
+    "second": "02"
+  },
+  {
+    "id": 4020,
+    "heading": "Bus of autrian students union beein beeing blocked at german border",
+    "created": "2001-07-20 18:34:49",
+    "linked_file": null,
+    "hugo": "4020-bus-of-autrian-students-union-beein-beeing-blocked-at-german-border",
+    "date": "2001-07-20",
+    "time": "18:34:49",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "34",
+    "second": "49"
+  },
+  {
+    "id": 4023,
+    "heading": "austrian bus with activists stopped and controlled in germany",
+    "created": "2001-07-21 04:29:37",
+    "linked_file": null,
+    "hugo": "4023-austrian-bus-with-activists-stopped-and-controlled-in-germany",
+    "date": "2001-07-21",
+    "time": "04:29:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "29",
+    "second": "37"
+  },
+  {
+    "id": 4028,
+    "heading": "Genova, 20.07.01: In the morning at the red zone",
+    "created": "2001-07-20 15:46:58",
+    "linked_file": "2001/07/redzone_02.jpg",
+    "hugo": "4028-genova-200701-in-the-morning-at-the-red-zone",
+    "date": "2001-07-20",
+    "time": "15:46:58",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "46",
+    "second": "58"
+  },
+  {
+    "id": 4033,
+    "heading": "Genova 20.07.01: Pink March [picture report 01]",
+    "created": "2001-07-20 15:49:20",
+    "linked_file": "2001/07/pink_04.jpg",
+    "hugo": "4033-genova-200701-pink-march-picture-report-01",
+    "date": "2001-07-20",
+    "time": "15:49:20",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "49",
+    "second": "20"
+  },
+  {
+    "id": 4034,
+    "heading": "solidarity-action in linz",
+    "created": "2001-07-21 08:44:36",
+    "linked_file": "2001/07/landstr.jpg",
+    "hugo": "4034-solidarityaction-in-linz",
+    "date": "2001-07-21",
+    "time": "08:44:36",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "44",
+    "second": "36"
+  },
+  {
+    "id": 4043,
+    "heading": "PRESIDIO A PONTE GARIBALDI A ROMA - ORE 23 DEL 20 LUGLIO",
+    "created": "2001-07-20 15:57:19",
+    "linked_file": null,
+    "hugo": "4043-presidio-a-ponte-garibaldi-a-roma-ore-23-del-20-luglio",
+    "date": "2001-07-20",
+    "time": "15:57:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "57",
+    "second": "19"
+  },
+  {
+    "id": 4052,
+    "heading": "Genova 20.07.01: Pink March [picture report 02]",
+    "created": "2001-07-20 15:59:14",
+    "linked_file": "2001/07/pink_08.jpg",
+    "hugo": "4052-genova-200701-pink-march-picture-report-02",
+    "date": "2001-07-20",
+    "time": "15:59:14",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "59",
+    "second": "14"
+  },
+  {
+    "id": 4062,
+    "heading": "Tutte Bianchi march and around[picture report 01]",
+    "created": "2001-07-20 16:19:51",
+    "linked_file": "2001/07/tutii_04.jpg",
+    "hugo": "4062-tutte-bianchi-march-and-aroundpicture-report-01",
+    "date": "2001-07-20",
+    "time": "16:19:51",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "19",
+    "second": "51"
+  },
+  {
+    "id": 4077,
+    "heading": "Tutte Bianchi march and around[picture report 02]",
+    "created": "2001-07-20 16:32:31",
+    "linked_file": "2001/07/tutii_07.jpg",
+    "hugo": "4077-tutte-bianchi-march-and-aroundpicture-report-02",
+    "date": "2001-07-20",
+    "time": "16:32:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "32",
+    "second": "31"
+  },
+  {
+    "id": 4078,
+    "heading": "genova webcams are all under maintenance?!?!?!?!?",
+    "created": "2001-07-20 16:55:59",
+    "linked_file": null,
+    "hugo": "4078-genova-webcams-are-all-under-maintenance",
+    "date": "2001-07-20",
+    "time": "16:55:59",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "55",
+    "second": "59"
+  },
+  {
+    "id": 4085,
+    "heading": "Tutte Bianchi march and around[picture report 03]",
+    "created": "2001-07-20 16:38:21",
+    "linked_file": "2001/07/tutii_11.jpg",
+    "hugo": "4085-tutte-bianchi-march-and-aroundpicture-report-03",
+    "date": "2001-07-20",
+    "time": "16:38:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "38",
+    "second": "21"
+  },
+  {
+    "id": 4089,
+    "heading": "We have the license plate of cop killer",
+    "created": "2001-07-21 03:32:43",
+    "linked_file": null,
+    "hugo": "4089-we-have-the-license-plate-of-cop-killer",
+    "date": "2001-07-21",
+    "time": "03:32:43",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "32",
+    "second": "43"
+  },
+  {
+    "id": 4093,
+    "heading": "Berlin: Demonstration at italian embassy",
+    "created": "2001-07-20 16:53:18",
+    "linked_file": null,
+    "hugo": "4093-berlin-demonstration-at-italian-embassy",
+    "date": "2001-07-20",
+    "time": "16:53:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "53",
+    "second": "18"
+  },
+  {
+    "id": 4100,
+    "heading": "Tutte Bianchi march and around[picture report 04]",
+    "created": "2001-07-20 16:55:06",
+    "linked_file": "2001/07/tutii_12.jpg",
+    "hugo": "4100-tutte-bianchi-march-and-aroundpicture-report-04",
+    "date": "2001-07-20",
+    "time": "16:55:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "55",
+    "second": "06"
+  },
+  {
+    "id": 4106,
+    "heading": "pressconference of eyewitnesses of death shooting",
+    "created": "2001-07-20 17:02:02",
+    "linked_file": null,
+    "hugo": "4106-pressconference-of-eyewitnesses-of-death-shooting",
+    "date": "2001-07-20",
+    "time": "17:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "17",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 4110,
+    "heading": "A day Of Battle",
+    "created": "2001-07-22 08:35:05",
+    "linked_file": null,
+    "hugo": "4110-a-day-of-battle",
+    "date": "2001-07-22",
+    "time": "08:35:05",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "35",
+    "second": "05"
+  },
+  {
+    "id": 4115,
+    "heading": "Solidarity Protests",
+    "created": "2001-07-20 17:31:19",
+    "linked_file": null,
+    "hugo": "4115-solidarity-protests",
+    "date": "2001-07-20",
+    "time": "17:31:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "17",
+    "minute": "31",
+    "second": "19"
+  },
+  {
+    "id": 4116,
+    "heading": "Swedish TV: Cops kicked protester",
+    "created": "2001-07-20 18:44:20",
+    "linked_file": null,
+    "hugo": "4116-swedish-tv-cops-kicked-protester",
+    "date": "2001-07-20",
+    "time": "18:44:20",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "44",
+    "second": "20"
+  },
+  {
+    "id": 4124,
+    "heading": "La legittima difesa è una bugia!!",
+    "created": "2001-07-20 19:17:49",
+    "linked_file": null,
+    "hugo": "4124-la-legittima-difesa-e-una-bugia",
+    "date": "2001-07-20",
+    "time": "19:17:49",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "19",
+    "minute": "17",
+    "second": "49"
+  },
+  {
+    "id": 4163,
+    "heading": "murder sequence 2",
+    "created": "2001-07-20 18:28:42",
+    "linked_file": null,
+    "hugo": "4163-murder-sequence-2",
+    "date": "2001-07-20",
+    "time": "18:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 4165,
+    "heading": "en) pictures, articles / pictures from anarchist and corporate press",
+    "created": "2001-07-20 22:51:04",
+    "linked_file": null,
+    "hugo": "4165-en-pictures-articles-pictures-from-anarchist-and-corporate-press",
+    "date": "2001-07-20",
+    "time": "22:51:04",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "22",
+    "minute": "51",
+    "second": "04"
+  },
+  {
+    "id": 4169,
+    "heading": "it, ca, fr, en ) genoa multilingual reports check here regularly",
+    "created": "2001-07-20 18:23:16",
+    "linked_file": null,
+    "hugo": "4169-it-ca-fr-en-genoa-multilingual-reports-check-here-regularly",
+    "date": "2001-07-20",
+    "time": "18:23:16",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "23",
+    "second": "16"
+  },
+  {
+    "id": 4170,
+    "heading": "1 more death in the Anti-capitalist struggle",
+    "created": "2001-07-21 03:25:44",
+    "linked_file": "2001/07/hxnlni.txt",
+    "hugo": "4170-1-more-death-in-the-anticapitalist-struggle",
+    "date": "2001-07-21",
+    "time": "03:25:44",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "25",
+    "second": "44"
+  },
+  {
+    "id": 4179,
+    "heading": "soon we'll have the name...",
+    "created": "2001-07-20 20:31:40",
+    "linked_file": null,
+    "hugo": "4179-soon-well-have-the-name",
+    "date": "2001-07-20",
+    "time": "20:31:40",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "20",
+    "minute": "31",
+    "second": "40"
+  },
+  {
+    "id": 4181,
+    "heading": "G8: incidenti in piazza Manin",
+    "created": "2001-07-20 18:31:10",
+    "linked_file": null,
+    "hugo": "4181-g8-incidenti-in-piazza-manin",
+    "date": "2001-07-20",
+    "time": "18:31:10",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "31",
+    "second": "10"
+  },
+  {
+    "id": 4182,
+    "heading": "en,ca,it,fr) anarchist newswire multilijngual genoa stories",
+    "created": "2001-07-20 18:31:24",
+    "linked_file": null,
+    "hugo": "4182-encaitfr-anarchist-newswire-multilijngual-genoa-stories",
+    "date": "2001-07-20",
+    "time": "18:31:24",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "31",
+    "second": "24"
+  },
+  {
+    "id": 4198,
+    "heading": "Solidarity: Toronto, Canada",
+    "created": "2001-07-20 19:50:43",
+    "linked_file": null,
+    "hugo": "4198-solidarity-toronto-canada",
+    "date": "2001-07-20",
+    "time": "19:50:43",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "19",
+    "minute": "50",
+    "second": "43"
+  },
+  {
+    "id": 4203,
+    "heading": "how bad means can spoil good reasons",
+    "created": "2001-07-21 00:06:55",
+    "linked_file": null,
+    "hugo": "4203-how-bad-means-can-spoil-good-reasons",
+    "date": "2001-07-21",
+    "time": "00:06:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "00",
+    "minute": "06",
+    "second": "55"
+  },
+  {
+    "id": 4210,
+    "heading": "PROTESTA POR LA BRUTAL REPRESIÓN EN GÉNOVA manifestaciones en Madrid y Barcelona",
+    "created": "2001-07-20 19:25:46",
+    "linked_file": null,
+    "hugo": "4210-protesta-por-la-brutal-represi-n-en-g-nova-manifestaci-nes-en-madrid-y-bacelona",
+    "date": "2001-07-20",
+    "time": "19:25:46",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "19",
+    "minute": "25",
+    "second": "46"
+  },
+  {
+    "id": 4231,
+    "heading": "Presidio e corteo di solidarita a Colonia (Germania)",
+    "created": "2001-07-20 20:06:06",
+    "linked_file": null,
+    "hugo": "4231-presidio-e-corteo-di-solidarita-a-colonia-germania",
+    "date": "2001-07-20",
+    "time": "20:06:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "20",
+    "minute": "06",
+    "second": "06"
+  },
+  {
+    "id": 4234,
+    "heading": "Manifestacion en Argentina en contra de la represion en Genova",
+    "created": "2001-07-20 20:16:18",
+    "linked_file": null,
+    "hugo": "4234-manifestacion-en-argentina-en-contra-de-la-represion-en-genova",
+    "date": "2001-07-20",
+    "time": "20:16:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "20",
+    "minute": "16",
+    "second": "18"
+  },
+  {
+    "id": 4247,
+    "heading": "blcack_bloch",
+    "created": "2001-07-21 04:29:53",
+    "linked_file": "2001/07/blackbloc.jpg",
+    "hugo": "4247-blcackbloch",
+    "date": "2001-07-21",
+    "time": "04:29:53",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "29",
+    "second": "53"
+  },
+  {
+    "id": 4248,
+    "heading": "Manifestacion en solidaridad con el pueblo de Genova - Argentina",
+    "created": "2001-07-24 16:46:24",
+    "linked_file": null,
+    "hugo": "4248-manifestacion-en-solidaridad-con-el-pueblo-de-genova-argentina",
+    "date": "2001-07-24",
+    "time": "16:46:24",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "46",
+    "second": "24"
+  },
+  {
+    "id": 4257,
+    "heading": "THE VOICE OF THE PEOPLE MUST BE HEARD NOW",
+    "created": "2001-07-20 21:38:04",
+    "linked_file": "2001/07/algiersprotestpijf6n.jpg",
+    "hugo": "4257-the-voice-of-the-people-must-be-heard-now",
+    "date": "2001-07-20",
+    "time": "21:38:04",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "21",
+    "minute": "38",
+    "second": "04"
+  },
+  {
+    "id": 4267,
+    "heading": "Globalization and Alternatives FAQ",
+    "created": "2001-07-21 02:52:49",
+    "linked_file": null,
+    "hugo": "4267-globalization-and-alternatives-faq",
+    "date": "2001-07-21",
+    "time": "02:52:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "52",
+    "second": "49"
+  },
+  {
+    "id": 4275,
+    "heading": "reuters: Bush to promote biotechnology at Genoa G8",
+    "created": "2001-07-21 02:15:28",
+    "linked_file": null,
+    "hugo": "4275-reuters-bush-to-promote-biotechnology-at-genoa-g8",
+    "date": "2001-07-21",
+    "time": "02:15:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "15",
+    "second": "28"
+  },
+  {
+    "id": 4288,
+    "heading": "Berkeley Protest In Solidarity With Activists in Genoa",
+    "created": "2001-07-26 13:03:37",
+    "linked_file": "2001/07/berkeley_solidarity.jpg",
+    "hugo": "4288-berkeley-protest-in-solidarity-with-activists-in-genoa",
+    "date": "2001-07-26",
+    "time": "13:03:37",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "13",
+    "minute": "03",
+    "second": "37"
+  },
+  {
+    "id": 4290,
+    "heading": "Report from solidarity protest at New York Italian Consulate earliar today",
+    "created": "2001-07-25 08:21:02",
+    "linked_file": null,
+    "hugo": "4290-report-from-solidarity-protest-at-new-york-italian-consulate-earliar-today",
+    "date": "2001-07-25",
+    "time": "08:21:02",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "21",
+    "second": "02"
+  },
+  {
+    "id": 4296,
+    "heading": "Report from Candlelight vigil in Toronto",
+    "created": "2001-07-25 18:40:50",
+    "linked_file": null,
+    "hugo": "4296-report-from-candlelight-vigil-in-toronto",
+    "date": "2001-07-25",
+    "time": "18:40:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "40",
+    "second": "50"
+  },
+  {
+    "id": 4312,
+    "heading": "solidarity from melbourne activists",
+    "created": "2001-07-20 23:33:39",
+    "linked_file": null,
+    "hugo": "4312-solidarity-from-melbourne-activists",
+    "date": "2001-07-20",
+    "time": "23:33:39",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "23",
+    "minute": "33",
+    "second": "39"
+  },
+  {
+    "id": 4314,
+    "heading": "italy imc to be raided ?",
+    "created": "2001-07-21 01:40:50",
+    "linked_file": null,
+    "hugo": "4314-italy-imc-to-be-raided-",
+    "date": "2001-07-21",
+    "time": "01:40:50",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "40",
+    "second": "50"
+  },
+  {
+    "id": 4321,
+    "heading": "Condolences. Slay the beast.",
+    "created": "2001-07-21 01:17:06",
+    "linked_file": null,
+    "hugo": "4321-condolences-slay-the-beast",
+    "date": "2001-07-21",
+    "time": "01:17:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "17",
+    "second": "06"
+  },
+  {
+    "id": 4325,
+    "heading": "600 march against G8 in Finland",
+    "created": "2001-07-21 00:19:36",
+    "linked_file": null,
+    "hugo": "4325-600-march-against-g8-in-finland",
+    "date": "2001-07-21",
+    "time": "00:19:36",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "00",
+    "minute": "19",
+    "second": "36"
+  },
+  {
+    "id": 4330,
+    "heading": "voilence makes u smaller",
+    "created": "2001-07-21 03:07:22",
+    "linked_file": null,
+    "hugo": "4330-voilence-makes-u-smaller",
+    "date": "2001-07-21",
+    "time": "03:07:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "07",
+    "second": "22"
+  },
+  {
+    "id": 4338,
+    "heading": "When People are Angry they Fight",
+    "created": "2001-07-21 02:54:31",
+    "linked_file": null,
+    "hugo": "4338-when-people-are-angry-they-fight",
+    "date": "2001-07-21",
+    "time": "02:54:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "54",
+    "second": "31"
+  },
+  {
+    "id": 4340,
+    "heading": "Fuck The Black Bloc",
+    "created": "2001-07-21 13:21:59",
+    "linked_file": null,
+    "hugo": "4340-fuck-the-black-bloc",
+    "date": "2001-07-21",
+    "time": "13:21:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "21",
+    "second": "59"
+  },
+  {
+    "id": 4346,
+    "heading": "Globalize Revolution!",
+    "created": "2001-07-21 02:06:26",
+    "linked_file": null,
+    "hugo": "4346-globalize-revolution",
+    "date": "2001-07-21",
+    "time": "02:06:26",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "06",
+    "second": "26"
+  },
+  {
+    "id": 4355,
+    "heading": "G-8 Summit NOT CANCELLED",
+    "created": "2001-07-21 04:04:29",
+    "linked_file": null,
+    "hugo": "4355-g8-summit-not-cancelled",
+    "date": "2001-07-21",
+    "time": "04:04:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "04",
+    "second": "29"
+  },
+  {
+    "id": 4368,
+    "heading": "life and death",
+    "created": "2001-07-21 01:33:56",
+    "linked_file": "2001/07/dscf0091.jpg",
+    "hugo": "4368-life-and-death",
+    "date": "2001-07-21",
+    "time": "01:33:56",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "33",
+    "second": "56"
+  },
+  {
+    "id": 4379,
+    "heading": "corteo disobbedienti ore 17 e 30 circa",
+    "created": "2001-07-21 01:45:32",
+    "linked_file": "2001/07/corteo_disobbedienti.rm",
+    "hugo": "4379-corteo-disobbedienti-ore-17-e-30-circa",
+    "date": "2001-07-21",
+    "time": "01:45:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "45",
+    "second": "32"
+  },
+  {
+    "id": 4399,
+    "heading": "G8 - demonstration in Finland (friday)",
+    "created": "2001-07-21 02:50:14",
+    "linked_file": "2001/07/bandis.jpg",
+    "hugo": "4399-g8-demonstration-in-finland-friday",
+    "date": "2001-07-21",
+    "time": "02:50:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "50",
+    "second": "14"
+  },
+  {
+    "id": 4406,
+    "heading": "more",
+    "created": "2001-07-21 02:13:39",
+    "linked_file": "2001/07/dscf0132.jpg",
+    "hugo": "4406-more",
+    "date": "2001-07-21",
+    "time": "02:13:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "13",
+    "second": "39"
+  },
+  {
+    "id": 4418,
+    "heading": "una storia vera",
+    "created": "2001-07-22 12:42:45",
+    "linked_file": "2001/07/accertamenti.doc",
+    "hugo": "4418-una-storia-vera",
+    "date": "2001-07-22",
+    "time": "12:42:45",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "42",
+    "second": "45"
+  },
+  {
+    "id": 4436,
+    "heading": "Berkeley Solidarity Demo Against G8",
+    "created": "2001-07-21 02:55:18",
+    "linked_file": "2001/07/sfg8solidarity.jpg",
+    "hugo": "4436-berkeley-solidarity-demo-against-g8",
+    "date": "2001-07-21",
+    "time": "02:55:18",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "55",
+    "second": "18"
+  },
+  {
+    "id": 4444,
+    "heading": "front page suggested translation",
+    "created": "2001-07-21 03:43:00",
+    "linked_file": null,
+    "hugo": "4444-front-page-suggested-translation",
+    "date": "2001-07-21",
+    "time": "03:43:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "43",
+    "second": "00"
+  },
+  {
+    "id": 4446,
+    "heading": "Ok no violence but organise to act if under attack from the police.",
+    "created": "2001-07-21 04:13:31",
+    "linked_file": null,
+    "hugo": "4446-ok-no-violence-but-organise-to-act-if-under-attack-from-the-police",
+    "date": "2001-07-21",
+    "time": "04:13:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "13",
+    "second": "31"
+  },
+  {
+    "id": 4464,
+    "heading": "Demostrations in Madrid and Barcelona",
+    "created": "2001-07-22 02:13:57",
+    "linked_file": null,
+    "hugo": "4464-demostrations-in-madrid-and-barcelona",
+    "date": "2001-07-22",
+    "time": "02:13:57",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "13",
+    "second": "57"
+  },
+  {
+    "id": 4465,
+    "heading": "ANARCHISTS? (TRASLATION)",
+    "created": "2001-07-21 06:05:27",
+    "linked_file": null,
+    "hugo": "4465-anarchists-traslation",
+    "date": "2001-07-21",
+    "time": "06:05:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "05",
+    "second": "27"
+  },
+  {
+    "id": 4469,
+    "heading": "Carabinieri infiltrati",
+    "created": "2001-07-21 06:28:00",
+    "linked_file": null,
+    "hugo": "4469-carabinieri-infiltrati",
+    "date": "2001-07-21",
+    "time": "06:28:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "28",
+    "second": "00"
+  },
+  {
+    "id": 4484,
+    "heading": "Pacifism as Pathology...Viva el blogue negro!! Viva Tute Bianche!!",
+    "created": "2001-07-21 04:45:41",
+    "linked_file": null,
+    "hugo": "4484-pacifism-as-pathologyviva-el-blogue-negro-viva-tute-bianche",
+    "date": "2001-07-21",
+    "time": "04:45:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "45",
+    "second": "41"
+  },
+  {
+    "id": 4495,
+    "heading": "una storia vera",
+    "created": "2001-07-21 03:51:16",
+    "linked_file": "2001/07/accertamenticsgfjx.doc",
+    "hugo": "4495-una-storia-vera",
+    "date": "2001-07-21",
+    "time": "03:51:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "51",
+    "second": "16"
+  },
+  {
+    "id": 4503,
+    "heading": "la giustizia",
+    "created": "2001-07-21 03:57:39",
+    "linked_file": null,
+    "hugo": "4503-la-giustizia",
+    "date": "2001-07-21",
+    "time": "03:57:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "57",
+    "second": "39"
+  },
+  {
+    "id": 4508,
+    "heading": "11:48",
+    "created": "2001-07-21 04:00:59",
+    "linked_file": null,
+    "hugo": "4508-1148",
+    "date": "2001-07-21",
+    "time": "04:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 4509,
+    "heading": "IERI VEN 20 CONCETRAMENTO a ROMA",
+    "created": "2001-07-21 04:02:34",
+    "linked_file": "2001/07/conc.doc",
+    "hugo": "4509-ieri-ven-20-concetramento-a-roma",
+    "date": "2001-07-21",
+    "time": "04:02:34",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "02",
+    "second": "34"
+  },
+  {
+    "id": 4524,
+    "heading": "austrian bus stopped at brenner now for 5 hours and people interrogated",
+    "created": "2001-07-21 05:40:54",
+    "linked_file": null,
+    "hugo": "4524-austrian-bus-stopped-at-brenner-now-for-5-hours-and-people-interrogated",
+    "date": "2001-07-21",
+    "time": "05:40:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "40",
+    "second": "54"
+  },
+  {
+    "id": 4526,
+    "heading": "IMC NEWS BLAST | GENOA G8: What is really happening?",
+    "created": "2001-07-25 17:11:00",
+    "linked_file": null,
+    "hugo": "4526-imc-news-blast-genoa-g8-what-is-really-happening",
+    "date": "2001-07-25",
+    "time": "17:11:00",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "11",
+    "second": "00"
+  },
+  {
+    "id": 4527,
+    "heading": "message of solidarity from Melbourne, Australia",
+    "created": "2001-07-21 04:17:48",
+    "linked_file": null,
+    "hugo": "4527-message-of-solidarity-from-melbourne-australia",
+    "date": "2001-07-21",
+    "time": "04:17:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "17",
+    "second": "48"
+  },
+  {
+    "id": 4535,
+    "heading": "Bus of austrian Students Union now held at Italian Border",
+    "created": "2001-07-21 04:59:03",
+    "linked_file": null,
+    "hugo": "4535-bus-of-austrian-students-union-now-held-at-italian-border",
+    "date": "2001-07-21",
+    "time": "04:59:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "59",
+    "second": "03"
+  },
+  {
+    "id": 4551,
+    "heading": "Pink + Silver March at Red Zone Fence Friday 20th",
+    "created": "2001-07-21 06:23:10",
+    "linked_file": "2001/07/pinkfence.jpg",
+    "hugo": "4551-pink-+-silver-march-at-red-zone-fence-friday-20th",
+    "date": "2001-07-21",
+    "time": "06:23:10",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "23",
+    "second": "10"
+  },
+  {
+    "id": 4558,
+    "heading": "Roma: protesta contro l'assassinio a Genova",
+    "created": "2001-07-21 05:48:28",
+    "linked_file": null,
+    "hugo": "4558-roma-protesta-contro-lassassinio-a-genova",
+    "date": "2001-07-21",
+    "time": "05:48:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "48",
+    "second": "28"
+  },
+  {
+    "id": 4561,
+    "heading": "Roma: protesta contro l'assassinio a Genova",
+    "created": "2001-07-21 04:46:28",
+    "linked_file": null,
+    "hugo": "4561-roma-protesta-contro-lassassinio-a-genova",
+    "date": "2001-07-21",
+    "time": "04:46:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "46",
+    "second": "28"
+  },
+  {
+    "id": 4572,
+    "heading": "demonstrations in germany last night",
+    "created": "2001-07-21 05:45:23",
+    "linked_file": null,
+    "hugo": "4572-demonstrations-in-germany-last-night",
+    "date": "2001-07-21",
+    "time": "05:45:23",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "45",
+    "second": "23"
+  },
+  {
+    "id": 4574,
+    "heading": "pena di morte",
+    "created": "2001-07-21 05:55:44",
+    "linked_file": "2001/07/assassini2.jpg",
+    "hugo": "4574-pena-di-morte",
+    "date": "2001-07-21",
+    "time": "05:55:44",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "55",
+    "second": "44"
+  },
+  {
+    "id": 4577,
+    "heading": "Verbale indentificazione",
+    "created": "2001-07-26 03:05:12",
+    "linked_file": "2001/07/foglio3.jpg",
+    "hugo": "4577-verbale-indentificazione",
+    "date": "2001-07-26",
+    "time": "03:05:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "05",
+    "second": "12"
+  },
+  {
+    "id": 4578,
+    "heading": "Netstrike",
+    "created": "2001-07-21 05:34:48",
+    "linked_file": null,
+    "hugo": "4578-netstrike",
+    "date": "2001-07-21",
+    "time": "05:34:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "34",
+    "second": "48"
+  },
+  {
+    "id": 4586,
+    "heading": "g8 assasino",
+    "created": "2001-07-21 09:55:41",
+    "linked_file": null,
+    "hugo": "4586-g8-assasino",
+    "date": "2001-07-21",
+    "time": "09:55:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "55",
+    "second": "41"
+  },
+  {
+    "id": 4590,
+    "heading": "Solidarity protests in Norway",
+    "created": "2001-07-21 07:15:07",
+    "linked_file": null,
+    "hugo": "4590-solidarity-protests-in-norway",
+    "date": "2001-07-21",
+    "time": "07:15:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "15",
+    "second": "07"
+  },
+  {
+    "id": 4594,
+    "heading": "Vigliacchi assassini!",
+    "created": "2001-07-21 08:17:52",
+    "linked_file": null,
+    "hugo": "4594-vigliacchi-assassini",
+    "date": "2001-07-21",
+    "time": "08:17:52",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "17",
+    "second": "52"
+  },
+  {
+    "id": 4597,
+    "heading": "Corporate media watch. IMC inside the red zone!",
+    "created": "2001-07-21 05:52:48",
+    "linked_file": null,
+    "hugo": "4597-corporate-media-watch-imc-inside-the-red-zone",
+    "date": "2001-07-21",
+    "time": "05:52:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "52",
+    "second": "48"
+  },
+  {
+    "id": 4598,
+    "heading": "Soloidarity Actions Past, Present and Future",
+    "created": "2001-07-24 15:01:50",
+    "linked_file": null,
+    "hugo": "4598-soloidarity-actions-past-present-and-future",
+    "date": "2001-07-24",
+    "time": "15:01:50",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "01",
+    "second": "50"
+  },
+  {
+    "id": 4608,
+    "heading": "The Divide and Rule Tactics  of Mr Greed",
+    "created": "2001-07-21 06:13:35",
+    "linked_file": null,
+    "hugo": "4608-the-divide-and-rule-tactics-of-mr-greed",
+    "date": "2001-07-21",
+    "time": "06:13:35",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "13",
+    "second": "35"
+  },
+  {
+    "id": 4613,
+    "heading": "re: how bad means can spoil good reasons",
+    "created": "2001-07-21 06:18:09",
+    "linked_file": null,
+    "hugo": "4613-re-how-bad-means-can-spoil-good-reasons",
+    "date": "2001-07-21",
+    "time": "06:18:09",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "18",
+    "second": "09"
+  },
+  {
+    "id": 4620,
+    "heading": "Idiots!",
+    "created": "2001-07-21 08:42:03",
+    "linked_file": null,
+    "hugo": "4620-idiots",
+    "date": "2001-07-21",
+    "time": "08:42:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "42",
+    "second": "03"
+  },
+  {
+    "id": 4621,
+    "heading": "netstrike against  genoa-g8.it",
+    "created": "2001-07-21 06:23:49",
+    "linked_file": null,
+    "hugo": "4621-netstrike-against-genoag8it",
+    "date": "2001-07-21",
+    "time": "06:23:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "23",
+    "second": "49"
+  },
+  {
+    "id": 4623,
+    "heading": "Protesta ieri a Bologna. Appuntamento oggi ore 17.00",
+    "created": "2001-07-21 06:30:46",
+    "linked_file": null,
+    "hugo": "4623-protesta-ieri-a-bologna-appuntamento-oggi-ore-1700",
+    "date": "2001-07-21",
+    "time": "06:30:46",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "30",
+    "second": "46"
+  },
+  {
+    "id": 4633,
+    "heading": "presidio a napoli",
+    "created": "2001-07-21 06:19:06",
+    "linked_file": null,
+    "hugo": "4633-presidio-a-napoli",
+    "date": "2001-07-21",
+    "time": "06:19:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "19",
+    "second": "06"
+  },
+  {
+    "id": 4647,
+    "heading": "Police attacking main march at Kennedy with GAS!!",
+    "created": "2001-07-21 07:59:13",
+    "linked_file": null,
+    "hugo": "4647-police-attacking-main-march-at-kennedy-with-gas",
+    "date": "2001-07-21",
+    "time": "07:59:13",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "59",
+    "second": "13"
+  },
+  {
+    "id": 4651,
+    "heading": "who gives violence gets violence",
+    "created": "2001-07-21 08:19:07",
+    "linked_file": null,
+    "hugo": "4651-who-gives-violence-gets-violence",
+    "date": "2001-07-21",
+    "time": "08:19:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "19",
+    "second": "07"
+  },
+  {
+    "id": 4653,
+    "heading": "action of solidarity in salzburg/austria + demo",
+    "created": "2001-07-21 07:00:39",
+    "linked_file": null,
+    "hugo": "4653-action-of-solidarity-in-salzburgaustria-+-demo",
+    "date": "2001-07-21",
+    "time": "07:00:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "00",
+    "second": "39"
+  },
+  {
+    "id": 4658,
+    "heading": "Sit-In In ROME",
+    "created": "2001-07-21 06:48:47",
+    "linked_file": null,
+    "hugo": "4658-sitin-in-rome",
+    "date": "2001-07-21",
+    "time": "06:48:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "48",
+    "second": "47"
+  },
+  {
+    "id": 4661,
+    "heading": "Sono 200Mila",
+    "created": "2001-07-21 07:46:46",
+    "linked_file": null,
+    "hugo": "4661-sono-200mila",
+    "date": "2001-07-21",
+    "time": "07:46:46",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "46",
+    "second": "46"
+  },
+  {
+    "id": 4671,
+    "heading": "You will want to see this complete series of photos.",
+    "created": "2001-07-21 12:50:28",
+    "linked_file": null,
+    "hugo": "4671-you-will-want-to-see-this-complete-series-of-photos",
+    "date": "2001-07-21",
+    "time": "12:50:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "50",
+    "second": "28"
+  },
+  {
+    "id": 4675,
+    "heading": "Plaza Kennedy 3 pm",
+    "created": "2001-07-21 07:04:45",
+    "linked_file": "2001/07/external-041.jpg",
+    "hugo": "4675-plaza-kennedy-3-pm",
+    "date": "2001-07-21",
+    "time": "07:04:45",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "04",
+    "second": "45"
+  },
+  {
+    "id": 4686,
+    "heading": "Stanno partendeo le cariiche a piazza Kennedy",
+    "created": "2001-07-21 08:11:14",
+    "linked_file": null,
+    "hugo": "4686-stanno-partendeo-le-cariiche-a-piazza-kennedy",
+    "date": "2001-07-21",
+    "time": "08:11:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "11",
+    "second": "14"
+  },
+  {
+    "id": 4687,
+    "heading": "Netstrike",
+    "created": "2001-07-21 07:17:47",
+    "linked_file": null,
+    "hugo": "4687-netstrike",
+    "date": "2001-07-21",
+    "time": "07:17:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "17",
+    "second": "47"
+  },
+  {
+    "id": 4691,
+    "heading": "BIG VICTORY",
+    "created": "2001-07-21 08:08:45",
+    "linked_file": null,
+    "hugo": "4691-big-victory",
+    "date": "2001-07-21",
+    "time": "08:08:45",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "08",
+    "second": "45"
+  },
+  {
+    "id": 4693,
+    "heading": "Piazza Kennedy 3 pm (better picture)",
+    "created": "2001-07-21 07:21:42",
+    "linked_file": "2001/07/piazza_kennedy_03.jpg",
+    "hugo": "4693-piazza-kennedy-3-pm-better-picture",
+    "date": "2001-07-21",
+    "time": "07:21:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "21",
+    "second": "42"
+  },
+  {
+    "id": 4695,
+    "heading": "P.za Kennedy Pic 1.",
+    "created": "2001-07-21 07:23:55",
+    "linked_file": "2001/07/tear_gas_in_conver_ctr.jpg",
+    "hugo": "4695-pza-kennedy-pic-1",
+    "date": "2001-07-21",
+    "time": "07:23:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "23",
+    "second": "55"
+  },
+  {
+    "id": 4696,
+    "heading": "P.za Kennedy pic 2",
+    "created": "2001-07-21 07:27:21",
+    "linked_file": "2001/07/starting_to_march_despite_of_tear_gas.jpg",
+    "hugo": "4696-pza-kennedy-pic-2",
+    "date": "2001-07-21",
+    "time": "07:27:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "27",
+    "second": "21"
+  },
+  {
+    "id": 4701,
+    "heading": "posters-flyers",
+    "created": "2001-07-21 07:27:37",
+    "linked_file": "2001/07/poster_g8c.pdf",
+    "hugo": "4701-postersflyers",
+    "date": "2001-07-21",
+    "time": "07:27:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "27",
+    "second": "37"
+  },
+  {
+    "id": 4705,
+    "heading": "protest against the shootings:PIC",
+    "created": "2001-07-21 10:47:54",
+    "linked_file": "2001/07/against_killings_at_g8.jpg",
+    "hugo": "4705-protest-against-the-shootingspic",
+    "date": "2001-07-21",
+    "time": "10:47:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "47",
+    "second": "54"
+  },
+  {
+    "id": 4706,
+    "heading": "Officer charged with murder after G8 death",
+    "created": "2001-07-21 08:54:08",
+    "linked_file": null,
+    "hugo": "4706-officer-charged-with-murder-after-g8-death",
+    "date": "2001-07-21",
+    "time": "08:54:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "54",
+    "second": "08"
+  },
+  {
+    "id": 4707,
+    "heading": "Recent killings at protests",
+    "created": "2001-07-21 11:48:37",
+    "linked_file": "2001/07/recent_killings_at_protests.jpg",
+    "hugo": "4707-recent-killings-at-protests",
+    "date": "2001-07-21",
+    "time": "11:48:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "48",
+    "second": "37"
+  },
+  {
+    "id": 4709,
+    "heading": "stop killing our children: PIC",
+    "created": "2001-07-21 09:48:55",
+    "linked_file": "2001/07/stop_killing_our_children93dzbn.jpg",
+    "hugo": "4709-stop-killing-our-children-pic",
+    "date": "2001-07-21",
+    "time": "09:48:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "48",
+    "second": "55"
+  },
+  {
+    "id": 4729,
+    "heading": "il nome dell'assassino",
+    "created": "2001-07-21 09:08:19",
+    "linked_file": null,
+    "hugo": "4729-il-nome-dellassassino",
+    "date": "2001-07-21",
+    "time": "09:08:19",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "08",
+    "second": "19"
+  },
+  {
+    "id": 4747,
+    "heading": "Carlo",
+    "created": "2001-07-21 08:15:55",
+    "linked_file": "2001/07/carlo.jpg",
+    "hugo": "4747-carlo",
+    "date": "2001-07-21",
+    "time": "08:15:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "15",
+    "second": "55"
+  },
+  {
+    "id": 4748,
+    "heading": "VIOLENT AND NON-VIOLENT PROTESTERS DIVIDE",
+    "created": "2001-07-21 09:36:03",
+    "linked_file": "2001/07/g8w.jpg",
+    "hugo": "4748-violent-and-nonviolent-protesters-divide",
+    "date": "2001-07-21",
+    "time": "09:36:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "36",
+    "second": "03"
+  },
+  {
+    "id": 4749,
+    "heading": "Genova Manifestation Gassed and Surrounded",
+    "created": "2001-07-21 09:09:21",
+    "linked_file": null,
+    "hugo": "4749-genova-manifestation-gassed-and-surrounded",
+    "date": "2001-07-21",
+    "time": "09:09:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "09",
+    "second": "21"
+  },
+  {
+    "id": 4751,
+    "heading": "Roma: davanti palazzo chigi sabato 21 ore 17",
+    "created": "2001-07-21 08:18:16",
+    "linked_file": null,
+    "hugo": "4751-roma-davanti-palazzo-chigi-sabato-21-ore-17",
+    "date": "2001-07-21",
+    "time": "08:18:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "18",
+    "second": "16"
+  },
+  {
+    "id": 4753,
+    "heading": "Watch out for \"villi\"",
+    "created": "2001-07-21 10:27:48",
+    "linked_file": null,
+    "hugo": "4753-watch-out-for-villi",
+    "date": "2001-07-21",
+    "time": "10:27:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "27",
+    "second": "48"
+  },
+  {
+    "id": 4759,
+    "heading": "Time to talk tactics as CAFOD pulls out of debt march",
+    "created": "2001-07-21 10:14:20",
+    "linked_file": null,
+    "hugo": "4759-time-to-talk-tactics-as-cafod-pulls-out-of-debt-march",
+    "date": "2001-07-21",
+    "time": "10:14:20",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "14",
+    "second": "20"
+  },
+  {
+    "id": 4772,
+    "heading": "Altro che autodifesa...",
+    "created": "2001-07-21 09:52:32",
+    "linked_file": null,
+    "hugo": "4772-altro-che-autodifesa",
+    "date": "2001-07-21",
+    "time": "09:52:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "52",
+    "second": "32"
+  },
+  {
+    "id": 4778,
+    "heading": "Reclaim the Streets in Turku, Finland on 11.8",
+    "created": "2001-07-21 08:38:04",
+    "linked_file": null,
+    "hugo": "4778-reclaim-the-streets-in-turku-finland-on-118",
+    "date": "2001-07-21",
+    "time": "08:38:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "38",
+    "second": "04"
+  },
+  {
+    "id": 4788,
+    "heading": "Lacrimoggeni per chiunque",
+    "created": "2001-07-21 10:38:49",
+    "linked_file": null,
+    "hugo": "4788-lacrimoggeni-per-chiunque",
+    "date": "2001-07-21",
+    "time": "10:38:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "38",
+    "second": "49"
+  },
+  {
+    "id": 4791,
+    "heading": "Indymedia mistake",
+    "created": "2001-07-21 10:22:55",
+    "linked_file": null,
+    "hugo": "4791-indymedia-mistake",
+    "date": "2001-07-21",
+    "time": "10:22:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "22",
+    "second": "55"
+  },
+  {
+    "id": 4792,
+    "heading": "testimonianza anonima omicidio Carlo",
+    "created": "2001-07-21 16:57:59",
+    "linked_file": null,
+    "hugo": "4792-testimonianza-anonima-omicidio-carlo",
+    "date": "2001-07-21",
+    "time": "16:57:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "57",
+    "second": "59"
+  },
+  {
+    "id": 4794,
+    "heading": "Lacrimogeni per chiunque",
+    "created": "2001-07-21 09:15:38",
+    "linked_file": "2001/07/primimomenti.rm",
+    "hugo": "4794-lacrimogeni-per-chiunque",
+    "date": "2001-07-21",
+    "time": "09:15:38",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "15",
+    "second": "38"
+  },
+  {
+    "id": 4801,
+    "heading": "Italian Police Violence Appalling!",
+    "created": "2001-07-22 07:11:01",
+    "linked_file": null,
+    "hugo": "4801-italian-police-violence-appalling",
+    "date": "2001-07-22",
+    "time": "07:11:01",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "11",
+    "second": "01"
+  },
+  {
+    "id": 4818,
+    "heading": "letter to an \"anarchist\" friend",
+    "created": "2001-07-21 11:34:33",
+    "linked_file": null,
+    "hugo": "4818-letter-to-an-anarchist-friend",
+    "date": "2001-07-21",
+    "time": "11:34:33",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "34",
+    "second": "33"
+  },
+  {
+    "id": 4821,
+    "heading": "COMUNICATO 9 -ANARCHICI CONTRO IL G8 - SABATO 21/07/2001",
+    "created": "2001-07-21 09:09:44",
+    "linked_file": null,
+    "hugo": "4821-comunicato-9-anarchici-contro-il-g8-sabato-21072001",
+    "date": "2001-07-21",
+    "time": "09:09:44",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "09",
+    "second": "44"
+  },
+  {
+    "id": 4822,
+    "heading": "newswire on betazine.org",
+    "created": "2001-07-21 09:09:46",
+    "linked_file": null,
+    "hugo": "4822-newswire-on-betazineorg",
+    "date": "2001-07-21",
+    "time": "09:09:46",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "09",
+    "second": "46"
+  },
+  {
+    "id": 4825,
+    "heading": "Lacrimogeni sul corteo",
+    "created": "2001-07-21 09:12:00",
+    "linked_file": null,
+    "hugo": "4825-lacrimogeni-sul-corteo",
+    "date": "2001-07-21",
+    "time": "09:12:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "12",
+    "second": "00"
+  },
+  {
+    "id": 4835,
+    "heading": "Police provoke violence",
+    "created": "2001-07-21 10:19:48",
+    "linked_file": "2001/07/gogjzm.txt",
+    "hugo": "4835-police-provoke-violence",
+    "date": "2001-07-21",
+    "time": "10:19:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "19",
+    "second": "48"
+  },
+  {
+    "id": 4836,
+    "heading": "g8 Assemblea Cittadina  a Roma",
+    "created": "2001-07-21 09:20:41",
+    "linked_file": null,
+    "hugo": "4836-g8-assemblea-cittadina-a-roma",
+    "date": "2001-07-21",
+    "time": "09:20:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "20",
+    "second": "41"
+  },
+  {
+    "id": 4848,
+    "heading": "bus hold on italian/austrian border since hours",
+    "created": "2001-07-21 10:49:31",
+    "linked_file": null,
+    "hugo": "4848-bus-hold-on-italianaustrian-border-since-hours",
+    "date": "2001-07-21",
+    "time": "10:49:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "49",
+    "second": "31"
+  },
+  {
+    "id": 4849,
+    "heading": "Sympathy demo in Oslo, Norway",
+    "created": "2001-07-21 09:29:29",
+    "linked_file": null,
+    "hugo": "4849-sympathy-demo-in-oslo-norway",
+    "date": "2001-07-21",
+    "time": "09:29:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "29",
+    "second": "29"
+  },
+  {
+    "id": 4850,
+    "heading": "solidarity demonstration in bielefeld/germany",
+    "created": "2001-07-22 07:01:00",
+    "linked_file": null,
+    "hugo": "4850-solidarity-demonstration-in-bielefeldgermany",
+    "date": "2001-07-22",
+    "time": "07:01:00",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "01",
+    "second": "00"
+  },
+  {
+    "id": 4860,
+    "heading": "ASESINOS!!!",
+    "created": "2001-07-21 11:36:52",
+    "linked_file": "2001/07/poli2.gif.gif",
+    "hugo": "4860-asesinos",
+    "date": "2001-07-21",
+    "time": "11:36:52",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "36",
+    "second": "52"
+  },
+  {
+    "id": 4861,
+    "heading": "Genova Solidarity in Finland",
+    "created": "2001-07-21 09:38:42",
+    "linked_file": "2001/07/bandisjyyj8u.jpg",
+    "hugo": "4861-genova-solidarity-in-finland",
+    "date": "2001-07-21",
+    "time": "09:38:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "38",
+    "second": "42"
+  },
+  {
+    "id": 4865,
+    "heading": "Genova Solidarity in Finland",
+    "created": "2001-07-21 09:38:47",
+    "linked_file": "2001/07/dieing3.jpg",
+    "hugo": "4865-genova-solidarity-in-finland",
+    "date": "2001-07-21",
+    "time": "09:38:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "38",
+    "second": "47"
+  },
+  {
+    "id": 4866,
+    "heading": "demonstration in vienna, austria",
+    "created": "2001-07-21 10:42:26",
+    "linked_file": null,
+    "hugo": "4866-demonstration-in-vienna-austria",
+    "date": "2001-07-21",
+    "time": "10:42:26",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "42",
+    "second": "26"
+  },
+  {
+    "id": 4872,
+    "heading": "Cop Charged with Murder of G8 Protester",
+    "created": "2001-07-21 09:45:41",
+    "linked_file": null,
+    "hugo": "4872-cop-charged-with-murder-of-g8-protester",
+    "date": "2001-07-21",
+    "time": "09:45:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "45",
+    "second": "41"
+  },
+  {
+    "id": 4875,
+    "heading": "After the shootings in Genoa: For a general strike now to bring down the Berlusc",
+    "created": "2001-07-22 13:16:46",
+    "linked_file": null,
+    "hugo": "4875-after-the-shootings-in-genoa-for-a-general-strike-now-to-bring-down-the-berlusc",
+    "date": "2001-07-22",
+    "time": "13:16:46",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "16",
+    "second": "46"
+  },
+  {
+    "id": 4882,
+    "heading": "G8 - gli scontri",
+    "created": "2001-07-21 09:57:18",
+    "linked_file": "2001/07/copia.jpg",
+    "hugo": "4882-g8-gli-scontri",
+    "date": "2001-07-21",
+    "time": "09:57:18",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "57",
+    "second": "18"
+  },
+  {
+    "id": 4883,
+    "heading": "Buy your pizzas here",
+    "created": "2001-07-21 11:42:14",
+    "linked_file": null,
+    "hugo": "4883-buy-your-pizzas-here",
+    "date": "2001-07-21",
+    "time": "11:42:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "42",
+    "second": "14"
+  },
+  {
+    "id": 4885,
+    "heading": "Big guns on the street",
+    "created": "2001-07-21 10:28:04",
+    "linked_file": "2001/07/gun22.jpg",
+    "hugo": "4885-big-guns-on-the-street",
+    "date": "2001-07-21",
+    "time": "10:28:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "28",
+    "second": "04"
+  },
+  {
+    "id": 4888,
+    "heading": "G8 - gli scontri (seconda parte)",
+    "created": "2001-07-21 10:03:05",
+    "linked_file": "2001/07/copia_2kbhd6m.jpg",
+    "hugo": "4888-g8-gli-scontri-seconda-parte",
+    "date": "2001-07-21",
+    "time": "10:03:05",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "03",
+    "second": "05"
+  },
+  {
+    "id": 4889,
+    "heading": "G8 - gli scontri (terza parte)",
+    "created": "2001-07-21 17:35:10",
+    "linked_file": "2001/07/copia_1.jpg",
+    "hugo": "4889-g8-gli-scontri-terza-parte",
+    "date": "2001-07-21",
+    "time": "17:35:10",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "35",
+    "second": "10"
+  },
+  {
+    "id": 4890,
+    "heading": "At lilliput peaceniks challange the black block",
+    "created": "2001-07-21 10:05:08",
+    "linked_file": null,
+    "hugo": "4890-at-lilliput-peaceniks-challange-the-black-block",
+    "date": "2001-07-21",
+    "time": "10:05:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "05",
+    "second": "08"
+  },
+  {
+    "id": 4895,
+    "heading": "Understanding Violence",
+    "created": "2001-07-21 16:17:06",
+    "linked_file": null,
+    "hugo": "4895-understanding-violence",
+    "date": "2001-07-21",
+    "time": "16:17:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "17",
+    "second": "06"
+  },
+  {
+    "id": 4902,
+    "heading": "Ancora cariche indiscriminate - una testimonianza",
+    "created": "2001-07-21 12:14:06",
+    "linked_file": null,
+    "hugo": "4902-ancora-cariche-indiscriminate-una-testimonianza",
+    "date": "2001-07-21",
+    "time": "12:14:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "14",
+    "second": "06"
+  },
+  {
+    "id": 4906,
+    "heading": "Police on the sea",
+    "created": "2001-07-24 02:38:27",
+    "linked_file": "2001/07/boats11.jpg",
+    "hugo": "4906-police-on-the-sea",
+    "date": "2001-07-24",
+    "time": "02:38:27",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "02",
+    "minute": "38",
+    "second": "27"
+  },
+  {
+    "id": 4907,
+    "heading": "To Hank Smith and those who can't see.",
+    "created": "2001-07-21 10:24:36",
+    "linked_file": null,
+    "hugo": "4907-to-hank-smith-and-those-who-cant-see",
+    "date": "2001-07-21",
+    "time": "10:24:36",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "24",
+    "second": "36"
+  },
+  {
+    "id": 4909,
+    "heading": "who is mr Agnoletto?",
+    "created": "2001-07-23 02:19:12",
+    "linked_file": null,
+    "hugo": "4909-who-is-mr-agnoletto",
+    "date": "2001-07-23",
+    "time": "02:19:12",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "19",
+    "second": "12"
+  },
+  {
+    "id": 4921,
+    "heading": "Legittima difesa ?",
+    "created": "2001-07-21 13:13:58",
+    "linked_file": null,
+    "hugo": "4921-legittima-difesa-",
+    "date": "2001-07-21",
+    "time": "13:13:58",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "13",
+    "second": "58"
+  },
+  {
+    "id": 4922,
+    "heading": "Demonstratie in Amsterdam/ demonstration in Amsterdam",
+    "created": "2001-07-21 12:14:14",
+    "linked_file": null,
+    "hugo": "4922-demonstratie-in-amsterdam-demonstration-in-amsterdam",
+    "date": "2001-07-21",
+    "time": "12:14:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "14",
+    "second": "14"
+  },
+  {
+    "id": 4930,
+    "heading": "Autopsia di Carlo",
+    "created": "2001-07-21 12:46:51",
+    "linked_file": null,
+    "hugo": "4930-autopsia-di-carlo",
+    "date": "2001-07-21",
+    "time": "12:46:51",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "46",
+    "second": "51"
+  },
+  {
+    "id": 4932,
+    "heading": "Comunicato stampa Netstrike",
+    "created": "2001-07-21 10:40:24",
+    "linked_file": null,
+    "hugo": "4932-comunicato-stampa-netstrike",
+    "date": "2001-07-21",
+    "time": "10:40:24",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "40",
+    "second": "24"
+  },
+  {
+    "id": 4950,
+    "heading": "P.za kennedy - moving off: Pic 2",
+    "created": "2001-07-21 11:04:21",
+    "linked_file": "2001/07/car-wreck.jpg",
+    "hugo": "4950-pza-kennedy-moving-off-pic-2",
+    "date": "2001-07-21",
+    "time": "11:04:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "04",
+    "second": "21"
+  },
+  {
+    "id": 4953,
+    "heading": "Carlo morto",
+    "created": "2001-07-22 18:09:09",
+    "linked_file": "2001/07/carlo_giuliani.jpg",
+    "hugo": "4953-carlo-morto",
+    "date": "2001-07-22",
+    "time": "18:09:09",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "09",
+    "second": "09"
+  },
+  {
+    "id": 4958,
+    "heading": "Bloody sidewalks",
+    "created": "2001-07-22 21:17:54",
+    "linked_file": "2001/07/blood.jpg.jpg",
+    "hugo": "4958-bloody-sidewalks",
+    "date": "2001-07-22",
+    "time": "21:17:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "21",
+    "minute": "17",
+    "second": "54"
+  },
+  {
+    "id": 4963,
+    "heading": "P.za Kennedy Bank: pic 3",
+    "created": "2001-07-21 10:59:51",
+    "linked_file": "2001/07/bank-trashed.jpg",
+    "hugo": "4963-pza-kennedy-bank-pic-3",
+    "date": "2001-07-21",
+    "time": "10:59:51",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "59",
+    "second": "51"
+  },
+  {
+    "id": 4978,
+    "heading": "WATER FINISHED AT CARLINI !!",
+    "created": "2001-07-21 11:26:22",
+    "linked_file": null,
+    "hugo": "4978-water-finished-at-carlini-",
+    "date": "2001-07-21",
+    "time": "11:26:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "26",
+    "second": "22"
+  },
+  {
+    "id": 4989,
+    "heading": "RI:Evoluzione",
+    "created": "2001-07-21 11:43:49",
+    "linked_file": null,
+    "hugo": "4989-rievoluzione",
+    "date": "2001-07-21",
+    "time": "11:43:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "43",
+    "second": "49"
+  },
+  {
+    "id": 4990,
+    "heading": "wondering....",
+    "created": "2001-07-21 13:13:49",
+    "linked_file": null,
+    "hugo": "4990-wondering",
+    "date": "2001-07-21",
+    "time": "13:13:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "13",
+    "second": "49"
+  },
+  {
+    "id": 4992,
+    "heading": "\"World Leaders\" fall for AIDS scam",
+    "created": "2001-07-21 16:08:17",
+    "linked_file": null,
+    "hugo": "4992-world-leaders-fall-for-aids-scam",
+    "date": "2001-07-21",
+    "time": "16:08:17",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "08",
+    "second": "17"
+  },
+  {
+    "id": 4993,
+    "heading": "The cop who shot Carlo",
+    "created": "2001-07-21 14:52:25",
+    "linked_file": null,
+    "hugo": "4993-the-cop-who-shot-carlo",
+    "date": "2001-07-21",
+    "time": "14:52:25",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "52",
+    "second": "25"
+  },
+  {
+    "id": 4998,
+    "heading": "Poem about violence (German)",
+    "created": "2001-07-21 11:52:39",
+    "linked_file": null,
+    "hugo": "4998-poem-about-violence-german",
+    "date": "2001-07-21",
+    "time": "11:52:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "52",
+    "second": "39"
+  },
+  {
+    "id": 5005,
+    "heading": "Germany: Solidarity-Demonstrations for the protesters",
+    "created": "2001-07-21 13:05:59",
+    "linked_file": null,
+    "hugo": "5005-germany-solidaritydemonstrations-for-the-protesters",
+    "date": "2001-07-21",
+    "time": "13:05:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "05",
+    "second": "59"
+  },
+  {
+    "id": 5014,
+    "heading": "http://www.disobey.ca/murder.html",
+    "created": "2001-07-21 12:07:08",
+    "linked_file": "2001/07/image5.jpg",
+    "hugo": "5014-httpwwwdisobeycamurderhtml",
+    "date": "2001-07-21",
+    "time": "12:07:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "07",
+    "second": "08"
+  },
+  {
+    "id": 5044,
+    "heading": "solidarity in austria",
+    "created": "2001-07-21 12:57:55",
+    "linked_file": null,
+    "hugo": "5044-solidarity-in-austria",
+    "date": "2001-07-21",
+    "time": "12:57:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "57",
+    "second": "55"
+  },
+  {
+    "id": 5048,
+    "heading": "demo in barcelona. genoa solidarity",
+    "created": "2001-07-21 12:42:50",
+    "linked_file": "2001/07/itaind1xvet3y.jpg",
+    "hugo": "5048-demo-in-barcelona-genoa-solidarity",
+    "date": "2001-07-21",
+    "time": "12:42:50",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "42",
+    "second": "50"
+  },
+  {
+    "id": 5052,
+    "heading": "demo in barcelona. genoa solidarity",
+    "created": "2001-07-21 19:52:29",
+    "linked_file": "2001/07/itaind3.jpg",
+    "hugo": "5052-demo-in-barcelona-genoa-solidarity",
+    "date": "2001-07-21",
+    "time": "19:52:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "52",
+    "second": "29"
+  },
+  {
+    "id": 5054,
+    "heading": "demo in barcelona. genoa solidarity",
+    "created": "2001-07-21 12:43:06",
+    "linked_file": "2001/07/itaind4.jpg",
+    "hugo": "5054-demo-in-barcelona-genoa-solidarity",
+    "date": "2001-07-21",
+    "time": "12:43:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "43",
+    "second": "06"
+  },
+  {
+    "id": 5072,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 13:00:27",
+    "linked_file": null,
+    "hugo": "5072-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "13:00:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "00",
+    "second": "27"
+  },
+  {
+    "id": 5073,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 13:00:55",
+    "linked_file": null,
+    "hugo": "5073-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "13:00:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "00",
+    "second": "55"
+  },
+  {
+    "id": 5074,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 15:14:24",
+    "linked_file": null,
+    "hugo": "5074-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "15:14:24",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "14",
+    "second": "24"
+  },
+  {
+    "id": 5075,
+    "heading": "handout for solidarity-actions available!",
+    "created": "2001-07-21 13:01:24",
+    "linked_file": null,
+    "hugo": "5075-handout-for-solidarityactions-available",
+    "date": "2001-07-21",
+    "time": "13:01:24",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "01",
+    "second": "24"
+  },
+  {
+    "id": 5082,
+    "heading": "Statement by Black Block activists",
+    "created": "2001-07-31 08:11:30",
+    "linked_file": null,
+    "hugo": "5082-statement-by-black-block-activists",
+    "date": "2001-07-31",
+    "time": "08:11:30",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "11",
+    "second": "30"
+  },
+  {
+    "id": 5093,
+    "heading": "Flashpoints Radio interview w Global Exchange's Kevin Danaher in Genoa",
+    "created": "2001-07-21 13:19:57",
+    "linked_file": null,
+    "hugo": "5093-flashpoints-radio-interview-w-global-exchanges-kevin-danaher-in-genoa",
+    "date": "2001-07-21",
+    "time": "13:19:57",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "19",
+    "second": "57"
+  },
+  {
+    "id": 5096,
+    "heading": "The Holographic Tech-Body",
+    "created": "2001-07-21 13:21:59",
+    "linked_file": null,
+    "hugo": "5096-the-holographic-techbody",
+    "date": "2001-07-21",
+    "time": "13:21:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "21",
+    "second": "59"
+  },
+  {
+    "id": 5102,
+    "heading": "targets for solidarity demos",
+    "created": "2001-07-21 13:31:11",
+    "linked_file": null,
+    "hugo": "5102-targets-for-solidarity-demos",
+    "date": "2001-07-21",
+    "time": "13:31:11",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "31",
+    "second": "11"
+  },
+  {
+    "id": 5106,
+    "heading": "ARE YOU LIARS WORLD LEADERS?",
+    "created": "2001-07-22 09:30:16",
+    "linked_file": "2001/07/_1400627_sheep1.jpg",
+    "hugo": "5106-are-you-liars-world-leaders",
+    "date": "2001-07-22",
+    "time": "09:30:16",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "30",
+    "second": "16"
+  },
+  {
+    "id": 5107,
+    "heading": "lets find the murder - request for help",
+    "created": "2001-07-23 09:07:09",
+    "linked_file": null,
+    "hugo": "5107-lets-find-the-murder-request-for-help",
+    "date": "2001-07-23",
+    "time": "09:07:09",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "07",
+    "second": "09"
+  },
+  {
+    "id": 5110,
+    "heading": "Birthdata of Carlo Giuliani",
+    "created": "2001-07-21 14:59:27",
+    "linked_file": null,
+    "hugo": "5110-birthdata-of-carlo-giuliani",
+    "date": "2001-07-21",
+    "time": "14:59:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "59",
+    "second": "27"
+  },
+  {
+    "id": 5112,
+    "heading": "State terror in Genoa --maybe final moment of indymedia",
+    "created": "2001-07-21 20:18:32",
+    "linked_file": null,
+    "hugo": "5112-state-terror-in-genoa-maybe-final-moment-of-indymedia",
+    "date": "2001-07-21",
+    "time": "20:18:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "18",
+    "second": "32"
+  },
+  {
+    "id": 5126,
+    "heading": "l'impero colpisce ancora",
+    "created": "2001-07-21 14:20:40",
+    "linked_file": null,
+    "hugo": "5126-limpero-colpisce-ancora",
+    "date": "2001-07-21",
+    "time": "14:20:40",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "20",
+    "second": "40"
+  },
+  {
+    "id": 5128,
+    "heading": "police arrested people near mediacentre",
+    "created": "2001-07-21 16:05:47",
+    "linked_file": null,
+    "hugo": "5128-police-arrested-people-near-mediacentre",
+    "date": "2001-07-21",
+    "time": "16:05:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "05",
+    "second": "47"
+  },
+  {
+    "id": 5130,
+    "heading": "tre arresti in pizzeria sotto il media center",
+    "created": "2001-07-21 14:03:47",
+    "linked_file": null,
+    "hugo": "5130-tre-arresti-in-pizzeria-sotto-il-media-center",
+    "date": "2001-07-21",
+    "time": "14:03:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "03",
+    "second": "47"
+  },
+  {
+    "id": 5137,
+    "heading": "makaya 1/2",
+    "created": "2001-07-21 15:31:15",
+    "linked_file": null,
+    "hugo": "5137-makaya-12",
+    "date": "2001-07-21",
+    "time": "15:31:15",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "31",
+    "second": "15"
+  },
+  {
+    "id": 5147,
+    "heading": "CGT Must Call General Strike",
+    "created": "2001-07-21 14:30:16",
+    "linked_file": "2001/07/italgenstr.txt",
+    "hugo": "5147-cgt-must-call-general-strike",
+    "date": "2001-07-21",
+    "time": "14:30:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "30",
+    "second": "16"
+  },
+  {
+    "id": 5152,
+    "heading": "Why I Hate Global Capitalism",
+    "created": "2001-07-21 14:50:27",
+    "linked_file": null,
+    "hugo": "5152-why-i-hate-global-capitalism",
+    "date": "2001-07-21",
+    "time": "14:50:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "50",
+    "second": "27"
+  },
+  {
+    "id": 5153,
+    "heading": "Solidarity in Switzerland",
+    "created": "2001-07-21 14:28:03",
+    "linked_file": null,
+    "hugo": "5153-solidarity-in-switzerland",
+    "date": "2001-07-21",
+    "time": "14:28:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "28",
+    "second": "03"
+  },
+  {
+    "id": 5160,
+    "heading": "Questions anout recent deaths in Genova from Córdoba - Argentina",
+    "created": "2001-07-21 14:54:28",
+    "linked_file": null,
+    "hugo": "5160-questions-anout-recent-deaths-in-genova-from-cordoba-argentina",
+    "date": "2001-07-21",
+    "time": "14:54:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "54",
+    "second": "28"
+  },
+  {
+    "id": 5169,
+    "heading": "\"How Foolish Are You?\"",
+    "created": "2001-07-21 16:37:12",
+    "linked_file": null,
+    "hugo": "5169-how-foolish-are-you",
+    "date": "2001-07-21",
+    "time": "16:37:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "37",
+    "second": "12"
+  },
+  {
+    "id": 5178,
+    "heading": "The Ruling Elite Never Get It",
+    "created": "2001-07-21 17:41:09",
+    "linked_file": null,
+    "hugo": "5178-the-ruling-elite-never-get-it",
+    "date": "2001-07-21",
+    "time": "17:41:09",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "41",
+    "second": "09"
+  },
+  {
+    "id": 5187,
+    "heading": "Solidarity march in Montreal.",
+    "created": "2001-07-21 16:14:48",
+    "linked_file": "2001/07/march_0.jpg",
+    "hugo": "5187-solidarity-march-in-montreal",
+    "date": "2001-07-21",
+    "time": "16:14:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "14",
+    "second": "48"
+  },
+  {
+    "id": 5202,
+    "heading": "Rest In Peace",
+    "created": "2001-07-21 16:01:31",
+    "linked_file": null,
+    "hugo": "5202-rest-in-peace",
+    "date": "2001-07-21",
+    "time": "16:01:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "01",
+    "second": "31"
+  },
+  {
+    "id": 5203,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 23:06:42",
+    "linked_file": null,
+    "hugo": "5203-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "23:06:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "06",
+    "second": "42"
+  },
+  {
+    "id": 5206,
+    "heading": "poetas en todo el mundo",
+    "created": "2001-07-21 15:27:42",
+    "linked_file": null,
+    "hugo": "5206-poetas-en-todo-el-mundo",
+    "date": "2001-07-21",
+    "time": "15:27:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "27",
+    "second": "42"
+  },
+  {
+    "id": 5207,
+    "heading": "\"Love Festivals of Hooterville - Just for You!\"",
+    "created": "2001-07-21 15:31:54",
+    "linked_file": null,
+    "hugo": "5207-love-festivals-of-hooterville-just-for-you",
+    "date": "2001-07-21",
+    "time": "15:31:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "31",
+    "second": "54"
+  },
+  {
+    "id": 5212,
+    "heading": "Pacifism as Pathology(Part 2)...Unity in Struggle",
+    "created": "2001-07-21 15:33:47",
+    "linked_file": null,
+    "hugo": "5212-pacifism-as-pathologypart-2unity-in-struggle",
+    "date": "2001-07-21",
+    "time": "15:33:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "33",
+    "second": "47"
+  },
+  {
+    "id": 5215,
+    "heading": "Information on our Dead Comrades",
+    "created": "2001-07-21 16:55:10",
+    "linked_file": null,
+    "hugo": "5215-information-on-our-dead-comrades",
+    "date": "2001-07-21",
+    "time": "16:55:10",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "55",
+    "second": "10"
+  },
+  {
+    "id": 5219,
+    "heading": "july 21st .... impressions of the riot aftermath",
+    "created": "2001-07-21 17:04:59",
+    "linked_file": "2001/07/yrfva3.txt",
+    "hugo": "5219-july-21st-impressions-of-the-riot-aftermath",
+    "date": "2001-07-21",
+    "time": "17:04:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "04",
+    "second": "59"
+  },
+  {
+    "id": 5221,
+    "heading": "teresa mattei conferenza stampa GSF",
+    "created": "2001-07-21 15:50:49",
+    "linked_file": "2001/07/conferenza_stampa_gsf.rm",
+    "hugo": "5221-teresa-mattei-conferenza-stampa-gsf",
+    "date": "2001-07-21",
+    "time": "15:50:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "50",
+    "second": "49"
+  },
+  {
+    "id": 5229,
+    "heading": "SIAMO ASSEDIATI DALLE GUARDIE",
+    "created": "2001-07-21 16:02:32",
+    "linked_file": null,
+    "hugo": "5229-siamo-assediati-dalle-guardie",
+    "date": "2001-07-21",
+    "time": "16:02:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "02",
+    "second": "32"
+  },
+  {
+    "id": 5233,
+    "heading": "cabinerai outside IMCUK",
+    "created": "2001-07-21 17:48:12",
+    "linked_file": null,
+    "hugo": "5233-cabinerai-outside-imcuk",
+    "date": "2001-07-21",
+    "time": "17:48:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "48",
+    "second": "12"
+  },
+  {
+    "id": 5238,
+    "heading": "polizia a radio gap",
+    "created": "2001-07-21 18:41:11",
+    "linked_file": null,
+    "hugo": "5238-polizia-a-radio-gap",
+    "date": "2001-07-21",
+    "time": "18:41:11",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "41",
+    "second": "11"
+  },
+  {
+    "id": 5241,
+    "heading": "per i NERI",
+    "created": "2001-07-21 18:08:25",
+    "linked_file": null,
+    "hugo": "5241-per-i-neri",
+    "date": "2001-07-21",
+    "time": "18:08:25",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "08",
+    "second": "25"
+  },
+  {
+    "id": 5242,
+    "heading": "\"La Republica\" reports that few dressed as Black Bloc are Cabiniari",
+    "created": "2001-07-21 19:45:06",
+    "linked_file": null,
+    "hugo": "5242-la-republica-reports-that-few-dressed-as-black-bloc-are-cabiniari",
+    "date": "2001-07-21",
+    "time": "19:45:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "45",
+    "second": "06"
+  },
+  {
+    "id": 5248,
+    "heading": "Series of English Language Radio Reports on radio4all.net",
+    "created": "2001-07-21 16:16:12",
+    "linked_file": null,
+    "hugo": "5248-series-of-english-language-radio-reports-on-radio4allnet",
+    "date": "2001-07-21",
+    "time": "16:16:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "16",
+    "second": "12"
+  },
+  {
+    "id": 5251,
+    "heading": "Carabbinieri masked as Black Block",
+    "created": "2001-07-21 17:58:07",
+    "linked_file": null,
+    "hugo": "5251-carabbinieri-masked-as-black-block",
+    "date": "2001-07-21",
+    "time": "17:58:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "58",
+    "second": "07"
+  },
+  {
+    "id": 5252,
+    "heading": "IRRUZIONE DELL POLIZIA AL CENTRO STAMPA",
+    "created": "2001-07-21 16:20:04",
+    "linked_file": null,
+    "hugo": "5252-irruzione-dell-polizia-al-centro-stampa",
+    "date": "2001-07-21",
+    "time": "16:20:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "20",
+    "second": "04"
+  },
+  {
+    "id": 5254,
+    "heading": "Police inside Indymedia and RadioGap",
+    "created": "2001-07-21 16:42:38",
+    "linked_file": null,
+    "hugo": "5254-police-inside-indymedia-and-radiogap",
+    "date": "2001-07-21",
+    "time": "16:42:38",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "42",
+    "second": "38"
+  },
+  {
+    "id": 5258,
+    "heading": "G8: DISINNESCATO PACCO BOMBA; Al centro Leoncavallo di Milano",
+    "created": "2001-07-21 16:25:02",
+    "linked_file": null,
+    "hugo": "5258-g8-disinnescato-pacco-bomba-al-centro-leoncavallo-di-milano",
+    "date": "2001-07-21",
+    "time": "16:25:02",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "25",
+    "second": "02"
+  },
+  {
+    "id": 5260,
+    "heading": "carabinieri start entering school centre !",
+    "created": "2001-07-21 16:58:53",
+    "linked_file": "2001/07/o32nlz.txt",
+    "hugo": "5260-carabinieri-start-entering-school-centre-",
+    "date": "2001-07-21",
+    "time": "16:58:53",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "58",
+    "second": "53"
+  },
+  {
+    "id": 5265,
+    "heading": "Police invade IMC italy - irc log",
+    "created": "2001-07-21 19:46:27",
+    "linked_file": "2001/07/invasion.txt",
+    "hugo": "5265-police-invade-imc-italy-irc-log",
+    "date": "2001-07-21",
+    "time": "19:46:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "46",
+    "second": "27"
+  },
+  {
+    "id": 5273,
+    "heading": "media center: voices under siege",
+    "created": "2001-07-21 17:07:13",
+    "linked_file": null,
+    "hugo": "5273-media-center-voices-under-siege",
+    "date": "2001-07-21",
+    "time": "17:07:13",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "07",
+    "second": "13"
+  },
+  {
+    "id": 5276,
+    "heading": "Police, indymedia and radiogap",
+    "created": "2001-07-21 16:55:56",
+    "linked_file": null,
+    "hugo": "5276-police-indymedia-and-radiogap",
+    "date": "2001-07-21",
+    "time": "16:55:56",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "55",
+    "second": "56"
+  },
+  {
+    "id": 5277,
+    "heading": "GSF HQ raided",
+    "created": "2001-07-21 17:01:02",
+    "linked_file": null,
+    "hugo": "5277-gsf-hq-raided",
+    "date": "2001-07-21",
+    "time": "17:01:02",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "01",
+    "second": "02"
+  },
+  {
+    "id": 5289,
+    "heading": "POLICE RAIDED GSF AND IMC center in via Cesare battisti in genoa",
+    "created": "2001-07-21 17:05:14",
+    "linked_file": null,
+    "hugo": "5289-police-raided-gsf-and-imc-center-in-via-cesare-battisti-in-genoa",
+    "date": "2001-07-21",
+    "time": "17:05:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "05",
+    "second": "14"
+  },
+  {
+    "id": 5291,
+    "heading": "Don't Throw The Radicals Overboard - Toss The Police",
+    "created": "2001-07-21 18:30:07",
+    "linked_file": null,
+    "hugo": "5291-dont-throw-the-radicals-overboard-toss-the-police",
+    "date": "2001-07-21",
+    "time": "18:30:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "30",
+    "second": "07"
+  },
+  {
+    "id": 5293,
+    "heading": "Police wants to take all proofs regarding their actions against the protesters",
+    "created": "2001-07-25 14:49:17",
+    "linked_file": "2001/07/u1xaes.txt",
+    "hugo": "5293-police-wants-to-take-all-proofs-regarding-their-actions-against-the-protesters",
+    "date": "2001-07-25",
+    "time": "14:49:17",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "49",
+    "second": "17"
+  },
+  {
+    "id": 5295,
+    "heading": "RIOT POLICE ENTRA SFONDANDO NELL' INDYMEDIA CENTER",
+    "created": "2001-07-21 17:40:26",
+    "linked_file": null,
+    "hugo": "5295-riot-police-entra-sfondando-nell-indymedia-center",
+    "date": "2001-07-21",
+    "time": "17:40:26",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "40",
+    "second": "26"
+  },
+  {
+    "id": 5306,
+    "heading": "police beat up people opposite imc",
+    "created": "2001-07-21 17:19:54",
+    "linked_file": null,
+    "hugo": "5306-police-beat-up-people-opposite-imc",
+    "date": "2001-07-21",
+    "time": "17:19:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "19",
+    "second": "54"
+  },
+  {
+    "id": 5309,
+    "heading": "Casarini rovina delle tute bianke",
+    "created": "2001-07-21 19:50:30",
+    "linked_file": null,
+    "hugo": "5309-casarini-rovina-delle-tute-bianke",
+    "date": "2001-07-21",
+    "time": "19:50:30",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "50",
+    "second": "30"
+  },
+  {
+    "id": 5312,
+    "heading": "mediacenter",
+    "created": "2001-07-21 18:45:29",
+    "linked_file": null,
+    "hugo": "5312-mediacenter",
+    "date": "2001-07-21",
+    "time": "18:45:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "45",
+    "second": "29"
+  },
+  {
+    "id": 5318,
+    "heading": "Confermo",
+    "created": "2001-07-21 19:06:13",
+    "linked_file": null,
+    "hugo": "5318-confermo",
+    "date": "2001-07-21",
+    "time": "19:06:13",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "06",
+    "second": "13"
+  },
+  {
+    "id": 5320,
+    "heading": "io testimone oggi",
+    "created": "2001-07-21 17:35:40",
+    "linked_file": null,
+    "hugo": "5320-io-testimone-oggi",
+    "date": "2001-07-21",
+    "time": "17:35:40",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "35",
+    "second": "40"
+  },
+  {
+    "id": 5321,
+    "heading": "police left indymedia centre",
+    "created": "2001-07-21 19:22:40",
+    "linked_file": null,
+    "hugo": "5321-police-left-indymedia-centre",
+    "date": "2001-07-21",
+    "time": "19:22:40",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "22",
+    "second": "40"
+  },
+  {
+    "id": 5322,
+    "heading": "news from police in mediacenter",
+    "created": "2001-07-21 17:23:42",
+    "linked_file": null,
+    "hugo": "5322-news-from-police-in-mediacenter",
+    "date": "2001-07-21",
+    "time": "17:23:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "23",
+    "second": "42"
+  },
+  {
+    "id": 5323,
+    "heading": "La polizia ha fatto irruzione nella sede del GSF e di Indymedia in via Cesare Ba",
+    "created": "2001-07-21 18:21:07",
+    "linked_file": null,
+    "hugo": "5323-la-polizia-ha-fatto-irruzione-nella-sede-del-gsf-e-di-indymedia-in-via-cesare-ba",
+    "date": "2001-07-21",
+    "time": "18:21:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "21",
+    "second": "07"
+  },
+  {
+    "id": 5324,
+    "heading": "Be Assured: The Whole World Is Watching Genoa",
+    "created": "2001-07-21 18:45:22",
+    "linked_file": null,
+    "hugo": "5324-be-assured-the-whole-world-is-watching-genoa",
+    "date": "2001-07-21",
+    "time": "18:45:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "45",
+    "second": "22"
+  },
+  {
+    "id": 5325,
+    "heading": "Situation at the IMC",
+    "created": "2001-07-21 23:29:04",
+    "linked_file": null,
+    "hugo": "5325-situation-at-the-imc",
+    "date": "2001-07-21",
+    "time": "23:29:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "29",
+    "second": "04"
+  },
+  {
+    "id": 5330,
+    "heading": "attiviamo subito le reti cittadine",
+    "created": "2001-07-22 02:51:57",
+    "linked_file": null,
+    "hugo": "5330-attiviamo-subito-le-reti-cittadine",
+    "date": "2001-07-22",
+    "time": "02:51:57",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "51",
+    "second": "57"
+  },
+  {
+    "id": 5335,
+    "heading": "RADIO GAP GOTTA LIVE RADIO GAP WILL NEVER DIE",
+    "created": "2001-07-21 19:41:42",
+    "linked_file": null,
+    "hugo": "5335-radio-gap-gotta-live-radio-gap-will-never-die",
+    "date": "2001-07-21",
+    "time": "19:41:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "41",
+    "second": "42"
+  },
+  {
+    "id": 5354,
+    "heading": "Plea for Coverage",
+    "created": "2001-07-22 03:47:22",
+    "linked_file": null,
+    "hugo": "5354-plea-for-coverage",
+    "date": "2001-07-22",
+    "time": "03:47:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "47",
+    "second": "22"
+  },
+  {
+    "id": 5362,
+    "heading": "Call to CGT for General Strike in Italy with World Strike to follow",
+    "created": "2001-07-21 18:07:15",
+    "linked_file": null,
+    "hugo": "5362-call-to-cgt-for-general-strike-in-italy-with-world-strike-to-follow",
+    "date": "2001-07-21",
+    "time": "18:07:15",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "07",
+    "second": "15"
+  },
+  {
+    "id": 5364,
+    "heading": "State Of The World Report",
+    "created": "2001-07-21 19:23:02",
+    "linked_file": "2001/07/israel8.jpg",
+    "hugo": "5364-state-of-the-world-report",
+    "date": "2001-07-21",
+    "time": "19:23:02",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "23",
+    "second": "02"
+  },
+  {
+    "id": 5372,
+    "heading": "photo of Carlo Giuliani and father remembering son",
+    "created": "2001-07-25 09:24:00",
+    "linked_file": "2001/07/cguiliani.jpg",
+    "hugo": "5372-photo-of-carlo-giuliani-and-father-remembering-son",
+    "date": "2001-07-25",
+    "time": "09:24:00",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "24",
+    "second": "00"
+  },
+  {
+    "id": 5375,
+    "heading": "What's happening???",
+    "created": "2001-07-21 19:16:37",
+    "linked_file": null,
+    "hugo": "5375-whats-happening",
+    "date": "2001-07-21",
+    "time": "19:16:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "16",
+    "second": "37"
+  },
+  {
+    "id": 5379,
+    "heading": "irruzione della polizia al media center di ge",
+    "created": "2001-07-21 18:36:47",
+    "linked_file": null,
+    "hugo": "5379-irruzione-della-polizia-al-media-center-di-ge",
+    "date": "2001-07-21",
+    "time": "18:36:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "36",
+    "second": "47"
+  },
+  {
+    "id": 5388,
+    "heading": "radio gap sopravvive",
+    "created": "2001-07-21 18:29:21",
+    "linked_file": null,
+    "hugo": "5388-radio-gap-sopravvive",
+    "date": "2001-07-21",
+    "time": "18:29:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "29",
+    "second": "21"
+  },
+  {
+    "id": 5391,
+    "heading": "photos of BB infiltration",
+    "created": "2001-07-21 19:02:32",
+    "linked_file": null,
+    "hugo": "5391-photos-of-bb-infiltration",
+    "date": "2001-07-21",
+    "time": "19:02:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "02",
+    "second": "32"
+  },
+  {
+    "id": 5396,
+    "heading": "Calmer at the IMC",
+    "created": "2001-07-21 18:46:58",
+    "linked_file": null,
+    "hugo": "5396-calmer-at-the-imc",
+    "date": "2001-07-21",
+    "time": "18:46:58",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "46",
+    "second": "58"
+  },
+  {
+    "id": 5410,
+    "heading": "Pacifism?",
+    "created": "2001-07-21 23:54:06",
+    "linked_file": null,
+    "hugo": "5410-pacifism",
+    "date": "2001-07-21",
+    "time": "23:54:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "54",
+    "second": "06"
+  },
+  {
+    "id": 5415,
+    "heading": "Police Raid GSF, IMC other groups",
+    "created": "2001-07-23 17:16:01",
+    "linked_file": "2001/07/zbvxfq.txt",
+    "hugo": "5415-police-raid-gsf-imc-other-groups",
+    "date": "2001-07-23",
+    "time": "17:16:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "16",
+    "second": "01"
+  },
+  {
+    "id": 5417,
+    "heading": "A  gift for you with thanks to you all for your courage",
+    "created": "2001-07-21 19:26:00",
+    "linked_file": null,
+    "hugo": "5417-a-gift-for-you-with-thanks-to-you-all-for-your-courage",
+    "date": "2001-07-21",
+    "time": "19:26:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "26",
+    "second": "00"
+  },
+  {
+    "id": 5421,
+    "heading": "CASARINI DIMETTITI",
+    "created": "2001-07-21 19:02:11",
+    "linked_file": null,
+    "hugo": "5421-casarini-dimettiti",
+    "date": "2001-07-21",
+    "time": "19:02:11",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "02",
+    "second": "11"
+  },
+  {
+    "id": 5426,
+    "heading": "Request for coverage: What happend to the UPS-truck driver woman?",
+    "created": "2001-07-21 20:11:22",
+    "linked_file": null,
+    "hugo": "5426-request-for-coverage-what-happend-to-the-upstruck-driver-woman",
+    "date": "2001-07-21",
+    "time": "20:11:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "11",
+    "second": "22"
+  },
+  {
+    "id": 5431,
+    "heading": "bbc teletext on the raid on the indymedia building",
+    "created": "2001-07-21 20:01:14",
+    "linked_file": null,
+    "hugo": "5431-bbc-teletext-on-the-raid-on-the-indymedia-building",
+    "date": "2001-07-21",
+    "time": "20:01:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "01",
+    "second": "14"
+  },
+  {
+    "id": 5436,
+    "heading": "ITALIAN MEDIAS NOW ARE NOT TALKING ABOUT INDYMEDIA IRRUPTION!",
+    "created": "2001-07-22 04:52:40",
+    "linked_file": null,
+    "hugo": "5436-italian-medias-now-are-not-talking-about-indymedia-irruption",
+    "date": "2001-07-22",
+    "time": "04:52:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "52",
+    "second": "40"
+  },
+  {
+    "id": 5438,
+    "heading": "DOMENICA 22 DAVANTI ALLE QUESTURE",
+    "created": "2001-07-21 19:27:57",
+    "linked_file": null,
+    "hugo": "5438-domenica-22-davanti-alle-questure",
+    "date": "2001-07-21",
+    "time": "19:27:57",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "27",
+    "second": "57"
+  },
+  {
+    "id": 5439,
+    "heading": "Flashpoints Radio interview w Global Exchange's Kevin Danaher in Genoa",
+    "created": "2001-07-21 22:44:20",
+    "linked_file": null,
+    "hugo": "5439-flashpoints-radio-interview-w-global-exchanges-kevin-danaher-in-genoa",
+    "date": "2001-07-21",
+    "time": "22:44:20",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "44",
+    "second": "20"
+  },
+  {
+    "id": 5444,
+    "heading": "so what?",
+    "created": "2001-07-21 19:34:25",
+    "linked_file": null,
+    "hugo": "5444-so-what",
+    "date": "2001-07-21",
+    "time": "19:34:25",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "34",
+    "second": "25"
+  },
+  {
+    "id": 5457,
+    "heading": "TV camera tossed into burning car (PHOTO)",
+    "created": "2001-07-29 09:13:00",
+    "linked_file": "2001/07/camfire.jpg",
+    "hugo": "5457-tv-camera-tossed-into-burning-car-photo",
+    "date": "2001-07-29",
+    "time": "09:13:00",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "13",
+    "second": "00"
+  },
+  {
+    "id": 5462,
+    "heading": "translation......",
+    "created": "2001-07-21 20:23:15",
+    "linked_file": null,
+    "hugo": "5462-translation",
+    "date": "2001-07-21",
+    "time": "20:23:15",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "23",
+    "second": "15"
+  },
+  {
+    "id": 5466,
+    "heading": "Italian Police Continue In Their Efforts  To Deepen Divisions",
+    "created": "2001-07-21 23:49:05",
+    "linked_file": null,
+    "hugo": "5466-italian-police-continue-in-their-efforts-to-deepen-divisions",
+    "date": "2001-07-21",
+    "time": "23:49:05",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "49",
+    "second": "05"
+  },
+  {
+    "id": 5473,
+    "heading": "Report on BBC",
+    "created": "2001-07-22 09:49:57",
+    "linked_file": null,
+    "hugo": "5473-report-on-bbc",
+    "date": "2001-07-22",
+    "time": "09:49:57",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "49",
+    "second": "57"
+  },
+  {
+    "id": 5475,
+    "heading": "Report on BBC",
+    "created": "2001-07-21 20:50:31",
+    "linked_file": null,
+    "hugo": "5475-report-on-bbc",
+    "date": "2001-07-21",
+    "time": "20:50:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "50",
+    "second": "31"
+  },
+  {
+    "id": 5477,
+    "heading": "Father of dead protester 'sorry' for policeman",
+    "created": "2001-07-22 02:43:34",
+    "linked_file": null,
+    "hugo": "5477-father-of-dead-protester-sorry-for-policeman",
+    "date": "2001-07-22",
+    "time": "02:43:34",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "43",
+    "second": "34"
+  },
+  {
+    "id": 5479,
+    "heading": "A CONFIRMATION",
+    "created": "2001-07-21 21:22:49",
+    "linked_file": null,
+    "hugo": "5479-a-confirmation",
+    "date": "2001-07-21",
+    "time": "21:22:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "21",
+    "minute": "22",
+    "second": "49"
+  },
+  {
+    "id": 5482,
+    "heading": "CHAMADO ANTICAPITALISTA",
+    "created": "2001-07-21 20:25:55",
+    "linked_file": null,
+    "hugo": "5482-chamado-anticapitalista",
+    "date": "2001-07-21",
+    "time": "20:25:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "25",
+    "second": "55"
+  },
+  {
+    "id": 5483,
+    "heading": "Change the website login/pass",
+    "created": "2001-07-21 23:45:16",
+    "linked_file": null,
+    "hugo": "5483-change-the-website-loginpass",
+    "date": "2001-07-21",
+    "time": "23:45:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "45",
+    "second": "16"
+  },
+  {
+    "id": 5485,
+    "heading": "A CONFIRMATION",
+    "created": "2001-07-22 00:17:03",
+    "linked_file": null,
+    "hugo": "5485-a-confirmation",
+    "date": "2001-07-22",
+    "time": "00:17:03",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "17",
+    "second": "03"
+  },
+  {
+    "id": 5487,
+    "heading": "Call to CGT for General Strike in Italy with World Strike to follow \n",
+    "created": "2001-07-22 01:54:53",
+    "linked_file": null,
+    "hugo": "5487-call-to-cgt-for-general-strike-in-italy-with-world-strike-to-follow",
+    "date": "2001-07-22",
+    "time": "01:54:53",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "01",
+    "minute": "54",
+    "second": "53"
+  },
+  {
+    "id": 5488,
+    "heading": "RAID on the indymedia center",
+    "created": "2001-07-21 21:39:41",
+    "linked_file": null,
+    "hugo": "5488-raid-on-the-indymedia-center",
+    "date": "2001-07-21",
+    "time": "21:39:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "21",
+    "minute": "39",
+    "second": "41"
+  },
+  {
+    "id": 55,
+    "heading": "ore 9.30 via indipendenza off limits",
+    "created": "2001-07-22 07:11:27",
+    "linked_file": "2001/07/via35.rm",
+    "hugo": "55-ore-930-via-indipendenza-off-limits",
+    "date": "2001-07-22",
+    "time": "07:11:27",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "11",
+    "second": "27"
+  },
+  {
+    "id": 5507,
+    "heading": "Solidarity Demonstration in Toronto, Canada",
+    "created": "2001-07-21 21:12:12",
+    "linked_file": null,
+    "hugo": "5507-solidarity-demonstration-in-toronto-canada",
+    "date": "2001-07-21",
+    "time": "21:12:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "21",
+    "minute": "12",
+    "second": "12"
+  },
+  {
+    "id": 5533,
+    "heading": "GENOA SOLIDARITY DEMO IN MONTREAL",
+    "created": "2001-07-21 22:12:21",
+    "linked_file": "2001/07/march_1_montreal.jpg",
+    "hugo": "5533-genoa-solidarity-demo-in-montreal",
+    "date": "2001-07-21",
+    "time": "22:12:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "12",
+    "second": "21"
+  },
+  {
+    "id": 5535,
+    "heading": "Genoa. Many eyewitness reports of police raid of Italy Indymedia Center - GSF.",
+    "created": "2001-07-21 22:14:34",
+    "linked_file": null,
+    "hugo": "5535-genoa-many-eyewitness-reports-of-police-raid-of-italy-indymedia-center-gsf",
+    "date": "2001-07-21",
+    "time": "22:14:34",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "14",
+    "second": "34"
+  },
+  {
+    "id": 5537,
+    "heading": "you are not alone",
+    "created": "2001-07-21 22:14:47",
+    "linked_file": null,
+    "hugo": "5537-you-are-not-alone",
+    "date": "2001-07-21",
+    "time": "22:14:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "14",
+    "second": "47"
+  },
+  {
+    "id": 5546,
+    "heading": "The Law of the Jungle",
+    "created": "2001-07-21 23:37:01",
+    "linked_file": null,
+    "hugo": "5546-the-law-of-the-jungle",
+    "date": "2001-07-21",
+    "time": "23:37:01",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "37",
+    "second": "01"
+  },
+  {
+    "id": 5547,
+    "heading": "Gothenburg repression story, part I",
+    "created": "2001-07-21 22:43:59",
+    "linked_file": null,
+    "hugo": "5547-gothenburg-repression-story-part-i",
+    "date": "2001-07-21",
+    "time": "22:43:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "43",
+    "second": "59"
+  },
+  {
+    "id": 5548,
+    "heading": "Gothenburg repression story, part II",
+    "created": "2001-07-21 23:44:00",
+    "linked_file": null,
+    "hugo": "5548-gothenburg-repression-story-part-ii",
+    "date": "2001-07-21",
+    "time": "23:44:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "44",
+    "second": "00"
+  },
+  {
+    "id": 5553,
+    "heading": "Anarchist Response to NPR",
+    "created": "2001-07-22 17:24:40",
+    "linked_file": null,
+    "hugo": "5553-anarchist-response-to-npr",
+    "date": "2001-07-22",
+    "time": "17:24:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "17",
+    "minute": "24",
+    "second": "40"
+  },
+  {
+    "id": 5564,
+    "heading": "Eyewitness report on znet",
+    "created": "2001-07-22 01:07:39",
+    "linked_file": null,
+    "hugo": "5564-eyewitness-report-on-znet",
+    "date": "2001-07-22",
+    "time": "01:07:39",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "01",
+    "minute": "07",
+    "second": "39"
+  },
+  {
+    "id": 5568,
+    "heading": "Very confused about everything and everyone.",
+    "created": "2001-07-22 00:43:03",
+    "linked_file": null,
+    "hugo": "5568-very-confused-about-everything-and-everyone",
+    "date": "2001-07-22",
+    "time": "00:43:03",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "43",
+    "second": "03"
+  },
+  {
+    "id": 5569,
+    "heading": "Solidarity in LA",
+    "created": "2001-07-21 23:30:08",
+    "linked_file": null,
+    "hugo": "5569-solidarity-in-la",
+    "date": "2001-07-21",
+    "time": "23:30:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "30",
+    "second": "08"
+  },
+  {
+    "id": 5577,
+    "heading": "THE PEOPLE DECIDED TO STAY PEACEFUL",
+    "created": "2001-07-26 08:09:48",
+    "linked_file": "2001/07/zapatistas_20arrive_20in_20mexico_20city.jpg",
+    "hugo": "5577-the-people-decided-to-stay-peaceful",
+    "date": "2001-07-26",
+    "time": "08:09:48",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "09",
+    "second": "48"
+  },
+  {
+    "id": 5581,
+    "heading": "Three Cheers for IMC Italy",
+    "created": "2001-07-22 01:09:20",
+    "linked_file": null,
+    "hugo": "5581-three-cheers-for-imc-italy",
+    "date": "2001-07-22",
+    "time": "01:09:20",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "01",
+    "minute": "09",
+    "second": "20"
+  },
+  {
+    "id": 5603,
+    "heading": "A tuttti gli avvocati",
+    "created": "2001-07-22 00:29:19",
+    "linked_file": null,
+    "hugo": "5603-a-tuttti-gli-avvocati",
+    "date": "2001-07-22",
+    "time": "00:29:19",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "29",
+    "second": "19"
+  },
+  {
+    "id": 5608,
+    "heading": "Solidaridad!!",
+    "created": "2001-07-22 02:00:28",
+    "linked_file": null,
+    "hugo": "5608-solidaridad",
+    "date": "2001-07-22",
+    "time": "02:00:28",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "00",
+    "second": "28"
+  },
+  {
+    "id": 5617,
+    "heading": "regular carabinieri or commando?",
+    "created": "2001-07-22 04:12:26",
+    "linked_file": null,
+    "hugo": "5617-regular-carabinieri-or-commando",
+    "date": "2001-07-22",
+    "time": "04:12:26",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "12",
+    "second": "26"
+  },
+  {
+    "id": 5619,
+    "heading": "solidarity in MELBOURNE",
+    "created": "2001-07-22 00:47:02",
+    "linked_file": null,
+    "hugo": "5619-solidarity-in-melbourne",
+    "date": "2001-07-22",
+    "time": "00:47:02",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "47",
+    "second": "02"
+  },
+  {
+    "id": 5638,
+    "heading": "E' stato fatto il loro gioco",
+    "created": "2001-07-22 03:51:15",
+    "linked_file": null,
+    "hugo": "5638-e-stato-fatto-il-loro-gioco",
+    "date": "2001-07-22",
+    "time": "03:51:15",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "51",
+    "second": "15"
+  },
+  {
+    "id": 5651,
+    "heading": "photos g8 and solidarity on yahoo.com",
+    "created": "2001-07-22 02:03:56",
+    "linked_file": null,
+    "hugo": "5651-photos-g8-and-solidarity-on-yahoocom",
+    "date": "2001-07-22",
+    "time": "02:03:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "03",
+    "second": "56"
+  },
+  {
+    "id": 5657,
+    "heading": "dealing with trauma",
+    "created": "2001-07-22 02:15:01",
+    "linked_file": null,
+    "hugo": "5657-dealing-with-trauma",
+    "date": "2001-07-22",
+    "time": "02:15:01",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "15",
+    "second": "01"
+  },
+  {
+    "id": 5666,
+    "heading": "Polizeiterror in Genua",
+    "created": "2001-07-22 02:25:22",
+    "linked_file": null,
+    "hugo": "5666-polizeiterror-in-genua",
+    "date": "2001-07-22",
+    "time": "02:25:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "25",
+    "second": "22"
+  },
+  {
+    "id": 5669,
+    "heading": "CNN: \"Minor\" injuries in raid",
+    "created": "2001-07-22 02:51:49",
+    "linked_file": null,
+    "hugo": "5669-cnn-minor-injuries-in-raid",
+    "date": "2001-07-22",
+    "time": "02:51:49",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "51",
+    "second": "49"
+  },
+  {
+    "id": 5677,
+    "heading": "Hardt/Negri on Genoa",
+    "created": "2001-07-22 02:29:54",
+    "linked_file": null,
+    "hugo": "5677-hardtnegri-on-genoa",
+    "date": "2001-07-22",
+    "time": "02:29:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "29",
+    "second": "54"
+  },
+  {
+    "id": 5685,
+    "heading": "PROCESSIONE JUBILEE AUSTRALIA CONTRO DEBITO DELL' TERZO MONDO",
+    "created": "2001-07-22 02:36:23",
+    "linked_file": "2001/07/jubileeprocession.rm",
+    "hugo": "5685-processione-jubilee-australia-contro-debito-dell-terzo-mondo",
+    "date": "2001-07-22",
+    "time": "02:36:23",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "36",
+    "second": "23"
+  },
+  {
+    "id": 5688,
+    "heading": "letter to my dad",
+    "created": "2001-07-22 03:46:29",
+    "linked_file": null,
+    "hugo": "5688-letter-to-my-dad",
+    "date": "2001-07-22",
+    "time": "03:46:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "46",
+    "second": "29"
+  },
+  {
+    "id": 5694,
+    "heading": "This is what capitalist 'democracy' looks like!",
+    "created": "2001-07-22 06:47:10",
+    "linked_file": null,
+    "hugo": "5694-this-is-what-capitalist-democracy-looks-like",
+    "date": "2001-07-22",
+    "time": "06:47:10",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "06",
+    "minute": "47",
+    "second": "10"
+  },
+  {
+    "id": 5695,
+    "heading": "BBC: Not so \"minor\" raid, injuries",
+    "created": "2001-07-22 05:47:42",
+    "linked_file": null,
+    "hugo": "5695-bbc-not-so-minor-raid-injuries",
+    "date": "2001-07-22",
+    "time": "05:47:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "47",
+    "second": "42"
+  },
+  {
+    "id": 5701,
+    "heading": "Getting out of Genova....Rideshare board",
+    "created": "2001-07-22 03:17:52",
+    "linked_file": null,
+    "hugo": "5701-getting-out-of-genovarideshare-board",
+    "date": "2001-07-22",
+    "time": "03:17:52",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "17",
+    "second": "52"
+  },
+  {
+    "id": 5706,
+    "heading": "Pig Head",
+    "created": "2001-07-22 03:57:28",
+    "linked_file": null,
+    "hugo": "5706-pig-head",
+    "date": "2001-07-22",
+    "time": "03:57:28",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "57",
+    "second": "28"
+  },
+  {
+    "id": 5709,
+    "heading": "Pig Head",
+    "created": "2001-07-23 03:58:19",
+    "linked_file": "2001/07/head_pigs.jpg",
+    "hugo": "5709-pig-head",
+    "date": "2001-07-23",
+    "time": "03:58:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "58",
+    "second": "19"
+  },
+  {
+    "id": 5718,
+    "heading": "solidarity action in Tampere, Finland",
+    "created": "2001-07-22 03:45:31",
+    "linked_file": null,
+    "hugo": "5718-solidarity-action-in-tampere-finland",
+    "date": "2001-07-22",
+    "time": "03:45:31",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "45",
+    "second": "31"
+  },
+  {
+    "id": 5727,
+    "heading": "video - police raid GSF/IMC",
+    "created": "2001-07-22 06:40:40",
+    "linked_file": null,
+    "hugo": "5727-video-police-raid-gsfimc",
+    "date": "2001-07-22",
+    "time": "06:40:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "06",
+    "minute": "40",
+    "second": "40"
+  },
+  {
+    "id": 5736,
+    "heading": "Pix and real from german television about GAP and IMC raid",
+    "created": "2001-07-22 04:04:19",
+    "linked_file": null,
+    "hugo": "5736-pix-and-real-from-german-television-about-gap-and-imc-raid",
+    "date": "2001-07-22",
+    "time": "04:04:19",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "04",
+    "second": "19"
+  },
+  {
+    "id": 5742,
+    "heading": "UN SENTITO GRAZIE",
+    "created": "2001-07-23 03:31:37",
+    "linked_file": null,
+    "hugo": "5742-un-sentito-grazie",
+    "date": "2001-07-23",
+    "time": "03:31:37",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "31",
+    "second": "37"
+  },
+  {
+    "id": 5745,
+    "heading": "People needed in climate action camp - NOW!",
+    "created": "2001-07-22 04:42:02",
+    "linked_file": null,
+    "hugo": "5745-people-needed-in-climate-action-camp-now",
+    "date": "2001-07-22",
+    "time": "04:42:02",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "42",
+    "second": "02"
+  },
+  {
+    "id": 5760,
+    "heading": "G8 2002",
+    "created": "2001-07-22 10:28:07",
+    "linked_file": null,
+    "hugo": "5760-g8-2002",
+    "date": "2001-07-22",
+    "time": "10:28:07",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "28",
+    "second": "07"
+  },
+  {
+    "id": 5762,
+    "heading": "xc-999",
+    "created": "2001-07-22 04:41:41",
+    "linked_file": null,
+    "hugo": "5762-xc999",
+    "date": "2001-07-22",
+    "time": "04:41:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "41",
+    "second": "41"
+  },
+  {
+    "id": 5774,
+    "heading": "Another video on GSF & IMC police raid",
+    "created": "2001-07-22 05:05:09",
+    "linked_file": null,
+    "hugo": "5774-another-video-on-gsf-imc-police-raid",
+    "date": "2001-07-22",
+    "time": "05:05:09",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "05",
+    "second": "09"
+  },
+  {
+    "id": 5775,
+    "heading": "GSF Terroristi per Berlusconi",
+    "created": "2001-07-22 10:15:20",
+    "linked_file": null,
+    "hugo": "5775-gsf-terroristi-per-berlusconi",
+    "date": "2001-07-22",
+    "time": "10:15:20",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "15",
+    "second": "20"
+  },
+  {
+    "id": 5777,
+    "heading": "genoa: the true face of global capitalism",
+    "created": "2001-07-22 05:30:53",
+    "linked_file": null,
+    "hugo": "5777-genoa-the-true-face-of-global-capitalism",
+    "date": "2001-07-22",
+    "time": "05:30:53",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "30",
+    "second": "53"
+  },
+  {
+    "id": 5780,
+    "heading": "Help get the truth out",
+    "created": "2001-07-22 05:49:41",
+    "linked_file": "2001/07/genoa_poster9sow0o.gif",
+    "hugo": "5780-help-get-the-truth-out",
+    "date": "2001-07-22",
+    "time": "05:49:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "49",
+    "second": "41"
+  },
+  {
+    "id": 5785,
+    "heading": "Retorn a Barna",
+    "created": "2001-07-22 06:37:42",
+    "linked_file": null,
+    "hugo": "5785-retorn-a-barna",
+    "date": "2001-07-22",
+    "time": "06:37:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "06",
+    "minute": "37",
+    "second": "42"
+  },
+  {
+    "id": 5798,
+    "heading": "LA GENTE Si RENDE REALMENTE CONTO DI QUELLO CHE SUCCEDE?",
+    "created": "2001-07-22 09:23:17",
+    "linked_file": null,
+    "hugo": "5798-la-gente-si-rende-realmente-conto-di-quello-che-succede",
+    "date": "2001-07-22",
+    "time": "09:23:17",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "23",
+    "second": "17"
+  },
+  {
+    "id": 5823,
+    "heading": "detailed eyewitness account of raid on indymedia",
+    "created": "2001-07-22 09:37:22",
+    "linked_file": null,
+    "hugo": "5823-detailed-eyewitness-account-of-raid-on-indymedia",
+    "date": "2001-07-22",
+    "time": "09:37:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "37",
+    "second": "22"
+  },
+  {
+    "id": 5827,
+    "heading": "è disgustosa l'informazione che viene servita sulle reti Mediaset",
+    "created": "2001-07-22 09:06:55",
+    "linked_file": null,
+    "hugo": "5827-e-disgustosa-linformazione-che-viene-servita-sulle-reti-mediaset",
+    "date": "2001-07-22",
+    "time": "09:06:55",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "06",
+    "second": "55"
+  },
+  {
+    "id": 5832,
+    "heading": "Perchè l'attacco al GSF?",
+    "created": "2001-07-22 15:25:56",
+    "linked_file": null,
+    "hugo": "5832-perche-lattacco-al-gsf",
+    "date": "2001-07-22",
+    "time": "15:25:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "25",
+    "second": "56"
+  },
+  {
+    "id": 5837,
+    "heading": "ma non siamo intifada",
+    "created": "2001-07-22 15:27:21",
+    "linked_file": null,
+    "hugo": "5837-ma-non-siamo-intifada",
+    "date": "2001-07-22",
+    "time": "15:27:21",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "27",
+    "second": "21"
+  },
+  {
+    "id": 5846,
+    "heading": "Solidarity to fighters in Genoa",
+    "created": "2001-07-22 07:31:54",
+    "linked_file": null,
+    "hugo": "5846-solidarity-to-fighters-in-genoa",
+    "date": "2001-07-22",
+    "time": "07:31:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "31",
+    "second": "54"
+  },
+  {
+    "id": 5848,
+    "heading": "Black bloc anarchici?",
+    "created": "2001-07-22 10:29:54",
+    "linked_file": null,
+    "hugo": "5848-black-bloc-anarchici",
+    "date": "2001-07-22",
+    "time": "10:29:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "29",
+    "second": "54"
+  },
+  {
+    "id": 5866,
+    "heading": "polizia=black bloc...ora informiamo!!",
+    "created": "2001-07-22 10:41:35",
+    "linked_file": null,
+    "hugo": "5866-poliziablack-blocora-informiamo",
+    "date": "2001-07-22",
+    "time": "10:41:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "41",
+    "second": "35"
+  },
+  {
+    "id": 5871,
+    "heading": "23/7/01 manifestazione davanti ambasciata italiana a Londra",
+    "created": "2001-07-22 08:47:12",
+    "linked_file": null,
+    "hugo": "5871-23701-manifestazione-davanti-ambasciata-italiana-a-londra",
+    "date": "2001-07-22",
+    "time": "08:47:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "47",
+    "second": "12"
+  },
+  {
+    "id": 5875,
+    "heading": "Searches in Milan",
+    "created": "2001-07-22 10:06:16",
+    "linked_file": null,
+    "hugo": "5875-searches-in-milan",
+    "date": "2001-07-22",
+    "time": "10:06:16",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "06",
+    "second": "16"
+  },
+  {
+    "id": 5897,
+    "heading": "Declaration of war in Genoa",
+    "created": "2001-07-26 00:13:18",
+    "linked_file": null,
+    "hugo": "5897-declaration-of-war-in-genoa",
+    "date": "2001-07-26",
+    "time": "00:13:18",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "00",
+    "minute": "13",
+    "second": "18"
+  },
+  {
+    "id": 5919,
+    "heading": "Organizzazione Eventi di Piazza non violenti ma decisi",
+    "created": "2001-07-22 09:14:42",
+    "linked_file": null,
+    "hugo": "5919-organizzazione-eventi-di-piazza-non-violenti-ma-decisi",
+    "date": "2001-07-22",
+    "time": "09:14:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "14",
+    "second": "42"
+  },
+  {
+    "id": 5935,
+    "heading": "why ?",
+    "created": "2001-07-22 10:13:52",
+    "linked_file": null,
+    "hugo": "5935-why-",
+    "date": "2001-07-22",
+    "time": "10:13:52",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "13",
+    "second": "52"
+  },
+  {
+    "id": 5938,
+    "heading": "che fare",
+    "created": "2001-07-22 08:02:44",
+    "linked_file": null,
+    "hugo": "5938-che-fare",
+    "date": "2001-07-22",
+    "time": "08:02:44",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "02",
+    "second": "44"
+  },
+  {
+    "id": 5943,
+    "heading": "repressione a Genova",
+    "created": "2001-07-22 07:53:12",
+    "linked_file": null,
+    "hugo": "5943-repressione-a-genova",
+    "date": "2001-07-22",
+    "time": "07:53:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "53",
+    "second": "12"
+  },
+  {
+    "id": 5944,
+    "heading": "Undercurrents-Media attacked in Genoa",
+    "created": "2001-07-22 08:30:02",
+    "linked_file": null,
+    "hugo": "5944-undercurrentsmedia-attacked-in-genoa",
+    "date": "2001-07-22",
+    "time": "08:30:02",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "30",
+    "second": "02"
+  },
+  {
+    "id": 5946,
+    "heading": "More reports of Italy Indymedia and Genoa Social Forum raid, brutality. LINKS.",
+    "created": "2001-07-22 07:56:58",
+    "linked_file": null,
+    "hugo": "5946-more-reports-of-italy-indymedia-and-genoa-social-forum-raid-brutality-links",
+    "date": "2001-07-22",
+    "time": "07:56:58",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "56",
+    "second": "58"
+  },
+  {
+    "id": 5949,
+    "heading": "Blicero - The Day After (mp3)",
+    "created": "2001-07-22 08:00:18",
+    "linked_file": null,
+    "hugo": "5949-blicero-the-day-after-mp3",
+    "date": "2001-07-22",
+    "time": "08:00:18",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "00",
+    "second": "18"
+  },
+  {
+    "id": 5955,
+    "heading": "YOU ARE A BLACK PIG",
+    "created": "2001-07-22 20:05:42",
+    "linked_file": null,
+    "hugo": "5955-you-are-a-black-pig",
+    "date": "2001-07-22",
+    "time": "20:05:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "20",
+    "minute": "05",
+    "second": "42"
+  },
+  {
+    "id": 5964,
+    "heading": "Ma siomo solo noi utenti a postare? Le notizie da Genova dove sono?",
+    "created": "2001-07-22 12:20:29",
+    "linked_file": null,
+    "hugo": "5964-ma-siomo-solo-noi-utenti-a-postare-le-notizie-da-genova-dove-sono",
+    "date": "2001-07-22",
+    "time": "12:20:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "20",
+    "second": "29"
+  },
+  {
+    "id": 5976,
+    "heading": "solidarity action in front of italian embassy in brussels",
+    "created": "2001-07-22 10:26:23",
+    "linked_file": null,
+    "hugo": "5976-solidarity-action-in-front-of-italian-embassy-in-brussels",
+    "date": "2001-07-22",
+    "time": "10:26:23",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "26",
+    "second": "23"
+  },
+  {
+    "id": 5999,
+    "heading": "Un'impressione tra tante",
+    "created": "2001-07-23 03:42:20",
+    "linked_file": null,
+    "hugo": "5999-unimpressione-tra-tante",
+    "date": "2001-07-23",
+    "time": "03:42:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "42",
+    "second": "20"
+  },
+  {
+    "id": 6005,
+    "heading": "why2?",
+    "created": "2001-07-22 10:28:53",
+    "linked_file": null,
+    "hugo": "6005-why2",
+    "date": "2001-07-22",
+    "time": "10:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 6027,
+    "heading": "Help Save Their Lives - Get Help - No More G8 Martyrs",
+    "created": "2001-07-22 11:48:15",
+    "linked_file": null,
+    "hugo": "6027-help-save-their-lives-get-help-no-more-g8-martyrs",
+    "date": "2001-07-22",
+    "time": "11:48:15",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "11",
+    "minute": "48",
+    "second": "15"
+  },
+  {
+    "id": 6029,
+    "heading": "Bastardi",
+    "created": "2001-07-22 13:46:30",
+    "linked_file": null,
+    "hugo": "6029-bastardi",
+    "date": "2001-07-22",
+    "time": "13:46:30",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "46",
+    "second": "30"
+  },
+  {
+    "id": 6031,
+    "heading": "CASARINI VATTENE",
+    "created": "2001-07-22 16:57:14",
+    "linked_file": null,
+    "hugo": "6031-casarini-vattene",
+    "date": "2001-07-22",
+    "time": "16:57:14",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "16",
+    "minute": "57",
+    "second": "14"
+  },
+  {
+    "id": 6051,
+    "heading": "Virus",
+    "created": "2001-07-22 13:56:41",
+    "linked_file": null,
+    "hugo": "6051-virus",
+    "date": "2001-07-22",
+    "time": "13:56:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "56",
+    "second": "41"
+  },
+  {
+    "id": 6069,
+    "heading": "Mercoledì 18 luglio",
+    "created": "2001-07-22 10:35:49",
+    "linked_file": null,
+    "hugo": "6069-mercoledi-18-luglio",
+    "date": "2001-07-22",
+    "time": "10:35:49",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "35",
+    "second": "49"
+  },
+  {
+    "id": 6076,
+    "heading": "Solidarity actions !planned in Connecticut, New York City",
+    "created": "2001-07-22 13:27:16",
+    "linked_file": null,
+    "hugo": "6076-solidarity-actions-planned-in-connecticut-new-york-city",
+    "date": "2001-07-22",
+    "time": "13:27:16",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "27",
+    "second": "16"
+  },
+  {
+    "id": 6082,
+    "heading": "ma cosa sta' succedendo??",
+    "created": "2001-07-23 04:21:19",
+    "linked_file": null,
+    "hugo": "6082-ma-cosa-sta-succedendo",
+    "date": "2001-07-23",
+    "time": "04:21:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "21",
+    "second": "19"
+  },
+  {
+    "id": 6097,
+    "heading": "MAINSTREAM MEDIA WHORES",
+    "created": "2001-07-28 17:59:25",
+    "linked_file": "2001/07/fox.jpg",
+    "hugo": "6097-mainstream-media-whores",
+    "date": "2001-07-28",
+    "time": "17:59:25",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "59",
+    "second": "25"
+  },
+  {
+    "id": 6108,
+    "heading": "INDISPENSABILI VIDEO E FOTO",
+    "created": "2001-07-22 14:10:23",
+    "linked_file": null,
+    "hugo": "6108-indispensabili-video-e-foto",
+    "date": "2001-07-22",
+    "time": "14:10:23",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "10",
+    "second": "23"
+  },
+  {
+    "id": 6115,
+    "heading": "italian embassies and consulates mailbot",
+    "created": "2001-07-22 13:14:41",
+    "linked_file": null,
+    "hugo": "6115-italian-embassies-and-consulates-mailbot",
+    "date": "2001-07-22",
+    "time": "13:14:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "14",
+    "second": "41"
+  },
+  {
+    "id": 6120,
+    "heading": "GENOVA: CARABINIERI TRAVESTITI DA BLACK BLOC -1",
+    "created": "2001-07-22 13:04:22",
+    "linked_file": null,
+    "hugo": "6120-genova-carabinieri-travestiti-da-black-bloc-1",
+    "date": "2001-07-22",
+    "time": "13:04:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "04",
+    "second": "22"
+  },
+  {
+    "id": 6124,
+    "heading": "Solidarity action, Stockholm.",
+    "created": "2001-07-22 11:55:28",
+    "linked_file": null,
+    "hugo": "6124-solidarity-action-stockholm",
+    "date": "2001-07-22",
+    "time": "11:55:28",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "11",
+    "minute": "55",
+    "second": "28"
+  },
+  {
+    "id": 6125,
+    "heading": "Nothing'll stop us! Brussels december 14: we'll be there!",
+    "created": "2001-07-22 13:23:05",
+    "linked_file": "2001/07/d14_wab_fly_hor.gif",
+    "hugo": "6125-nothingll-stop-us-brussels-december-14-well-be-there",
+    "date": "2001-07-22",
+    "time": "13:23:05",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "23",
+    "second": "05"
+  },
+  {
+    "id": 6127,
+    "heading": "Solidarity demonstration in Amsterdam",
+    "created": "2001-07-23 03:50:52",
+    "linked_file": null,
+    "hugo": "6127-solidarity-demonstration-in-amsterdam",
+    "date": "2001-07-23",
+    "time": "03:50:52",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "50",
+    "second": "52"
+  },
+  {
+    "id": 6144,
+    "heading": "polizia ignora black blocks al campo del \"Valletta Cambiaso\"",
+    "created": "2001-07-22 15:39:43",
+    "linked_file": null,
+    "hugo": "6144-polizia-ignora-black-blocks-al-campo-del-valletta-cambiaso",
+    "date": "2001-07-22",
+    "time": "15:39:43",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "39",
+    "second": "43"
+  },
+  {
+    "id": 6156,
+    "heading": "Global boycott",
+    "created": "2001-07-22 12:51:25",
+    "linked_file": null,
+    "hugo": "6156-global-boycott",
+    "date": "2001-07-22",
+    "time": "12:51:25",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "51",
+    "second": "25"
+  },
+  {
+    "id": 6171,
+    "heading": "Dead Protesters?",
+    "created": "2001-07-22 18:01:33",
+    "linked_file": null,
+    "hugo": "6171-dead-protesters",
+    "date": "2001-07-22",
+    "time": "18:01:33",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "01",
+    "second": "33"
+  },
+  {
+    "id": 6176,
+    "heading": "serviva il sangue su un movimento politico nuovo",
+    "created": "2001-07-22 12:57:41",
+    "linked_file": null,
+    "hugo": "6176-serviva-il-sangue-su-un-movimento-politico-nuovo",
+    "date": "2001-07-22",
+    "time": "12:57:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "57",
+    "second": "41"
+  },
+  {
+    "id": 6181,
+    "heading": "Useful Contacts",
+    "created": "2001-07-22 13:07:15",
+    "linked_file": null,
+    "hugo": "6181-useful-contacts",
+    "date": "2001-07-22",
+    "time": "13:07:15",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "07",
+    "second": "15"
+  },
+  {
+    "id": 6186,
+    "heading": "Il Black block non esiste!! The BB doesn't exist!",
+    "created": "2001-07-22 19:43:10",
+    "linked_file": null,
+    "hugo": "6186-il-black-block-non-esiste-the-bb-doesnt-exist",
+    "date": "2001-07-22",
+    "time": "19:43:10",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "19",
+    "minute": "43",
+    "second": "10"
+  },
+  {
+    "id": 6187,
+    "heading": "Solidarity in many German Cities",
+    "created": "2001-07-24 15:57:26",
+    "linked_file": null,
+    "hugo": "6187-solidarity-in-many-german-cities",
+    "date": "2001-07-24",
+    "time": "15:57:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "57",
+    "second": "26"
+  },
+  {
+    "id": 6188,
+    "heading": "Still here",
+    "created": "2001-07-22 14:40:30",
+    "linked_file": null,
+    "hugo": "6188-still-here",
+    "date": "2001-07-22",
+    "time": "14:40:30",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "40",
+    "second": "30"
+  },
+  {
+    "id": 6190,
+    "heading": "Sir Bob Geldof and Carlo Giuliani",
+    "created": "2001-07-22 16:49:14",
+    "linked_file": null,
+    "hugo": "6190-sir-bob-geldof-and-carlo-giuliani",
+    "date": "2001-07-22",
+    "time": "16:49:14",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "16",
+    "minute": "49",
+    "second": "14"
+  },
+  {
+    "id": 6202,
+    "heading": "pic (1) of solidemo in Amsterdam",
+    "created": "2001-07-22 13:19:39",
+    "linked_file": "2001/07/demo2.jpg",
+    "hugo": "6202-pic-1-of-solidemo-in-amsterdam",
+    "date": "2001-07-22",
+    "time": "13:19:39",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "19",
+    "second": "39"
+  },
+  {
+    "id": 6204,
+    "heading": "pic (2) of solidemo in Amsterdam",
+    "created": "2001-07-22 13:20:12",
+    "linked_file": "2001/07/demo1.jpg",
+    "hugo": "6204-pic-2-of-solidemo-in-amsterdam",
+    "date": "2001-07-22",
+    "time": "13:20:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "20",
+    "second": "12"
+  },
+  {
+    "id": 6210,
+    "heading": "Per scrivere a Scajola",
+    "created": "2001-07-23 05:05:16",
+    "linked_file": null,
+    "hugo": "6210-per-scrivere-a-scajola",
+    "date": "2001-07-23",
+    "time": "05:05:16",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "05",
+    "second": "16"
+  },
+  {
+    "id": 6229,
+    "heading": "A genova c'ero e posso dire",
+    "created": "2001-07-22 18:31:08",
+    "linked_file": null,
+    "hugo": "6229-a-genova-cero-e-posso-dire",
+    "date": "2001-07-22",
+    "time": "18:31:08",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "31",
+    "second": "08"
+  },
+  {
+    "id": 6238,
+    "heading": "Some Pictures from the Manifestation in Berlin",
+    "created": "2001-07-22 13:57:50",
+    "linked_file": "2001/07/4885.jpg",
+    "hugo": "6238-some-pictures-from-the-manifestation-in-berlin",
+    "date": "2001-07-22",
+    "time": "13:57:50",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "57",
+    "second": "50"
+  },
+  {
+    "id": 6239,
+    "heading": "grida di libertà",
+    "created": "2001-07-22 17:26:29",
+    "linked_file": null,
+    "hugo": "6239-grida-di-liberta",
+    "date": "2001-07-22",
+    "time": "17:26:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "17",
+    "minute": "26",
+    "second": "29"
+  },
+  {
+    "id": 6246,
+    "heading": "Scusate...",
+    "created": "2001-07-23 10:17:04",
+    "linked_file": null,
+    "hugo": "6246-scusate",
+    "date": "2001-07-23",
+    "time": "10:17:04",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "17",
+    "second": "04"
+  },
+  {
+    "id": 6257,
+    "heading": "23/7 g8 ASSEMB.CITTAD. ROMA",
+    "created": "2001-07-22 16:28:40",
+    "linked_file": null,
+    "hugo": "6257-237-g8-assembcittad-roma",
+    "date": "2001-07-22",
+    "time": "16:28:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "16",
+    "minute": "28",
+    "second": "40"
+  },
+  {
+    "id": 6260,
+    "heading": "what  I've seen in Genoa",
+    "created": "2001-07-22 20:32:56",
+    "linked_file": null,
+    "hugo": "6260-what-ive-seen-in-genoa",
+    "date": "2001-07-22",
+    "time": "20:32:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "20",
+    "minute": "32",
+    "second": "56"
+  },
+  {
+    "id": 6269,
+    "heading": "Per tutti i testimoni/For all Witness",
+    "created": "2001-07-22 14:43:13",
+    "linked_file": null,
+    "hugo": "6269-per-tutti-i-testimonifor-all-witness",
+    "date": "2001-07-22",
+    "time": "14:43:13",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "43",
+    "second": "13"
+  },
+  {
+    "id": 6276,
+    "heading": "Legittima difesa?",
+    "created": "2001-07-22 15:48:34",
+    "linked_file": null,
+    "hugo": "6276-legittima-difesa",
+    "date": "2001-07-22",
+    "time": "15:48:34",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "48",
+    "second": "34"
+  },
+  {
+    "id": 6278,
+    "heading": "We in Pacific Northwest are demonstrating our solidarity",
+    "created": "2001-07-22 18:08:43",
+    "linked_file": null,
+    "hugo": "6278-we-in-pacific-northwest-are-demonstrating-our-solidarity",
+    "date": "2001-07-22",
+    "time": "18:08:43",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "08",
+    "second": "43"
+  },
+  {
+    "id": 6279,
+    "heading": "Addio Carlo!",
+    "created": "2001-07-28 04:03:54",
+    "linked_file": "2001/07/carlo_giuliani_1.jpg",
+    "hugo": "6279-addio-carlo",
+    "date": "2001-07-28",
+    "time": "04:03:54",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "04",
+    "minute": "03",
+    "second": "54"
+  },
+  {
+    "id": 6282,
+    "heading": "Press Conference, GSF, 22 July 2001",
+    "created": "2001-07-24 10:24:59",
+    "linked_file": null,
+    "hugo": "6282-press-conference-gsf-22-july-2001",
+    "date": "2001-07-24",
+    "time": "10:24:59",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "24",
+    "second": "59"
+  },
+  {
+    "id": 6298,
+    "heading": "MONTANELLI MUORE",
+    "created": "2001-07-23 02:13:54",
+    "linked_file": null,
+    "hugo": "6298-montanelli-muore",
+    "date": "2001-07-23",
+    "time": "02:13:54",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "13",
+    "second": "54"
+  },
+  {
+    "id": 6304,
+    "heading": "Addio Carlo! (2)",
+    "created": "2001-07-30 12:11:59",
+    "linked_file": "2001/07/carlo_giuliani2ofrd1.jpg",
+    "hugo": "6304-addio-carlo-2",
+    "date": "2001-07-30",
+    "time": "12:11:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "11",
+    "second": "59"
+  },
+  {
+    "id": 6309,
+    "heading": "black block, una prolunga per i manganelli",
+    "created": "2001-07-23 00:35:21",
+    "linked_file": null,
+    "hugo": "6309-black-block-una-prolunga-per-i-manganelli",
+    "date": "2001-07-23",
+    "time": "00:35:21",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "00",
+    "minute": "35",
+    "second": "21"
+  },
+  {
+    "id": 6316,
+    "heading": "Malcolm X AND Martin Luther King, hard and soft methods",
+    "created": "2001-07-23 00:04:44",
+    "linked_file": null,
+    "hugo": "6316-malcolm-x-and-martin-luther-king-hard-and-soft-methods",
+    "date": "2001-07-23",
+    "time": "00:04:44",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "00",
+    "minute": "04",
+    "second": "44"
+  },
+  {
+    "id": 6321,
+    "heading": "\"Immigrants, Mad Dogs, and Englishmen\"",
+    "created": "2001-07-22 18:49:35",
+    "linked_file": null,
+    "hugo": "6321-immigrants-mad-dogs-and-englishmen",
+    "date": "2001-07-22",
+    "time": "18:49:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "49",
+    "second": "35"
+  },
+  {
+    "id": 6325,
+    "heading": "Amsterdam demonstration in memory of Carlo",
+    "created": "2001-07-22 19:18:56",
+    "linked_file": null,
+    "hugo": "6325-amsterdam-demonstration-in-memory-of-carlo",
+    "date": "2001-07-22",
+    "time": "19:18:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "19",
+    "minute": "18",
+    "second": "56"
+  },
+  {
+    "id": 6332,
+    "heading": "Altra magra figura di casarini su rai3 :(",
+    "created": "2001-07-23 01:09:18",
+    "linked_file": null,
+    "hugo": "6332-altra-magra-figura-di-casarini-su-rai3-",
+    "date": "2001-07-23",
+    "time": "01:09:18",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "09",
+    "second": "18"
+  },
+  {
+    "id": 6338,
+    "heading": "polizia infiltrata",
+    "created": "2001-07-23 03:53:29",
+    "linked_file": null,
+    "hugo": "6338-polizia-infiltrata",
+    "date": "2001-07-23",
+    "time": "03:53:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "53",
+    "second": "29"
+  },
+  {
+    "id": 6374,
+    "heading": "Demonstration in London",
+    "created": "2001-07-22 17:09:35",
+    "linked_file": null,
+    "hugo": "6374-demonstration-in-london",
+    "date": "2001-07-22",
+    "time": "17:09:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "17",
+    "minute": "09",
+    "second": "35"
+  },
+  {
+    "id": 6378,
+    "heading": "fight Genoa press lies in New York City",
+    "created": "2001-07-23 02:00:37",
+    "linked_file": null,
+    "hugo": "6378-fight-genoa-press-lies-in-new-york-city",
+    "date": "2001-07-23",
+    "time": "02:00:37",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "00",
+    "second": "37"
+  },
+  {
+    "id": 6386,
+    "heading": "what strategy is this?",
+    "created": "2001-07-23 01:39:42",
+    "linked_file": null,
+    "hugo": "6386-what-strategy-is-this",
+    "date": "2001-07-23",
+    "time": "01:39:42",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "39",
+    "second": "42"
+  },
+  {
+    "id": 6388,
+    "heading": "Flood Amnesty International",
+    "created": "2001-07-23 03:17:03",
+    "linked_file": null,
+    "hugo": "6388-flood-amnesty-international",
+    "date": "2001-07-23",
+    "time": "03:17:03",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "17",
+    "second": "03"
+  },
+  {
+    "id": 6424,
+    "heading": "Media Democracy Day (October 19th): International Day of Media Protest",
+    "created": "2001-07-22 20:58:17",
+    "linked_file": null,
+    "hugo": "6424-media-democracy-day-october-19th-international-day-of-media-protest",
+    "date": "2001-07-22",
+    "time": "20:58:17",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "20",
+    "minute": "58",
+    "second": "17"
+  },
+  {
+    "id": 6428,
+    "heading": "SIAMO TUTTI NELLA ZONA ROSSA",
+    "created": "2001-07-23 05:53:20",
+    "linked_file": null,
+    "hugo": "6428-siamo-tutti-nella-zona-rossa",
+    "date": "2001-07-23",
+    "time": "05:53:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "53",
+    "second": "20"
+  },
+  {
+    "id": 6448,
+    "heading": "Protesta automatica email",
+    "created": "2001-07-23 07:14:42",
+    "linked_file": null,
+    "hugo": "6448-protesta-automatica-email",
+    "date": "2001-07-23",
+    "time": "07:14:42",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "14",
+    "second": "42"
+  },
+  {
+    "id": 6480,
+    "heading": "Salo, or the 3 Days of Genoa",
+    "created": "2001-07-23 01:58:48",
+    "linked_file": null,
+    "hugo": "6480-salo-or-the-3-days-of-genoa",
+    "date": "2001-07-23",
+    "time": "01:58:48",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "58",
+    "second": "48"
+  },
+  {
+    "id": 6484,
+    "heading": "New tactics needed in a new situation of propaganda war",
+    "created": "2001-07-22 21:29:25",
+    "linked_file": null,
+    "hugo": "6484-new-tactics-needed-in-a-new-situation-of-propaganda-war",
+    "date": "2001-07-22",
+    "time": "21:29:25",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "21",
+    "minute": "29",
+    "second": "25"
+  },
+  {
+    "id": 6492,
+    "heading": "G8 and Uman Rights",
+    "created": "2001-07-25 03:23:35",
+    "linked_file": "2001/07/diritti_umani.jpg",
+    "hugo": "6492-g8-and-uman-rights",
+    "date": "2001-07-25",
+    "time": "03:23:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "23",
+    "second": "35"
+  },
+  {
+    "id": 6502,
+    "heading": "mail bombing tools",
+    "created": "2001-07-23 02:10:35",
+    "linked_file": null,
+    "hugo": "6502-mail-bombing-tools",
+    "date": "2001-07-23",
+    "time": "02:10:35",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "10",
+    "second": "35"
+  },
+  {
+    "id": 6525,
+    "heading": "Il G8 di Genova - Le radici della violenza",
+    "created": "2001-07-22 22:43:14",
+    "linked_file": null,
+    "hugo": "6525-il-g8-di-genova-le-radici-della-violenza",
+    "date": "2001-07-22",
+    "time": "22:43:14",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "22",
+    "minute": "43",
+    "second": "14"
+  },
+  {
+    "id": 6541,
+    "heading": "Canadian Press/Globe & Mail Fail Miserably",
+    "created": "2001-07-23 03:13:23",
+    "linked_file": null,
+    "hugo": "6541-canadian-pressglobe-mail-fail-miserably",
+    "date": "2001-07-23",
+    "time": "03:13:23",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "13",
+    "second": "23"
+  },
+  {
+    "id": 6555,
+    "heading": "Philadelphia Solidarity Protest",
+    "created": "2001-07-22 23:32:11",
+    "linked_file": null,
+    "hugo": "6555-philadelphia-solidarity-protest",
+    "date": "2001-07-22",
+    "time": "23:32:11",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "23",
+    "minute": "32",
+    "second": "11"
+  },
+  {
+    "id": 6573,
+    "heading": "protest-actions and demonstration in Zurich",
+    "created": "2001-07-23 00:25:24",
+    "linked_file": null,
+    "hugo": "6573-protestactions-and-demonstration-in-zurich",
+    "date": "2001-07-23",
+    "time": "00:25:24",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "00",
+    "minute": "25",
+    "second": "24"
+  },
+  {
+    "id": 6574,
+    "heading": "Genoa-cide :Elegy to Carlos Giovanni Jiulani",
+    "created": "2001-07-23 04:27:07",
+    "linked_file": null,
+    "hugo": "6574-genoacide-elegy-to-carlos-giovanni-jiulani",
+    "date": "2001-07-23",
+    "time": "04:27:07",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "27",
+    "second": "07"
+  },
+  {
+    "id": 6585,
+    "heading": "Abuso di potere dei poliziotti sulle strade di Genova",
+    "created": "2001-07-23 06:22:04",
+    "linked_file": null,
+    "hugo": "6585-abuso-di-potere-dei-poliziotti-sulle-strade-di-genova",
+    "date": "2001-07-23",
+    "time": "06:22:04",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "22",
+    "second": "04"
+  },
+  {
+    "id": 6603,
+    "heading": "Amsterdam protest against G8, capitalism & assassination",
+    "created": "2001-07-23 01:26:46",
+    "linked_file": null,
+    "hugo": "6603-amsterdam-protest-against-g8-capitalism-assassination",
+    "date": "2001-07-23",
+    "time": "01:26:46",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "26",
+    "second": "46"
+  },
+  {
+    "id": 6619,
+    "heading": "Montreal: CLAC Statement on G8 Protests",
+    "created": "2001-07-23 03:50:53",
+    "linked_file": null,
+    "hugo": "6619-montreal-clac-statement-on-g8-protests",
+    "date": "2001-07-23",
+    "time": "03:50:53",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "50",
+    "second": "53"
+  },
+  {
+    "id": 6629,
+    "heading": "Acción de solidaridad en Buenos Aires (español)",
+    "created": "2001-07-23 05:42:42",
+    "linked_file": null,
+    "hugo": "6629-accion-de-solidaridad-en-buenos-aires-espanol",
+    "date": "2001-07-23",
+    "time": "05:42:42",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "42",
+    "second": "42"
+  },
+  {
+    "id": 6632,
+    "heading": "Solidarity actions in Sweden",
+    "created": "2001-07-23 03:13:47",
+    "linked_file": null,
+    "hugo": "6632-solidarity-actions-in-sweden",
+    "date": "2001-07-23",
+    "time": "03:13:47",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "13",
+    "second": "47"
+  },
+  {
+    "id": 6657,
+    "heading": "Un attacco infame",
+    "created": "2001-07-26 02:27:34",
+    "linked_file": "2001/07/jul22_09.jpg",
+    "hugo": "6657-un-attacco-infame",
+    "date": "2001-07-26",
+    "time": "02:27:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "27",
+    "second": "34"
+  },
+  {
+    "id": 6664,
+    "heading": "Da \"La Repubblica\"",
+    "created": "2001-07-23 03:29:27",
+    "linked_file": null,
+    "hugo": "6664-da-la-repubblica",
+    "date": "2001-07-23",
+    "time": "03:29:27",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "29",
+    "second": "27"
+  },
+  {
+    "id": 6665,
+    "heading": "Canada trade union solidarity Genova",
+    "created": "2001-07-23 03:30:01",
+    "linked_file": null,
+    "hugo": "6665-canada-trade-union-solidarity-genova",
+    "date": "2001-07-23",
+    "time": "03:30:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "30",
+    "second": "01"
+  },
+  {
+    "id": 6668,
+    "heading": "Troppo odio per aria",
+    "created": "2001-07-23 16:47:43",
+    "linked_file": null,
+    "hugo": "6668-troppo-odio-per-aria",
+    "date": "2001-07-23",
+    "time": "16:47:43",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "47",
+    "second": "43"
+  },
+  {
+    "id": 6681,
+    "heading": "Birthdata of CArlo Giuliani",
+    "created": "2001-07-29 21:13:43",
+    "linked_file": "2001/07/carlogiuliani.gif",
+    "hugo": "6681-birthdata-of-carlo-giuliani",
+    "date": "2001-07-29",
+    "time": "21:13:43",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "21",
+    "minute": "13",
+    "second": "43"
+  },
+  {
+    "id": 6687,
+    "heading": "vigilare ancora di più",
+    "created": "2001-07-23 05:32:36",
+    "linked_file": null,
+    "hugo": "6687-vigilare-ancora-di-piu",
+    "date": "2001-07-23",
+    "time": "05:32:36",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "32",
+    "second": "36"
+  },
+  {
+    "id": 6688,
+    "heading": "testimonianza di un massacro",
+    "created": "2001-07-23 05:58:12",
+    "linked_file": null,
+    "hugo": "6688-testimonianza-di-un-massacro",
+    "date": "2001-07-23",
+    "time": "05:58:12",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "58",
+    "second": "12"
+  },
+  {
+    "id": 6698,
+    "heading": "SOLIDARITA' CON CARLO GIULIANI DA MELBOURNE, AUSTRALIA",
+    "created": "2001-07-23 04:27:11",
+    "linked_file": null,
+    "hugo": "6698-solidarita-con-carlo-giuliani-da-melbourne-australia",
+    "date": "2001-07-23",
+    "time": "04:27:11",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "27",
+    "second": "11"
+  },
+  {
+    "id": 6699,
+    "heading": "VERGONA!!!",
+    "created": "2001-07-29 09:05:13",
+    "linked_file": "2001/07/jul22_11.jpg",
+    "hugo": "6699-vergona",
+    "date": "2001-07-29",
+    "time": "09:05:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "05",
+    "second": "13"
+  },
+  {
+    "id": 6702,
+    "heading": "Where are details of the woman killed?",
+    "created": "2001-07-23 04:43:22",
+    "linked_file": null,
+    "hugo": "6702-where-are-details-of-the-woman-killed",
+    "date": "2001-07-23",
+    "time": "04:43:22",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "43",
+    "second": "22"
+  },
+  {
+    "id": 6713,
+    "heading": "who r u, man? / e tu chi sei?!?",
+    "created": "2001-07-24 09:55:49",
+    "linked_file": "2001/07/who_r_u.jpg",
+    "hugo": "6713-who-r-u-man-e-tu-chi-sei",
+    "date": "2001-07-24",
+    "time": "09:55:49",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "55",
+    "second": "49"
+  },
+  {
+    "id": 6733,
+    "heading": "sangue e provette",
+    "created": "2001-07-23 06:22:20",
+    "linked_file": null,
+    "hugo": "6733-sangue-e-provette",
+    "date": "2001-07-23",
+    "time": "06:22:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "22",
+    "second": "20"
+  },
+  {
+    "id": 6735,
+    "heading": "fdadf",
+    "created": "2001-07-23 05:28:38",
+    "linked_file": null,
+    "hugo": "6735-fdadf",
+    "date": "2001-07-23",
+    "time": "05:28:38",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "28",
+    "second": "38"
+  },
+  {
+    "id": 6738,
+    "heading": "Dovevano ammazzarvi tutti!!",
+    "created": "2001-07-23 10:22:18",
+    "linked_file": null,
+    "hugo": "6738-dovevano-ammazzarvi-tutti",
+    "date": "2001-07-23",
+    "time": "10:22:18",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "22",
+    "second": "18"
+  },
+  {
+    "id": 6741,
+    "heading": "MANIF A LAUSANNE - 23.07 - Place de la Palud - Lozanne - CH",
+    "created": "2001-07-23 05:34:47",
+    "linked_file": null,
+    "hugo": "6741-manif-a-lausanne-2307-place-de-la-palud-lozanne-ch",
+    "date": "2001-07-23",
+    "time": "05:34:47",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "34",
+    "second": "47"
+  },
+  {
+    "id": 6743,
+    "heading": "preoccupazione",
+    "created": "2001-07-24 08:07:59",
+    "linked_file": null,
+    "hugo": "6743-preoccupazione",
+    "date": "2001-07-24",
+    "time": "08:07:59",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "07",
+    "second": "59"
+  },
+  {
+    "id": 6746,
+    "heading": "The connection between Police & Black Bloc: what a wonderful world...",
+    "created": "2001-07-23 09:53:50",
+    "linked_file": null,
+    "hugo": "6746-the-connection-between-police-black-bloc-what-a-wonderful-world",
+    "date": "2001-07-23",
+    "time": "09:53:50",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "53",
+    "second": "50"
+  },
+  {
+    "id": 6753,
+    "heading": "Pestaggio alla genovese",
+    "created": "2001-07-25 01:40:11",
+    "linked_file": null,
+    "hugo": "6753-pestaggio-alla-genovese",
+    "date": "2001-07-25",
+    "time": "01:40:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "40",
+    "second": "11"
+  },
+  {
+    "id": 6764,
+    "heading": "Even British Nazis in the Fake Black Bloc.",
+    "created": "2001-07-23 06:13:39",
+    "linked_file": null,
+    "hugo": "6764-even-british-nazis-in-the-fake-black-bloc",
+    "date": "2001-07-23",
+    "time": "06:13:39",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "13",
+    "second": "39"
+  },
+  {
+    "id": 6765,
+    "heading": "W la globalizzazione",
+    "created": "2001-07-23 07:10:13",
+    "linked_file": null,
+    "hugo": "6765-w-la-globalizzazione",
+    "date": "2001-07-23",
+    "time": "07:10:13",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "10",
+    "second": "13"
+  },
+  {
+    "id": 6772,
+    "heading": "Non potete nulla",
+    "created": "2001-07-23 17:38:00",
+    "linked_file": null,
+    "hugo": "6772-non-potete-nulla",
+    "date": "2001-07-23",
+    "time": "17:38:00",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "38",
+    "second": "00"
+  },
+  {
+    "id": 6776,
+    "heading": "info",
+    "created": "2001-07-23 09:48:26",
+    "linked_file": null,
+    "hugo": "6776-info",
+    "date": "2001-07-23",
+    "time": "09:48:26",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "48",
+    "second": "26"
+  },
+  {
+    "id": 6777,
+    "heading": "La libertà contro il comunismo",
+    "created": "2001-07-23 08:49:15",
+    "linked_file": null,
+    "hugo": "6777-la-liberta-contro-il-comunismo",
+    "date": "2001-07-23",
+    "time": "08:49:15",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "08",
+    "minute": "49",
+    "second": "15"
+  },
+  {
+    "id": 6781,
+    "heading": "information guerrilla",
+    "created": "2001-07-23 06:09:34",
+    "linked_file": "2001/07/guerrillaw.gif",
+    "hugo": "6781-information-guerrilla",
+    "date": "2001-07-23",
+    "time": "06:09:34",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "09",
+    "second": "34"
+  },
+  {
+    "id": 6788,
+    "heading": "Colpo di Stato",
+    "created": "2001-07-23 09:45:05",
+    "linked_file": null,
+    "hugo": "6788-colpo-di-stato",
+    "date": "2001-07-23",
+    "time": "09:45:05",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "45",
+    "second": "05"
+  },
+  {
+    "id": 6789,
+    "heading": "Figlioli!",
+    "created": "2001-07-25 13:41:49",
+    "linked_file": null,
+    "hugo": "6789-figlioli",
+    "date": "2001-07-25",
+    "time": "13:41:49",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "41",
+    "second": "49"
+  },
+  {
+    "id": 6790,
+    "heading": "Agnoletto vattene!",
+    "created": "2001-07-23 06:46:52",
+    "linked_file": null,
+    "hugo": "6790-agnoletto-vattene",
+    "date": "2001-07-23",
+    "time": "06:46:52",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "46",
+    "second": "52"
+  },
+  {
+    "id": 6791,
+    "heading": "austria soli-actions",
+    "created": "2001-07-23 06:19:49",
+    "linked_file": null,
+    "hugo": "6791-austria-soliactions",
+    "date": "2001-07-23",
+    "time": "06:19:49",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "19",
+    "second": "49"
+  },
+  {
+    "id": 6792,
+    "heading": "I BB peggio dei fascisti",
+    "created": "2001-07-23 09:26:03",
+    "linked_file": null,
+    "hugo": "6792-i-bb-peggio-dei-fascisti",
+    "date": "2001-07-23",
+    "time": "09:26:03",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "26",
+    "second": "03"
+  },
+  {
+    "id": 6823,
+    "heading": "black nazi a Genova",
+    "created": "2001-07-23 08:45:59",
+    "linked_file": null,
+    "hugo": "6823-black-nazi-a-genova",
+    "date": "2001-07-23",
+    "time": "08:45:59",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "08",
+    "minute": "45",
+    "second": "59"
+  },
+  {
+    "id": 6828,
+    "heading": "No alle provocazioni",
+    "created": "2001-07-23 07:57:38",
+    "linked_file": null,
+    "hugo": "6828-no-alle-provocazioni",
+    "date": "2001-07-23",
+    "time": "07:57:38",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "57",
+    "second": "38"
+  },
+  {
+    "id": 6841,
+    "heading": "Scritta appena ieri...",
+    "created": "2001-07-23 19:00:52",
+    "linked_file": null,
+    "hugo": "6841-scritta-appena-ieri",
+    "date": "2001-07-23",
+    "time": "19:00:52",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "00",
+    "second": "52"
+  },
+  {
+    "id": 6843,
+    "heading": "attenti all'anarchico di stato",
+    "created": "2001-07-24 07:14:44",
+    "linked_file": null,
+    "hugo": "6843-attenti-allanarchico-di-stato",
+    "date": "2001-07-24",
+    "time": "07:14:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "14",
+    "second": "44"
+  },
+  {
+    "id": 6847,
+    "heading": "Riot-nazi's in BB",
+    "created": "2001-07-23 07:38:25",
+    "linked_file": null,
+    "hugo": "6847-riotnazis-in-bb",
+    "date": "2001-07-23",
+    "time": "07:38:25",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "38",
+    "second": "25"
+  },
+  {
+    "id": 6848,
+    "heading": "Difendiamo il movimento dalle facili strumentalizzazioni.",
+    "created": "2001-07-23 19:00:54",
+    "linked_file": null,
+    "hugo": "6848-difendiamo-il-movimento-dalle-facili-strumentalizzazioni",
+    "date": "2001-07-23",
+    "time": "19:00:54",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "00",
+    "second": "54"
+  },
+  {
+    "id": 6852,
+    "heading": "Comunicato di una sezione del Blocco Nero [Black Bloc] del 30.11.99 a Seattle",
+    "created": "2001-07-23 09:07:00",
+    "linked_file": null,
+    "hugo": "6852-comunicato-di-una-sezione-del-blocco-nero-black-bloc-del-301199-a-seattle",
+    "date": "2001-07-23",
+    "time": "09:07:00",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "07",
+    "second": "00"
+  },
+  {
+    "id": 6861,
+    "heading": "Ancora arresti in Liguria / New arrests in Liguria",
+    "created": "2001-07-23 07:54:01",
+    "linked_file": null,
+    "hugo": "6861-ancora-arresti-in-liguria-new-arrests-in-liguria",
+    "date": "2001-07-23",
+    "time": "07:54:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "54",
+    "second": "01"
+  },
+  {
+    "id": 6869,
+    "heading": "imc raid ...personal reflections",
+    "created": "2001-07-28 12:47:51",
+    "linked_file": null,
+    "hugo": "6869-imc-raid-personal-reflections",
+    "date": "2001-07-28",
+    "time": "12:47:51",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "47",
+    "second": "51"
+  },
+  {
+    "id": 6874,
+    "heading": "Incriminazione al tribunale dell'Aja",
+    "created": "2001-07-24 05:28:42",
+    "linked_file": null,
+    "hugo": "6874-incriminazione-al-tribunale-dellaja",
+    "date": "2001-07-24",
+    "time": "05:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 6885,
+    "heading": "ATTENTI AL NUOVO FASCISMO",
+    "created": "2001-07-23 14:22:47",
+    "linked_file": null,
+    "hugo": "6885-attenti-al-nuovo-fascismo",
+    "date": "2001-07-23",
+    "time": "14:22:47",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "22",
+    "second": "47"
+  },
+  {
+    "id": 6886,
+    "heading": "Camera e Palazzo Chigi Blindati Per Sit-in Del Gsf",
+    "created": "2001-07-23 09:02:55",
+    "linked_file": null,
+    "hugo": "6886-camera-e-palazzo-chigi-blindati-per-sitin-del-gsf",
+    "date": "2001-07-23",
+    "time": "09:02:55",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "02",
+    "second": "55"
+  },
+  {
+    "id": 6893,
+    "heading": "La pseudo-libertà del gsf",
+    "created": "2001-07-23 16:54:29",
+    "linked_file": null,
+    "hugo": "6893-la-pseudoliberta-del-gsf",
+    "date": "2001-07-23",
+    "time": "16:54:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "54",
+    "second": "29"
+  },
+  {
+    "id": 6901,
+    "heading": "State Of The World Report  July 23,2001",
+    "created": "2001-07-23 09:18:29",
+    "linked_file": "2001/07/nwo.jpg",
+    "hugo": "6901-state-of-the-world-report-july-232001",
+    "date": "2001-07-23",
+    "time": "09:18:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "18",
+    "second": "29"
+  },
+  {
+    "id": 6915,
+    "heading": "schifo",
+    "created": "2001-07-23 10:10:11",
+    "linked_file": null,
+    "hugo": "6915-schifo",
+    "date": "2001-07-23",
+    "time": "10:10:11",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "10",
+    "second": "11"
+  },
+  {
+    "id": 6922,
+    "heading": "Protesta a Roma",
+    "created": "2001-07-23 09:33:38",
+    "linked_file": null,
+    "hugo": "6922-protesta-a-roma",
+    "date": "2001-07-23",
+    "time": "09:33:38",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "33",
+    "second": "38"
+  },
+  {
+    "id": 6937,
+    "heading": "MARTEDI24 protesta a FIRENZE",
+    "created": "2001-07-23 10:25:33",
+    "linked_file": null,
+    "hugo": "6937-martedi24-protesta-a-firenze",
+    "date": "2001-07-23",
+    "time": "10:25:33",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "25",
+    "second": "33"
+  },
+  {
+    "id": 6964,
+    "heading": "ciò che ho visto",
+    "created": "2001-07-23 11:08:40",
+    "linked_file": null,
+    "hugo": "6964-cio-che-ho-visto",
+    "date": "2001-07-23",
+    "time": "11:08:40",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "08",
+    "second": "40"
+  },
+  {
+    "id": 6967,
+    "heading": "Don't Let Them Reverse Our Momentum",
+    "created": "2001-07-27 13:42:58",
+    "linked_file": null,
+    "hugo": "6967-dont-let-them-reverse-our-momentum",
+    "date": "2001-07-27",
+    "time": "13:42:58",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "13",
+    "minute": "42",
+    "second": "58"
+  },
+  {
+    "id": 6970,
+    "heading": "comportamento esemplare",
+    "created": "2001-07-23 10:26:55",
+    "linked_file": "2001/07/massacro4.jpg",
+    "hugo": "6970-comportamento-esemplare",
+    "date": "2001-07-23",
+    "time": "10:26:55",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "26",
+    "second": "55"
+  },
+  {
+    "id": 6973,
+    "heading": "from mexico saludos combativos",
+    "created": "2001-07-23 10:31:07",
+    "linked_file": null,
+    "hugo": "6973-from-mexico-saludos-combativos",
+    "date": "2001-07-23",
+    "time": "10:31:07",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "31",
+    "second": "07"
+  },
+  {
+    "id": 6974,
+    "heading": "I fatti e la storia - Facts and history.",
+    "created": "2001-07-24 06:36:38",
+    "linked_file": null,
+    "hugo": "6974-i-fatti-e-la-storia-facts-and-history",
+    "date": "2001-07-24",
+    "time": "06:36:38",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "36",
+    "second": "38"
+  },
+  {
+    "id": 6976,
+    "heading": "Critica Costruttiva",
+    "created": "2001-07-23 16:59:54",
+    "linked_file": null,
+    "hugo": "6976-critica-costruttiva",
+    "date": "2001-07-23",
+    "time": "16:59:54",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "59",
+    "second": "54"
+  },
+  {
+    "id": 6980,
+    "heading": "Genova: photos I made",
+    "created": "2001-07-23 11:37:41",
+    "linked_file": null,
+    "hugo": "6980-genova-photos-i-made",
+    "date": "2001-07-23",
+    "time": "11:37:41",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "37",
+    "second": "41"
+  },
+  {
+    "id": 6981,
+    "heading": "comportamento esemplare:2",
+    "created": "2001-07-23 15:42:14",
+    "linked_file": "2001/07/1.jpg",
+    "hugo": "6981-comportamento-esemplare2",
+    "date": "2001-07-23",
+    "time": "15:42:14",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "42",
+    "second": "14"
+  },
+  {
+    "id": 6982,
+    "heading": "comportamento esemplare:3",
+    "created": "2001-07-24 03:42:38",
+    "linked_file": "2001/07/2.jpg",
+    "hugo": "6982-comportamento-esemplare3",
+    "date": "2001-07-24",
+    "time": "03:42:38",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "42",
+    "second": "38"
+  },
+  {
+    "id": 6983,
+    "heading": "comportamento esemplare:4",
+    "created": "2001-07-23 11:26:01",
+    "linked_file": "2001/07/3.jpg",
+    "hugo": "6983-comportamento-esemplare4",
+    "date": "2001-07-23",
+    "time": "11:26:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "26",
+    "second": "01"
+  },
+  {
+    "id": 6991,
+    "heading": "INIZIATO IL SIT-IN DAVANTI A UN PALAZZO CHIGI BLINDATO",
+    "created": "2001-07-23 11:38:33",
+    "linked_file": null,
+    "hugo": "6991-iniziato-il-sitin-davanti-a-un-palazzo-chigi-blindato",
+    "date": "2001-07-23",
+    "time": "11:38:33",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "38",
+    "second": "33"
+  },
+  {
+    "id": 7005,
+    "heading": "Serious Disturbance at Italian Consulate in Manchester, UK",
+    "created": "2001-07-24 03:12:00",
+    "linked_file": null,
+    "hugo": "7005-serious-disturbance-at-italian-consulate-in-manchester-uk",
+    "date": "2001-07-24",
+    "time": "03:12:00",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "12",
+    "second": "00"
+  },
+  {
+    "id": 7008,
+    "heading": "G8 insanguinato",
+    "created": "2001-07-23 18:23:23",
+    "linked_file": null,
+    "hugo": "7008-g8-insanguinato",
+    "date": "2001-07-23",
+    "time": "18:23:23",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "23",
+    "second": "23"
+  },
+  {
+    "id": 7011,
+    "heading": "Genova 21/7: polizia criminale",
+    "created": "2001-07-23 15:03:25",
+    "linked_file": null,
+    "hugo": "7011-genova-217-polizia-criminale",
+    "date": "2001-07-23",
+    "time": "15:03:25",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "03",
+    "second": "25"
+  },
+  {
+    "id": 7014,
+    "heading": "Tute nere e conniventi CRIMINALI",
+    "created": "2001-07-23 18:29:07",
+    "linked_file": null,
+    "hugo": "7014-tute-nere-e-conniventi-criminali",
+    "date": "2001-07-23",
+    "time": "18:29:07",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "29",
+    "second": "07"
+  },
+  {
+    "id": 7016,
+    "heading": "24 luglio presidio di protesta davanti al consolato d'Italia a Lugano CH",
+    "created": "2001-07-24 03:10:11",
+    "linked_file": null,
+    "hugo": "7016-24-luglio-presidio-di-protesta-davanti-al-consolato-ditalia-a-lugano-ch",
+    "date": "2001-07-24",
+    "time": "03:10:11",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "10",
+    "second": "11"
+  },
+  {
+    "id": 7025,
+    "heading": "Solidarity demo with Genoa against the G-8, Montreal",
+    "created": "2001-07-23 13:20:48",
+    "linked_file": null,
+    "hugo": "7025-solidarity-demo-with-genoa-against-the-g8-montreal",
+    "date": "2001-07-23",
+    "time": "13:20:48",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "13",
+    "minute": "20",
+    "second": "48"
+  },
+  {
+    "id": 7037,
+    "heading": "AS THE VENEER OF DEMOCRACY STARTS TO FADE",
+    "created": "2001-07-23 17:15:10",
+    "linked_file": "2001/07/polattack.jpg",
+    "hugo": "7037-as-the-veneer-of-democracy-starts-to-fade",
+    "date": "2001-07-23",
+    "time": "17:15:10",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "15",
+    "second": "10"
+  },
+  {
+    "id": 7038,
+    "heading": "ASSEMBLEA PUBBLICA A MILANO 24/7/01",
+    "created": "2001-07-23 20:45:04",
+    "linked_file": null,
+    "hugo": "7038-assemblea-pubblica-a-milano-24701",
+    "date": "2001-07-23",
+    "time": "20:45:04",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "45",
+    "second": "04"
+  },
+  {
+    "id": 7039,
+    "heading": "unbelievable 48 hours",
+    "created": "2001-07-23 18:26:40",
+    "linked_file": null,
+    "hugo": "7039-unbelievable-48-hours",
+    "date": "2001-07-23",
+    "time": "18:26:40",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "26",
+    "second": "40"
+  },
+  {
+    "id": 7048,
+    "heading": "Protestors' Outrage Over Shooting Death Is Greeted with a Locked Door at Italian",
+    "created": "2001-07-23 14:39:41",
+    "linked_file": null,
+    "hugo": "7048-protestors-outrage-over-shooting-death-is-greeted-with-a-locked-door-at-italian",
+    "date": "2001-07-23",
+    "time": "14:39:41",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "39",
+    "second": "41"
+  },
+  {
+    "id": 7049,
+    "heading": "Genoa - Solidarity in Brussels (23.07) [pictures]",
+    "created": "2001-07-23 14:40:13",
+    "linked_file": "2001/07/index.htm",
+    "hugo": "7049-genoa-solidarity-in-brussels-2307-pictures",
+    "date": "2001-07-23",
+    "time": "14:40:13",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "40",
+    "second": "13"
+  },
+  {
+    "id": 7052,
+    "heading": "A call for testimonials and volunteers",
+    "created": "2001-07-23 14:41:56",
+    "linked_file": null,
+    "hugo": "7052-a-call-for-testimonials-and-volunteers",
+    "date": "2001-07-23",
+    "time": "14:41:56",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "41",
+    "second": "56"
+  },
+  {
+    "id": 7063,
+    "heading": "Leiden, The Netherlands, remembers Carlo Giuliani",
+    "created": "2001-07-23 15:44:10",
+    "linked_file": null,
+    "hugo": "7063-leiden-the-netherlands-remembers-carlo-giuliani",
+    "date": "2001-07-23",
+    "time": "15:44:10",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "44",
+    "second": "10"
+  },
+  {
+    "id": 7067,
+    "heading": "mail di  stefano agnoletto, fratello di vittorio",
+    "created": "2001-07-24 03:03:32",
+    "linked_file": null,
+    "hugo": "7067-mail-di-stefano-agnoletto-fratello-di-vittorio",
+    "date": "2001-07-24",
+    "time": "03:03:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "03",
+    "second": "32"
+  },
+  {
+    "id": 7071,
+    "heading": "Montréal: Déclaration de la CLAC -- G8 Gênes (français)",
+    "created": "2001-07-23 15:22:09",
+    "linked_file": null,
+    "hugo": "7071-montreal-declaration-de-la-clac-g8-genes-francais",
+    "date": "2001-07-23",
+    "time": "15:22:09",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "22",
+    "second": "09"
+  },
+  {
+    "id": 7073,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA, O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-23 19:13:08",
+    "linked_file": null,
+    "hugo": "7073-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-23",
+    "time": "19:13:08",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "13",
+    "second": "08"
+  },
+  {
+    "id": 7080,
+    "heading": "Photos of Fascist action",
+    "created": "2001-07-30 06:39:50",
+    "linked_file": "2001/07/italy_blood_floors.jpg",
+    "hugo": "7080-photos-of-fascist-action",
+    "date": "2001-07-30",
+    "time": "06:39:50",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "39",
+    "second": "50"
+  },
+  {
+    "id": 7086,
+    "heading": "Solidarity/solidaritá in Norway",
+    "created": "2001-07-23 15:55:56",
+    "linked_file": null,
+    "hugo": "7086-solidaritysolidarita-in-norway",
+    "date": "2001-07-23",
+    "time": "15:55:56",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "55",
+    "second": "56"
+  },
+  {
+    "id": 7088,
+    "heading": "Solidarity actions in Poland",
+    "created": "2001-07-31 08:06:34",
+    "linked_file": "2001/07/antyglobalist.jpg",
+    "hugo": "7088-solidarity-actions-in-poland",
+    "date": "2001-07-31",
+    "time": "08:06:34",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "06",
+    "second": "34"
+  },
+  {
+    "id": 7092,
+    "heading": "IMC Statement on Genoa Police Raid",
+    "created": "2001-07-23 18:43:34",
+    "linked_file": null,
+    "hugo": "7092-imc-statement-on-genoa-police-raid",
+    "date": "2001-07-23",
+    "time": "18:43:34",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "43",
+    "second": "34"
+  },
+  {
+    "id": 7093,
+    "heading": "Toronto Solidarity rallies",
+    "created": "2001-07-23 17:23:31",
+    "linked_file": null,
+    "hugo": "7093-toronto-solidarity-rallies",
+    "date": "2001-07-23",
+    "time": "17:23:31",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "23",
+    "second": "31"
+  },
+  {
+    "id": 7138,
+    "heading": "Barricades in Genoa: Up Against the G8",
+    "created": "2001-07-23 18:38:29",
+    "linked_file": null,
+    "hugo": "7138-barricades-in-genoa-up-against-the-g8",
+    "date": "2001-07-23",
+    "time": "18:38:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "38",
+    "second": "29"
+  },
+  {
+    "id": 7140,
+    "heading": "250 or More Show Up for Genoa Solidarity in Toronto",
+    "created": "2001-07-23 17:30:22",
+    "linked_file": "2001/07/crowdiuho8y.jpg",
+    "hugo": "7140-250-or-more-show-up-for-genoa-solidarity-in-toronto",
+    "date": "2001-07-23",
+    "time": "17:30:22",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "30",
+    "second": "22"
+  },
+  {
+    "id": 7144,
+    "heading": "BE THE MEDIA: diffondi anche TU la VERITA'",
+    "created": "2001-07-23 18:07:46",
+    "linked_file": null,
+    "hugo": "7144-be-the-media-diffondi-anche-tu-la-verita",
+    "date": "2001-07-23",
+    "time": "18:07:46",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "07",
+    "second": "46"
+  },
+  {
+    "id": 7146,
+    "heading": "what group was...",
+    "created": "2001-07-23 18:30:49",
+    "linked_file": null,
+    "hugo": "7146-what-group-was",
+    "date": "2001-07-23",
+    "time": "18:30:49",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "30",
+    "second": "49"
+  },
+  {
+    "id": 7153,
+    "heading": "Campagna Information Guerrilla",
+    "created": "2001-07-23 18:12:41",
+    "linked_file": "2001/07/guerrillaxw9uir.gif",
+    "hugo": "7153-campagna-information-guerrilla",
+    "date": "2001-07-23",
+    "time": "18:12:41",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "12",
+    "second": "41"
+  },
+  {
+    "id": 7159,
+    "heading": "MIDNIGHT BULLSHITS - STRONZATE DI MEZZANOTTE",
+    "created": "2001-07-24 04:01:26",
+    "linked_file": null,
+    "hugo": "7159-midnight-bullshits-stronzate-di-mezzanotte",
+    "date": "2001-07-24",
+    "time": "04:01:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "01",
+    "second": "26"
+  },
+  {
+    "id": 7162,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-23 18:28:43",
+    "linked_file": "2001/07/dsc00003.jpg",
+    "hugo": "7162-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-23",
+    "time": "18:28:43",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "28",
+    "second": "43"
+  },
+  {
+    "id": 7165,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-24 04:28:20",
+    "linked_file": "2001/07/dsc00005.jpg",
+    "hugo": "7165-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-24",
+    "time": "04:28:20",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "28",
+    "second": "20"
+  },
+  {
+    "id": 7168,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-23 18:34:59",
+    "linked_file": "2001/07/dsc00008.jpg",
+    "hugo": "7168-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-23",
+    "time": "18:34:59",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "34",
+    "second": "59"
+  },
+  {
+    "id": 7169,
+    "heading": "Ottawa Solidarity Action",
+    "created": "2001-07-23 18:35:00",
+    "linked_file": null,
+    "hugo": "7169-ottawa-solidarity-action",
+    "date": "2001-07-23",
+    "time": "18:35:00",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "35",
+    "second": "00"
+  },
+  {
+    "id": 7171,
+    "heading": "rally in Portland, OR gets chaotic",
+    "created": "2001-07-23 18:37:14",
+    "linked_file": null,
+    "hugo": "7171-rally-in-portland-or-gets-chaotic",
+    "date": "2001-07-23",
+    "time": "18:37:14",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "37",
+    "second": "14"
+  },
+  {
+    "id": 7173,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-23 18:55:58",
+    "linked_file": "2001/07/dsc00010.jpg",
+    "hugo": "7173-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-23",
+    "time": "18:55:58",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "55",
+    "second": "58"
+  },
+  {
+    "id": 7177,
+    "heading": "NO GUNS",
+    "created": "2001-07-23 18:47:15",
+    "linked_file": null,
+    "hugo": "7177-no-guns",
+    "date": "2001-07-23",
+    "time": "18:47:15",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "47",
+    "second": "15"
+  },
+  {
+    "id": 7180,
+    "heading": "MARTEDI24 presidio FIRENZE",
+    "created": "2001-07-23 18:49:19",
+    "linked_file": null,
+    "hugo": "7180-martedi24-presidio-firenze",
+    "date": "2001-07-23",
+    "time": "18:49:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "49",
+    "second": "19"
+  },
+  {
+    "id": 7181,
+    "heading": "Memorial for Carlo Giuliani",
+    "created": "2001-07-24 03:10:36",
+    "linked_file": "2001/07/dsc00025.jpg",
+    "hugo": "7181-memorial-for-carlo-giuliani",
+    "date": "2001-07-24",
+    "time": "03:10:36",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "10",
+    "second": "36"
+  },
+  {
+    "id": 7182,
+    "heading": "Manif à Lausanne(CH)",
+    "created": "2001-07-23 18:55:58",
+    "linked_file": null,
+    "hugo": "7182-manif-a-lausannech",
+    "date": "2001-07-23",
+    "time": "18:55:58",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "55",
+    "second": "58"
+  },
+  {
+    "id": 7184,
+    "heading": "Protest in Lausanne(CH)",
+    "created": "2001-07-23 18:57:55",
+    "linked_file": null,
+    "hugo": "7184-protest-in-lausannech",
+    "date": "2001-07-23",
+    "time": "18:57:55",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "57",
+    "second": "55"
+  },
+  {
+    "id": 7188,
+    "heading": "french-From the inside of the called \"black block\"",
+    "created": "2001-07-24 16:54:08",
+    "linked_file": null,
+    "hugo": "7188-frenchfrom-the-inside-of-the-called-black-block",
+    "date": "2001-07-24",
+    "time": "16:54:08",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "54",
+    "second": "08"
+  },
+  {
+    "id": 7189,
+    "heading": "zona rossa e consumo critico",
+    "created": "2001-07-23 19:29:19",
+    "linked_file": null,
+    "hugo": "7189-zona-rossa-e-consumo-critico",
+    "date": "2001-07-23",
+    "time": "19:29:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "29",
+    "second": "19"
+  },
+  {
+    "id": 7190,
+    "heading": "Outrage Over Murder Is Greeted with Locked Door at Chicago/Italian Consulate",
+    "created": "2001-07-24 04:06:06",
+    "linked_file": "2001/07/_1_banner_with_crowd.jpg",
+    "hugo": "7190-outrage-over-murder-is-greeted-with-locked-door-at-chicagoitalian-consulate",
+    "date": "2001-07-24",
+    "time": "04:06:06",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "06",
+    "second": "06"
+  },
+  {
+    "id": 7197,
+    "heading": "c'è tempo per sistemare i colpevoli indicati dalla pula!",
+    "created": "2001-07-24 07:02:29",
+    "linked_file": null,
+    "hugo": "7197-ce-tempo-per-sistemare-i-colpevoli-indicati-dalla-pula",
+    "date": "2001-07-24",
+    "time": "07:02:29",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "02",
+    "second": "29"
+  },
+  {
+    "id": 7205,
+    "heading": "Amnesty International on Genoa",
+    "created": "2001-07-24 03:36:39",
+    "linked_file": null,
+    "hugo": "7205-amnesty-international-on-genoa",
+    "date": "2001-07-24",
+    "time": "03:36:39",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "36",
+    "second": "39"
+  },
+  {
+    "id": 7208,
+    "heading": "IMC Press Release on IMC-Italia /GSF Raid",
+    "created": "2001-07-24 16:31:20",
+    "linked_file": null,
+    "hugo": "7208-imc-press-release-on-imcitalia-gsf-raid",
+    "date": "2001-07-24",
+    "time": "16:31:20",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "31",
+    "second": "20"
+  },
+  {
+    "id": 7209,
+    "heading": "Amnesty: Authorities must carry out urgent investigation of G8 policing",
+    "created": "2001-07-23 20:44:30",
+    "linked_file": null,
+    "hugo": "7209-amnesty-authorities-must-carry-out-urgent-investigation-of-g8-policing",
+    "date": "2001-07-23",
+    "time": "20:44:30",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "44",
+    "second": "30"
+  },
+  {
+    "id": 7217,
+    "heading": "FACCIAMO DUE CONTI...",
+    "created": "2001-07-24 00:42:26",
+    "linked_file": null,
+    "hugo": "7217-facciamo-due-conti",
+    "date": "2001-07-24",
+    "time": "00:42:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "42",
+    "second": "26"
+  },
+  {
+    "id": 7223,
+    "heading": "Protesta al consolato italiano di Montreal",
+    "created": "2001-07-23 20:48:44",
+    "linked_file": null,
+    "hugo": "7223-protesta-al-consolato-italiano-di-montreal",
+    "date": "2001-07-23",
+    "time": "20:48:44",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "48",
+    "second": "44"
+  },
+  {
+    "id": 7226,
+    "heading": "Severe Charges for 2 arrested at Boston Genoa Solidarity Demonstration",
+    "created": "2001-07-24 00:54:12",
+    "linked_file": null,
+    "hugo": "7226-severe-charges-for-2-arrested-at-boston-genoa-solidarity-demonstration",
+    "date": "2001-07-24",
+    "time": "00:54:12",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "54",
+    "second": "12"
+  },
+  {
+    "id": 7228,
+    "heading": "Flashpoints Radio July 23: Interview w IMC eyewitness to Genoa Midnight Massacre",
+    "created": "2001-07-23 21:11:56",
+    "linked_file": null,
+    "hugo": "7228-flashpoints-radio-july-23-interview-w-imc-eyewitness-to-genoa-midnight-massacre",
+    "date": "2001-07-23",
+    "time": "21:11:56",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "11",
+    "second": "56"
+  },
+  {
+    "id": 7233,
+    "heading": "San Francisco Solidarity with Genoa Workingclass",
+    "created": "2001-07-24 05:57:32",
+    "linked_file": null,
+    "hugo": "7233-san-francisco-solidarity-with-genoa-workingclass",
+    "date": "2001-07-24",
+    "time": "05:57:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "57",
+    "second": "32"
+  },
+  {
+    "id": 7234,
+    "heading": "anarchists in melbourne doing solidarity silent vigil",
+    "created": "2001-07-23 21:28:12",
+    "linked_file": null,
+    "hugo": "7234-anarchists-in-melbourne-doing-solidarity-silent-vigil",
+    "date": "2001-07-23",
+    "time": "21:28:12",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "28",
+    "second": "12"
+  },
+  {
+    "id": 7235,
+    "heading": "en, fr,it,de) more anarchists reports multilingual archive",
+    "created": "2001-07-23 21:39:57",
+    "linked_file": null,
+    "hugo": "7235-en-fritde-more-anarchists-reports-multilingual-archive",
+    "date": "2001-07-23",
+    "time": "21:39:57",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "39",
+    "second": "57"
+  },
+  {
+    "id": 7236,
+    "heading": "en, fr,it, more anarchists reports multilingual archive",
+    "created": "2001-07-23 21:40:05",
+    "linked_file": null,
+    "hugo": "7236-en-frit-more-anarchists-reports-multilingual-archive",
+    "date": "2001-07-23",
+    "time": "21:40:05",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "40",
+    "second": "05"
+  },
+  {
+    "id": 7237,
+    "heading": "FARE ATTENZIONE",
+    "created": "2001-07-24 05:11:53",
+    "linked_file": null,
+    "hugo": "7237-fare-attenzione",
+    "date": "2001-07-24",
+    "time": "05:11:53",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "11",
+    "second": "53"
+  },
+  {
+    "id": 7253,
+    "heading": "Manif a Portland Contro G8/Fascismo di Berlusconi",
+    "created": "2001-07-24 00:04:33",
+    "linked_file": null,
+    "hugo": "7253-manif-a-portland-contro-g8fascismo-di-berlusconi",
+    "date": "2001-07-24",
+    "time": "00:04:33",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "04",
+    "second": "33"
+  },
+  {
+    "id": 7257,
+    "heading": "Portland, Oregon stands in solidarity with Genoa",
+    "created": "2001-07-24 00:18:17",
+    "linked_file": null,
+    "hugo": "7257-portland-oregon-stands-in-solidarity-with-genoa",
+    "date": "2001-07-24",
+    "time": "00:18:17",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "18",
+    "second": "17"
+  },
+  {
+    "id": 7270,
+    "heading": "scuola di repressione",
+    "created": "2001-07-24 07:26:17",
+    "linked_file": null,
+    "hugo": "7270-scuola-di-repressione",
+    "date": "2001-07-24",
+    "time": "07:26:17",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "26",
+    "second": "17"
+  },
+  {
+    "id": 7271,
+    "heading": "un dubbio",
+    "created": "2001-07-24 02:52:43",
+    "linked_file": null,
+    "hugo": "7271-un-dubbio",
+    "date": "2001-07-24",
+    "time": "02:52:43",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "02",
+    "minute": "52",
+    "second": "43"
+  },
+  {
+    "id": 7278,
+    "heading": "A chi dice \"La polizia ha fatto bene\"",
+    "created": "2001-07-24 06:48:52",
+    "linked_file": null,
+    "hugo": "7278-a-chi-dice-la-polizia-ha-fatto-bene",
+    "date": "2001-07-24",
+    "time": "06:48:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "48",
+    "second": "52"
+  },
+  {
+    "id": 7291,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-24 04:36:47",
+    "linked_file": null,
+    "hugo": "7291-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-24",
+    "time": "04:36:47",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "36",
+    "second": "47"
+  },
+  {
+    "id": 7295,
+    "heading": "anarchist solidarity g8 ANTI-GLOBALIZATION DEMONSTRATION IN ISTANBUL",
+    "created": "2001-07-24 06:52:26",
+    "linked_file": null,
+    "hugo": "7295-anarchist-solidarity-g8-antiglobalization-demonstration-in-istanbul",
+    "date": "2001-07-24",
+    "time": "06:52:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "52",
+    "second": "26"
+  },
+  {
+    "id": 7299,
+    "heading": "ipocriti!!!!!",
+    "created": "2001-07-24 05:59:40",
+    "linked_file": null,
+    "hugo": "7299-ipocriti",
+    "date": "2001-07-24",
+    "time": "05:59:40",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "59",
+    "second": "40"
+  },
+  {
+    "id": 7300,
+    "heading": "Chiadiamo i danni",
+    "created": "2001-07-25 01:34:40",
+    "linked_file": null,
+    "hugo": "7300-chiadiamo-i-danni",
+    "date": "2001-07-25",
+    "time": "01:34:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "34",
+    "second": "40"
+  },
+  {
+    "id": 7308,
+    "heading": "DA LA REPUBBLICA DI OGGI (ONLINE)",
+    "created": "2001-07-24 05:40:49",
+    "linked_file": null,
+    "hugo": "7308-da-la-repubblica-di-oggi-online",
+    "date": "2001-07-24",
+    "time": "05:40:49",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "40",
+    "second": "49"
+  },
+  {
+    "id": 7311,
+    "heading": "SOLIDARITY DEMOS AND ACTIONS IN STOCKHOLM",
+    "created": "2001-07-24 05:13:18",
+    "linked_file": null,
+    "hugo": "7311-solidarity-demos-and-actions-in-stockholm",
+    "date": "2001-07-24",
+    "time": "05:13:18",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "13",
+    "second": "18"
+  },
+  {
+    "id": 7314,
+    "heading": "Diario da Genova",
+    "created": "2001-07-24 03:23:53",
+    "linked_file": null,
+    "hugo": "7314-diario-da-genova",
+    "date": "2001-07-24",
+    "time": "03:23:53",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "23",
+    "second": "53"
+  },
+  {
+    "id": 7316,
+    "heading": "genoa, letter to editor australian paper by a cab driver",
+    "created": "2001-07-24 06:32:45",
+    "linked_file": null,
+    "hugo": "7316-genoa-letter-to-editor-australian-paper-by-a-cab-driver",
+    "date": "2001-07-24",
+    "time": "06:32:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "32",
+    "second": "45"
+  },
+  {
+    "id": 7322,
+    "heading": "Gi-otto faceva cerchi perfetti",
+    "created": "2001-07-24 07:04:31",
+    "linked_file": null,
+    "hugo": "7322-giotto-faceva-cerchi-perfetti",
+    "date": "2001-07-24",
+    "time": "07:04:31",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "04",
+    "second": "31"
+  },
+  {
+    "id": 7325,
+    "heading": "Okkio al Real FIle",
+    "created": "2001-07-24 04:35:26",
+    "linked_file": null,
+    "hugo": "7325-okkio-al-real-file",
+    "date": "2001-07-24",
+    "time": "04:35:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "35",
+    "second": "26"
+  },
+  {
+    "id": 7329,
+    "heading": "corteo a ROMA",
+    "created": "2001-07-24 04:42:33",
+    "linked_file": null,
+    "hugo": "7329-corteo-a-roma",
+    "date": "2001-07-24",
+    "time": "04:42:33",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "42",
+    "second": "33"
+  },
+  {
+    "id": 7331,
+    "heading": "Genova - LA VARITA' DEVE USCIRE!",
+    "created": "2001-07-26 07:47:23",
+    "linked_file": null,
+    "hugo": "7331-genova-la-varita-deve-uscire",
+    "date": "2001-07-26",
+    "time": "07:47:23",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "47",
+    "second": "23"
+  },
+  {
+    "id": 7338,
+    "heading": "BLACK POLICE",
+    "created": "2001-07-24 07:36:22",
+    "linked_file": null,
+    "hugo": "7338-black-police",
+    "date": "2001-07-24",
+    "time": "07:36:22",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "36",
+    "second": "22"
+  },
+  {
+    "id": 7344,
+    "heading": "two statements about what was taken out of the gymnasium",
+    "created": "2001-07-24 04:19:40",
+    "linked_file": null,
+    "hugo": "7344-two-statements-about-what-was-taken-out-of-the-gymnasium",
+    "date": "2001-07-24",
+    "time": "04:19:40",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "19",
+    "second": "40"
+  },
+  {
+    "id": 7349,
+    "heading": "CONTRO LA GLOBALIZZAZIONE L'AUTARCHIA DEGLI ELFI",
+    "created": "2001-07-24 06:36:49",
+    "linked_file": null,
+    "hugo": "7349-contro-la-globalizzazione-lautarchia-degli-elfi",
+    "date": "2001-07-24",
+    "time": "06:36:49",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "36",
+    "second": "49"
+  },
+  {
+    "id": 7351,
+    "heading": "CONTRO LA GLOBALIZZAZIONE L'AUTARCHIA DEGLI ELFI",
+    "created": "2001-07-24 07:39:02",
+    "linked_file": null,
+    "hugo": "7351-contro-la-globalizzazione-lautarchia-degli-elfi",
+    "date": "2001-07-24",
+    "time": "07:39:02",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "39",
+    "second": "02"
+  },
+  {
+    "id": 7354,
+    "heading": "My Own Private G8",
+    "created": "2001-07-24 04:31:37",
+    "linked_file": null,
+    "hugo": "7354-my-own-private-g8",
+    "date": "2001-07-24",
+    "time": "04:31:37",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "31",
+    "second": "37"
+  },
+  {
+    "id": 7366,
+    "heading": "NEI SECOLI A CHI FEDELI?",
+    "created": "2001-07-24 16:05:52",
+    "linked_file": "2001/07/image_0041__genova_001_.jpg",
+    "hugo": "7366-nei-secoli-a-chi-fedeli",
+    "date": "2001-07-24",
+    "time": "16:05:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "05",
+    "second": "52"
+  },
+  {
+    "id": 7367,
+    "heading": "SKY",
+    "created": "2001-07-24 06:15:47",
+    "linked_file": null,
+    "hugo": "7367-sky",
+    "date": "2001-07-24",
+    "time": "06:15:47",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "15",
+    "second": "47"
+  },
+  {
+    "id": 7372,
+    "heading": "solidarityactions in Belgium on monday 23-07",
+    "created": "2001-07-24 05:00:45",
+    "linked_file": null,
+    "hugo": "7372-solidarityactions-in-belgium-on-monday-2307",
+    "date": "2001-07-24",
+    "time": "05:00:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "00",
+    "second": "45"
+  },
+  {
+    "id": 7375,
+    "heading": "presidio FIRENZE oggi.",
+    "created": "2001-07-24 05:02:50",
+    "linked_file": null,
+    "hugo": "7375-presidio-firenze-oggi",
+    "date": "2001-07-24",
+    "time": "05:02:50",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "02",
+    "second": "50"
+  },
+  {
+    "id": 7390,
+    "heading": "MUTANDE BIANCHE",
+    "created": "2001-07-25 03:52:35",
+    "linked_file": null,
+    "hugo": "7390-mutande-bianche",
+    "date": "2001-07-25",
+    "time": "03:52:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "52",
+    "second": "35"
+  },
+  {
+    "id": 7395,
+    "heading": "MUTANDE BIANCHE 2",
+    "created": "2001-07-24 06:02:58",
+    "linked_file": "2001/07/3_gs7eaib.jpg",
+    "hugo": "7395-mutande-bianche-2",
+    "date": "2001-07-24",
+    "time": "06:02:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "02",
+    "second": "58"
+  },
+  {
+    "id": 7398,
+    "heading": "Italian Consulate in Edinburgh, Scotland, vandalised",
+    "created": "2001-07-24 05:55:26",
+    "linked_file": null,
+    "hugo": "7398-italian-consulate-in-edinburgh-scotland-vandalised",
+    "date": "2001-07-24",
+    "time": "05:55:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "55",
+    "second": "26"
+  },
+  {
+    "id": 7402,
+    "heading": "E nessuno parla del g8",
+    "created": "2001-07-24 05:58:41",
+    "linked_file": null,
+    "hugo": "7402-e-nessuno-parla-del-g8",
+    "date": "2001-07-24",
+    "time": "05:58:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "58",
+    "second": "41"
+  },
+  {
+    "id": 7411,
+    "heading": "QUESTA SERA CORTEO A TORINO",
+    "created": "2001-07-24 06:12:08",
+    "linked_file": null,
+    "hugo": "7411-questa-sera-corteo-a-torino",
+    "date": "2001-07-24",
+    "time": "06:12:08",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "12",
+    "second": "08"
+  },
+  {
+    "id": 7412,
+    "heading": "Presidio a Torino",
+    "created": "2001-07-24 06:15:34",
+    "linked_file": null,
+    "hugo": "7412-presidio-a-torino",
+    "date": "2001-07-24",
+    "time": "06:15:34",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "15",
+    "second": "34"
+  },
+  {
+    "id": 7417,
+    "heading": "Assemblea pubblica a Palermo",
+    "created": "2001-07-24 06:19:06",
+    "linked_file": null,
+    "hugo": "7417-assemblea-pubblica-a-palermo",
+    "date": "2001-07-24",
+    "time": "06:19:06",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "19",
+    "second": "06"
+  },
+  {
+    "id": 7418,
+    "heading": "comunicato manifestazione Palermo",
+    "created": "2001-07-24 06:19:39",
+    "linked_file": null,
+    "hugo": "7418-comunicato-manifestazione-palermo",
+    "date": "2001-07-24",
+    "time": "06:19:39",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "19",
+    "second": "39"
+  },
+  {
+    "id": 7437,
+    "heading": "de l'interieur des pretendus Bl Bl suite et ref",
+    "created": "2001-07-25 16:27:32",
+    "linked_file": null,
+    "hugo": "7437-de-linterieur-des-pretendus-bl-bl-suite-et-ref",
+    "date": "2001-07-25",
+    "time": "16:27:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "27",
+    "second": "32"
+  },
+  {
+    "id": 7441,
+    "heading": "LA Falsa propaganda Comunista",
+    "created": "2001-07-24 08:58:40",
+    "linked_file": null,
+    "hugo": "7441-la-falsa-propaganda-comunista",
+    "date": "2001-07-24",
+    "time": "08:58:40",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "58",
+    "second": "40"
+  },
+  {
+    "id": 7442,
+    "heading": "La Falsa propaganda Comunista",
+    "created": "2001-07-24 18:05:22",
+    "linked_file": null,
+    "hugo": "7442-la-falsa-propaganda-comunista",
+    "date": "2001-07-24",
+    "time": "18:05:22",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "05",
+    "second": "22"
+  },
+  {
+    "id": 7443,
+    "heading": "Siamo tutti nella zona rossa...",
+    "created": "2001-07-24 08:57:56",
+    "linked_file": null,
+    "hugo": "7443-siamo-tutti-nella-zona-rossa",
+    "date": "2001-07-24",
+    "time": "08:57:56",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "57",
+    "second": "56"
+  },
+  {
+    "id": 7446,
+    "heading": "il problema sono i media",
+    "created": "2001-07-24 10:13:57",
+    "linked_file": null,
+    "hugo": "7446-il-problema-sono-i-media",
+    "date": "2001-07-24",
+    "time": "10:13:57",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "13",
+    "second": "57"
+  },
+  {
+    "id": 7452,
+    "heading": "Suspected police action",
+    "created": "2001-07-24 18:04:19",
+    "linked_file": null,
+    "hugo": "7452-suspected-police-action",
+    "date": "2001-07-24",
+    "time": "18:04:19",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "04",
+    "second": "19"
+  },
+  {
+    "id": 7456,
+    "heading": "Movimenti sospetti",
+    "created": "2001-07-24 09:46:42",
+    "linked_file": null,
+    "hugo": "7456-movimenti-sospetti",
+    "date": "2001-07-24",
+    "time": "09:46:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "46",
+    "second": "42"
+  },
+  {
+    "id": 7464,
+    "heading": "BENITO MUSSOLINI",
+    "created": "2001-07-24 10:24:15",
+    "linked_file": null,
+    "hugo": "7464-benito-mussolini",
+    "date": "2001-07-24",
+    "time": "10:24:15",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "24",
+    "second": "15"
+  },
+  {
+    "id": 7465,
+    "heading": "un infiltrato",
+    "created": "2001-07-25 03:23:40",
+    "linked_file": "2001/07/inf.gif",
+    "hugo": "7465-un-infiltrato",
+    "date": "2001-07-25",
+    "time": "03:23:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "23",
+    "second": "40"
+  },
+  {
+    "id": 7472,
+    "heading": "Presidio a Udine",
+    "created": "2001-07-24 07:39:14",
+    "linked_file": null,
+    "hugo": "7472-presidio-a-udine",
+    "date": "2001-07-24",
+    "time": "07:39:14",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "39",
+    "second": "14"
+  },
+  {
+    "id": 7473,
+    "heading": "OUR BELOVED DEMOCRATIC ITALIAN GOVERNMENT",
+    "created": "2001-07-24 08:13:16",
+    "linked_file": null,
+    "hugo": "7473-our-beloved-democratic-italian-government",
+    "date": "2001-07-24",
+    "time": "08:13:16",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "13",
+    "second": "16"
+  },
+  {
+    "id": 7478,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-26 01:19:25",
+    "linked_file": null,
+    "hugo": "7478-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-26",
+    "time": "01:19:25",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "19",
+    "second": "25"
+  },
+  {
+    "id": 7480,
+    "heading": "Lilliput in Piazza Manin",
+    "created": "2001-07-24 08:12:10",
+    "linked_file": null,
+    "hugo": "7480-lilliput-in-piazza-manin",
+    "date": "2001-07-24",
+    "time": "08:12:10",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "12",
+    "second": "10"
+  },
+  {
+    "id": 7483,
+    "heading": "ieri e oggi",
+    "created": "2001-07-24 07:52:42",
+    "linked_file": null,
+    "hugo": "7483-ieri-e-oggi",
+    "date": "2001-07-24",
+    "time": "07:52:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "52",
+    "second": "42"
+  },
+  {
+    "id": 7486,
+    "heading": "Carlo S. sta cercando chi..",
+    "created": "2001-07-24 08:52:38",
+    "linked_file": null,
+    "hugo": "7486-carlo-s-sta-cercando-chi",
+    "date": "2001-07-24",
+    "time": "08:52:38",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "52",
+    "second": "38"
+  },
+  {
+    "id": 7487,
+    "heading": "24 luglio ore 17.00: presidio del csoa il Molino al consolato italiano di Lugano",
+    "created": "2001-07-24 09:28:17",
+    "linked_file": null,
+    "hugo": "7487-24-luglio-ore-1700-presidio-del-csoa-il-molino-al-consolato-italiano-di-lugano",
+    "date": "2001-07-24",
+    "time": "09:28:17",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "28",
+    "second": "17"
+  },
+  {
+    "id": 7490,
+    "heading": "E IL CONTROVERTICE!?",
+    "created": "2001-07-24 08:00:14",
+    "linked_file": null,
+    "hugo": "7490-e-il-controvertice",
+    "date": "2001-07-24",
+    "time": "08:00:14",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "00",
+    "second": "14"
+  },
+  {
+    "id": 7499,
+    "heading": "Hey, running is healthy!",
+    "created": "2001-07-24 11:46:34",
+    "linked_file": null,
+    "hugo": "7499-hey-running-is-healthy",
+    "date": "2001-07-24",
+    "time": "11:46:34",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "11",
+    "minute": "46",
+    "second": "34"
+  },
+  {
+    "id": 7504,
+    "heading": "Manifestazione a Roma: alcune idee",
+    "created": "2001-07-24 08:34:09",
+    "linked_file": null,
+    "hugo": "7504-manifestazione-a-roma-alcune-idee",
+    "date": "2001-07-24",
+    "time": "08:34:09",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "34",
+    "second": "09"
+  },
+  {
+    "id": 7506,
+    "heading": "I violenti.",
+    "created": "2001-07-26 04:34:47",
+    "linked_file": null,
+    "hugo": "7506-i-violenti",
+    "date": "2001-07-26",
+    "time": "04:34:47",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "34",
+    "second": "47"
+  },
+  {
+    "id": 7514,
+    "heading": "Cortege de solidarite avec Genes (Genève le\r> 25.07)",
+    "created": "2001-07-24 08:22:45",
+    "linked_file": null,
+    "hugo": "7514-cortege-de-solidarite-avec-genes-geneve-le-2507",
+    "date": "2001-07-24",
+    "time": "08:22:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "22",
+    "second": "45"
+  },
+  {
+    "id": 7517,
+    "heading": "IMC NEWS BLAST | GENOA G8: What happened?",
+    "created": "2001-07-26 10:01:40",
+    "linked_file": null,
+    "hugo": "7517-imc-news-blast-genoa-g8-what-happened",
+    "date": "2001-07-26",
+    "time": "10:01:40",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "01",
+    "second": "40"
+  },
+  {
+    "id": 7525,
+    "heading": "\"Mio figlio, una maschera di sangue\"",
+    "created": "2001-07-24 10:08:41",
+    "linked_file": null,
+    "hugo": "7525-mio-figlio-una-maschera-di-sangue",
+    "date": "2001-07-24",
+    "time": "10:08:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "08",
+    "second": "41"
+  },
+  {
+    "id": 7528,
+    "heading": "double standard",
+    "created": "2001-07-24 09:00:05",
+    "linked_file": null,
+    "hugo": "7528-double-standard",
+    "date": "2001-07-24",
+    "time": "09:00:05",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "00",
+    "second": "05"
+  },
+  {
+    "id": 7529,
+    "heading": "\"Mio figlio, una maschera di sangue\"",
+    "created": "2001-07-24 09:25:42",
+    "linked_file": null,
+    "hugo": "7529-mio-figlio-una-maschera-di-sangue",
+    "date": "2001-07-24",
+    "time": "09:25:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "25",
+    "second": "42"
+  },
+  {
+    "id": 7535,
+    "heading": "Violence in Genoa: the target and the turning point",
+    "created": "2001-07-25 02:14:55",
+    "linked_file": null,
+    "hugo": "7535-violence-in-genoa-the-target-and-the-turning-point",
+    "date": "2001-07-25",
+    "time": "02:14:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "14",
+    "second": "55"
+  },
+  {
+    "id": 7555,
+    "heading": "testimonio y instrucciones por el uso del nuevo fascismo",
+    "created": "2001-07-24 09:00:59",
+    "linked_file": null,
+    "hugo": "7555-testimonio-y-instrucciones-por-el-uso-del-nuevo-fascismo",
+    "date": "2001-07-24",
+    "time": "09:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 7557,
+    "heading": "testimonio y instrucciones por el uso del nuevo fascismo",
+    "created": "2001-07-24 09:04:48",
+    "linked_file": null,
+    "hugo": "7557-testimonio-y-instrucciones-por-el-uso-del-nuevo-fascismo",
+    "date": "2001-07-24",
+    "time": "09:04:48",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "04",
+    "second": "48"
+  },
+  {
+    "id": 7563,
+    "heading": "Violence, double-standards and black blocs",
+    "created": "2001-07-24 10:17:03",
+    "linked_file": null,
+    "hugo": "7563-violence-doublestandards-and-black-blocs",
+    "date": "2001-07-24",
+    "time": "10:17:03",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "17",
+    "second": "03"
+  },
+  {
+    "id": 7568,
+    "heading": "question for indy-producer",
+    "created": "2001-07-24 09:43:55",
+    "linked_file": null,
+    "hugo": "7568-question-for-indyproducer",
+    "date": "2001-07-24",
+    "time": "09:43:55",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "43",
+    "second": "55"
+  },
+  {
+    "id": 7572,
+    "heading": "listen!",
+    "created": "2001-07-24 15:05:19",
+    "linked_file": null,
+    "hugo": "7572-listen",
+    "date": "2001-07-24",
+    "time": "15:05:19",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "05",
+    "second": "19"
+  },
+  {
+    "id": 7576,
+    "heading": "LA POLIZIA TEDESCA: a noi non ci sarebbe venuto mai in mente di SPARARE",
+    "created": "2001-07-24 09:26:47",
+    "linked_file": null,
+    "hugo": "7576-la-polizia-tedesca-a-noi-non-ci-sarebbe-venuto-mai-in-mente-di-sparare",
+    "date": "2001-07-24",
+    "time": "09:26:47",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "26",
+    "second": "47"
+  },
+  {
+    "id": 7582,
+    "heading": "raccolte per voi",
+    "created": "2001-07-24 17:37:43",
+    "linked_file": null,
+    "hugo": "7582-raccolte-per-voi",
+    "date": "2001-07-24",
+    "time": "17:37:43",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "37",
+    "second": "43"
+  },
+  {
+    "id": 7586,
+    "heading": "Maroni licenzia Agnoletto",
+    "created": "2001-07-24 19:00:32",
+    "linked_file": null,
+    "hugo": "7586-maroni-licenzia-agnoletto",
+    "date": "2001-07-24",
+    "time": "19:00:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "00",
+    "second": "32"
+  },
+  {
+    "id": 7605,
+    "heading": "Genova: Photos",
+    "created": "2001-07-24 18:41:43",
+    "linked_file": null,
+    "hugo": "7605-genova-photos",
+    "date": "2001-07-24",
+    "time": "18:41:43",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "41",
+    "second": "43"
+  },
+  {
+    "id": 7610,
+    "heading": "400 desaparecidos",
+    "created": "2001-07-24 14:09:44",
+    "linked_file": null,
+    "hugo": "7610-400-desaparecidos",
+    "date": "2001-07-24",
+    "time": "14:09:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "09",
+    "second": "44"
+  },
+  {
+    "id": 7613,
+    "heading": "CHIRAC  AL G8: \"Se 100.000 persone manifestano, esiste un problema\"",
+    "created": "2001-07-24 17:09:39",
+    "linked_file": null,
+    "hugo": "7613-chirac-al-g8-se-100000-persone-manifestano-esiste-un-problema",
+    "date": "2001-07-24",
+    "time": "17:09:39",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "09",
+    "second": "39"
+  },
+  {
+    "id": 7620,
+    "heading": "call for a mobilization in genoa on oct 20-21, 2001",
+    "created": "2001-07-24 13:22:51",
+    "linked_file": "2001/07/call_v0.92.htm",
+    "hugo": "7620-call-for-a-mobilization-in-genoa-on-oct-2021-2001",
+    "date": "2001-07-24",
+    "time": "13:22:51",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "13",
+    "minute": "22",
+    "second": "51"
+  },
+  {
+    "id": 7635,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-24 12:43:48",
+    "linked_file": null,
+    "hugo": "7635-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-24",
+    "time": "12:43:48",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "12",
+    "minute": "43",
+    "second": "48"
+  },
+  {
+    "id": 7641,
+    "heading": "LA VERA VIOLENZA",
+    "created": "2001-07-24 12:21:01",
+    "linked_file": null,
+    "hugo": "7641-la-vera-violenza",
+    "date": "2001-07-24",
+    "time": "12:21:01",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "12",
+    "minute": "21",
+    "second": "01"
+  },
+  {
+    "id": 7644,
+    "heading": "World Leaders Creating Another Crisis",
+    "created": "2001-07-24 12:23:18",
+    "linked_file": "2001/07/missile.jpg",
+    "hugo": "7644-world-leaders-creating-another-crisis",
+    "date": "2001-07-24",
+    "time": "12:23:18",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "12",
+    "minute": "23",
+    "second": "18"
+  },
+  {
+    "id": 7647,
+    "heading": "Etna - the symbol of the movements fury and determination",
+    "created": "2001-07-24 18:23:04",
+    "linked_file": null,
+    "hugo": "7647-etna-the-symbol-of-the-movements-fury-and-determination",
+    "date": "2001-07-24",
+    "time": "18:23:04",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "23",
+    "second": "04"
+  },
+  {
+    "id": 7652,
+    "heading": "THE REAL VIOLENCE",
+    "created": "2001-07-25 17:07:35",
+    "linked_file": null,
+    "hugo": "7652-the-real-violence",
+    "date": "2001-07-25",
+    "time": "17:07:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "07",
+    "second": "35"
+  },
+  {
+    "id": 7658,
+    "heading": "C'è un filmato",
+    "created": "2001-07-25 03:50:11",
+    "linked_file": null,
+    "hugo": "7658-ce-un-filmato",
+    "date": "2001-07-25",
+    "time": "03:50:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "50",
+    "second": "11"
+  },
+  {
+    "id": 7660,
+    "heading": "Thousands turn out in peaceful demonstrations accross Italy",
+    "created": "2001-07-24 20:53:15",
+    "linked_file": null,
+    "hugo": "7660-thousands-turn-out-in-peaceful-demonstrations-accross-italy",
+    "date": "2001-07-24",
+    "time": "20:53:15",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "20",
+    "minute": "53",
+    "second": "15"
+  },
+  {
+    "id": 7667,
+    "heading": "Il centro di Mídia Indipendete in America Latina monitorato",
+    "created": "2001-07-24 14:04:44",
+    "linked_file": null,
+    "hugo": "7667-il-centro-di-midia-indipendete-in-america-latina-monitorato",
+    "date": "2001-07-24",
+    "time": "14:04:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "04",
+    "second": "44"
+  },
+  {
+    "id": 7687,
+    "heading": "Assassini ! ! !",
+    "created": "2001-07-24 15:16:44",
+    "linked_file": "2001/07/carlo_.jpg",
+    "hugo": "7687-assassini-",
+    "date": "2001-07-24",
+    "time": "15:16:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "16",
+    "second": "44"
+  },
+  {
+    "id": 7688,
+    "heading": "anche a lugano in 100 per carlo",
+    "created": "2001-07-24 14:51:08",
+    "linked_file": null,
+    "hugo": "7688-anche-a-lugano-in-100-per-carlo",
+    "date": "2001-07-24",
+    "time": "14:51:08",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "51",
+    "second": "08"
+  },
+  {
+    "id": 7691,
+    "heading": "Londra:presidio davanti l'ambasciata italiana",
+    "created": "2001-07-24 14:57:52",
+    "linked_file": null,
+    "hugo": "7691-londrapresidio-davanti-lambasciata-italiana",
+    "date": "2001-07-24",
+    "time": "14:57:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "57",
+    "second": "52"
+  },
+  {
+    "id": 7692,
+    "heading": "Londra:presidio davanti l'ambasciata italiana",
+    "created": "2001-07-24 14:58:19",
+    "linked_file": null,
+    "hugo": "7692-londrapresidio-davanti-lambasciata-italiana",
+    "date": "2001-07-24",
+    "time": "14:58:19",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "58",
+    "second": "19"
+  },
+  {
+    "id": 7696,
+    "heading": "STRAORDINARIA MANIFESTAZIONE A ROMA -- PRIMA FOTO (altre saranno postate presto)",
+    "created": "2001-07-25 01:30:52",
+    "linked_file": "2001/07/dscn0085.jpg",
+    "hugo": "7696-straordinaria-manifestazione-a-roma-prima-foto-altre-saranno-postate-presto",
+    "date": "2001-07-25",
+    "time": "01:30:52",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "30",
+    "second": "52"
+  },
+  {
+    "id": 7700,
+    "heading": "RESOCONTO DA ROMA",
+    "created": "2001-07-24 19:07:45",
+    "linked_file": null,
+    "hugo": "7700-resoconto-da-roma",
+    "date": "2001-07-24",
+    "time": "19:07:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "07",
+    "second": "45"
+  },
+  {
+    "id": 7709,
+    "heading": "EU Crowd Control Technologies",
+    "created": "2001-07-24 16:07:45",
+    "linked_file": null,
+    "hugo": "7709-eu-crowd-control-technologies",
+    "date": "2001-07-24",
+    "time": "16:07:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "07",
+    "second": "45"
+  },
+  {
+    "id": 7710,
+    "heading": "Join the border-camp in frankfurt",
+    "created": "2001-07-24 16:08:02",
+    "linked_file": null,
+    "hugo": "7710-join-the-bordercamp-in-frankfurt",
+    "date": "2001-07-24",
+    "time": "16:08:02",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "08",
+    "second": "02"
+  },
+  {
+    "id": 7711,
+    "heading": "Chirac e Jospin: \"D'accordo con il movimento anti G8\"",
+    "created": "2001-07-24 16:10:13",
+    "linked_file": null,
+    "hugo": "7711-chirac-e-jospin-daccordo-con-il-movimento-anti-g8",
+    "date": "2001-07-24",
+    "time": "16:10:13",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "10",
+    "second": "13"
+  },
+  {
+    "id": 7715,
+    "heading": "VIOLENZE",
+    "created": "2001-07-25 12:18:02",
+    "linked_file": null,
+    "hugo": "7715-violenze",
+    "date": "2001-07-25",
+    "time": "12:18:02",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "18",
+    "second": "02"
+  },
+  {
+    "id": 7720,
+    "heading": "assassini",
+    "created": "2001-07-25 01:06:42",
+    "linked_file": "2001/07/assassini.jpeg",
+    "hugo": "7720-assassini",
+    "date": "2001-07-25",
+    "time": "01:06:42",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "06",
+    "second": "42"
+  },
+  {
+    "id": 7727,
+    "heading": "Solidarity Demo in Hamburg/Germany",
+    "created": "2001-07-24 17:10:58",
+    "linked_file": "2001/07/genoahh.jpg",
+    "hugo": "7727-solidarity-demo-in-hamburggermany",
+    "date": "2001-07-24",
+    "time": "17:10:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "10",
+    "second": "58"
+  },
+  {
+    "id": 7734,
+    "heading": "picture report of police raid on GSF and Indymedia in Genova",
+    "created": "2001-07-25 02:21:13",
+    "linked_file": "2001/07/radiator_01.jpg",
+    "hugo": "7734-picture-report-of-police-raid-on-gsf-and-indymedia-in-genova",
+    "date": "2001-07-25",
+    "time": "02:21:13",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "21",
+    "second": "13"
+  },
+  {
+    "id": 7739,
+    "heading": "manifestazione a Udine",
+    "created": "2001-07-24 17:05:58",
+    "linked_file": "2001/07/ud5.jpg",
+    "hugo": "7739-manifestazione-a-udine",
+    "date": "2001-07-24",
+    "time": "17:05:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "05",
+    "second": "58"
+  },
+  {
+    "id": 7769,
+    "heading": "Criminalization of the Black Bloc - State wins the match!",
+    "created": "2001-07-25 01:58:54",
+    "linked_file": null,
+    "hugo": "7769-criminalization-of-the-black-bloc-state-wins-the-match",
+    "date": "2001-07-25",
+    "time": "01:58:54",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "58",
+    "second": "54"
+  },
+  {
+    "id": 7770,
+    "heading": "Grande manifestazione ad Arezzo",
+    "created": "2001-07-24 18:16:50",
+    "linked_file": null,
+    "hugo": "7770-grande-manifestazione-ad-arezzo",
+    "date": "2001-07-24",
+    "time": "18:16:50",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "16",
+    "second": "50"
+  },
+  {
+    "id": 7785,
+    "heading": "Ma non era in canottiera?",
+    "created": "2001-07-25 01:13:38",
+    "linked_file": null,
+    "hugo": "7785-ma-non-era-in-canottiera",
+    "date": "2001-07-25",
+    "time": "01:13:38",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "13",
+    "second": "38"
+  },
+  {
+    "id": 7792,
+    "heading": "MOBILITAZIONI OROBICHE E CONSIDERAZIONI",
+    "created": "2001-07-24 19:04:11",
+    "linked_file": null,
+    "hugo": "7792-mobilitazioni-orobiche-e-considerazioni",
+    "date": "2001-07-24",
+    "time": "19:04:11",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "04",
+    "second": "11"
+  },
+  {
+    "id": 7794,
+    "heading": "Ci sparano addosso...",
+    "created": "2001-07-25 12:05:07",
+    "linked_file": "2001/07/ci_sparano_addosso.jpg",
+    "hugo": "7794-ci-sparano-addosso",
+    "date": "2001-07-25",
+    "time": "12:05:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "05",
+    "second": "07"
+  },
+  {
+    "id": 7796,
+    "heading": "cariche in spiaggia",
+    "created": "2001-07-24 19:33:01",
+    "linked_file": "2001/07/5.jpg",
+    "hugo": "7796-cariche-in-spiaggia",
+    "date": "2001-07-24",
+    "time": "19:33:01",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "33",
+    "second": "01"
+  },
+  {
+    "id": 7807,
+    "heading": "colpevole",
+    "created": "2001-07-25 02:00:11",
+    "linked_file": null,
+    "hugo": "7807-colpevole",
+    "date": "2001-07-25",
+    "time": "02:00:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "00",
+    "second": "11"
+  },
+  {
+    "id": 7818,
+    "heading": "the big picture (genoa and revolution in general)",
+    "created": "2001-07-24 22:17:36",
+    "linked_file": null,
+    "hugo": "7818-the-big-picture-genoa-and-revolution-in-general",
+    "date": "2001-07-24",
+    "time": "22:17:36",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "17",
+    "second": "36"
+  },
+  {
+    "id": 7820,
+    "heading": "solidarity in switzerland",
+    "created": "2001-07-24 21:01:21",
+    "linked_file": null,
+    "hugo": "7820-solidarity-in-switzerland",
+    "date": "2001-07-24",
+    "time": "21:01:21",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "01",
+    "second": "21"
+  },
+  {
+    "id": 7825,
+    "heading": "solidarity in zurich",
+    "created": "2001-07-24 21:20:33",
+    "linked_file": null,
+    "hugo": "7825-solidarity-in-zurich",
+    "date": "2001-07-24",
+    "time": "21:20:33",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "20",
+    "second": "33"
+  },
+  {
+    "id": 7826,
+    "heading": "Police display IMC \" weapons\" in Genoa",
+    "created": "2001-07-24 21:21:27",
+    "linked_file": null,
+    "hugo": "7826-police-display-imc-weapons-in-genoa",
+    "date": "2001-07-24",
+    "time": "21:21:27",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "21",
+    "second": "27"
+  },
+  {
+    "id": 7828,
+    "heading": "en,fr,it ) reports on genoa and solidarity on anarchist newswire",
+    "created": "2001-07-24 21:26:54",
+    "linked_file": null,
+    "hugo": "7828-enfrit-reports-on-genoa-and-solidarity-on-anarchist-newswire",
+    "date": "2001-07-24",
+    "time": "21:26:54",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "26",
+    "second": "54"
+  },
+  {
+    "id": 7830,
+    "heading": "no border no nation caravan arrests",
+    "created": "2001-07-24 21:36:41",
+    "linked_file": null,
+    "hugo": "7830-no-border-no-nation-caravan-arrests",
+    "date": "2001-07-24",
+    "time": "21:36:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "36",
+    "second": "41"
+  },
+  {
+    "id": 7832,
+    "heading": "SBALORDIMENTI",
+    "created": "2001-07-25 18:27:15",
+    "linked_file": null,
+    "hugo": "7832-sbalordimenti",
+    "date": "2001-07-25",
+    "time": "18:27:15",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "27",
+    "second": "15"
+  },
+  {
+    "id": 7833,
+    "heading": "contact in austria",
+    "created": "2001-07-24 21:42:56",
+    "linked_file": null,
+    "hugo": "7833-contact-in-austria",
+    "date": "2001-07-24",
+    "time": "21:42:56",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "42",
+    "second": "56"
+  },
+  {
+    "id": 7834,
+    "heading": "San Francisco Protest Against G8 Injustice",
+    "created": "2001-07-24 21:56:07",
+    "linked_file": "2001/07/hill_march.jpg",
+    "hugo": "7834-san-francisco-protest-against-g8-injustice",
+    "date": "2001-07-24",
+    "time": "21:56:07",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "56",
+    "second": "07"
+  },
+  {
+    "id": 7838,
+    "heading": "Some of our reflections on the days in Genoa",
+    "created": "2001-07-25 02:45:14",
+    "linked_file": null,
+    "hugo": "7838-some-of-our-reflections-on-the-days-in-genoa",
+    "date": "2001-07-25",
+    "time": "02:45:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "45",
+    "second": "14"
+  },
+  {
+    "id": 7845,
+    "heading": "Carlo's Intersection",
+    "created": "2001-07-24 22:32:51",
+    "linked_file": "2001/07/carlo_blockade_3.jpg",
+    "hugo": "7845-carlos-intersection",
+    "date": "2001-07-24",
+    "time": "22:32:51",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "32",
+    "second": "51"
+  },
+  {
+    "id": 7846,
+    "heading": "International Federation of Jounalists condemn Italian media concentration",
+    "created": "2001-07-24 22:57:58",
+    "linked_file": null,
+    "hugo": "7846-international-federation-of-jounalists-condemn-italian-media-concentration",
+    "date": "2001-07-24",
+    "time": "22:57:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "57",
+    "second": "58"
+  },
+  {
+    "id": 7847,
+    "heading": "Blood",
+    "created": "2001-07-24 22:36:58",
+    "linked_file": "2001/07/blood.jpg",
+    "hugo": "7847-blood",
+    "date": "2001-07-24",
+    "time": "22:36:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "36",
+    "second": "58"
+  },
+  {
+    "id": 7849,
+    "heading": "Marching With Carlo",
+    "created": "2001-07-25 10:26:30",
+    "linked_file": "2001/07/marching_with_carlo.jpg",
+    "hugo": "7849-marching-with-carlo",
+    "date": "2001-07-25",
+    "time": "10:26:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "26",
+    "second": "30"
+  },
+  {
+    "id": 7851,
+    "heading": "Prison For Scajola",
+    "created": "2001-07-24 22:54:52",
+    "linked_file": "2001/07/prison_for_scajolasb2xgb.jpg",
+    "hugo": "7851-prison-for-scajola",
+    "date": "2001-07-24",
+    "time": "22:54:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "54",
+    "second": "52"
+  },
+  {
+    "id": 7853,
+    "heading": "Martyr",
+    "created": "2001-07-24 22:59:41",
+    "linked_file": "2001/07/movement.jpg",
+    "hugo": "7853-martyr",
+    "date": "2001-07-24",
+    "time": "22:59:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "59",
+    "second": "41"
+  },
+  {
+    "id": 7854,
+    "heading": "Dance of the Martyr",
+    "created": "2001-07-24 23:04:16",
+    "linked_file": "2001/07/death_dance.jpg",
+    "hugo": "7854-dance-of-the-martyr",
+    "date": "2001-07-24",
+    "time": "23:04:16",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "23",
+    "minute": "04",
+    "second": "16"
+  },
+  {
+    "id": 7856,
+    "heading": "Shout",
+    "created": "2001-07-25 03:59:06",
+    "linked_file": "2001/07/shout.jpg",
+    "hugo": "7856-shout",
+    "date": "2001-07-25",
+    "time": "03:59:06",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "59",
+    "second": "06"
+  },
+  {
+    "id": 7858,
+    "heading": "Dance of the Martyr Photo#2",
+    "created": "2001-07-25 02:19:42",
+    "linked_file": "2001/07/death_dance_4.jpg",
+    "hugo": "7858-dance-of-the-martyr-photo2",
+    "date": "2001-07-25",
+    "time": "02:19:42",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "19",
+    "second": "42"
+  },
+  {
+    "id": 7874,
+    "heading": "disobbedienza civile",
+    "created": "2001-07-25 04:12:08",
+    "linked_file": null,
+    "hugo": "7874-disobbedienza-civile",
+    "date": "2001-07-25",
+    "time": "04:12:08",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "12",
+    "second": "08"
+  },
+  {
+    "id": 7878,
+    "heading": "more eyewitness accounts and call for mobilization",
+    "created": "2001-07-25 01:31:51",
+    "linked_file": "2001/07/call_v0.92oblxr6.htm",
+    "hugo": "7878-more-eyewitness-accounts-and-call-for-mobilization",
+    "date": "2001-07-25",
+    "time": "01:31:51",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "31",
+    "second": "51"
+  },
+  {
+    "id": 7889,
+    "heading": "LEGGE APPROVATA IL 20 DI LUGLIO?",
+    "created": "2001-07-25 04:37:57",
+    "linked_file": null,
+    "hugo": "7889-legge-approvata-il-20-di-luglio",
+    "date": "2001-07-25",
+    "time": "04:37:57",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "37",
+    "second": "57"
+  },
+  {
+    "id": 7903,
+    "heading": "Scajola black bloc",
+    "created": "2001-07-26 18:16:05",
+    "linked_file": "2001/07/berlusca_bloc.jpg",
+    "hugo": "7903-scajola-black-bloc",
+    "date": "2001-07-26",
+    "time": "18:16:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "16",
+    "second": "05"
+  },
+  {
+    "id": 7913,
+    "heading": "presidio a verona",
+    "created": "2001-07-26 17:28:04",
+    "linked_file": "2001/07/dscf1215.jpg",
+    "hugo": "7913-presidio-a-verona",
+    "date": "2001-07-26",
+    "time": "17:28:04",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "17",
+    "minute": "28",
+    "second": "04"
+  },
+  {
+    "id": 7916,
+    "heading": "Alcune considerazioni",
+    "created": "2001-07-25 11:38:07",
+    "linked_file": null,
+    "hugo": "7916-alcune-considerazioni",
+    "date": "2001-07-25",
+    "time": "11:38:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "38",
+    "second": "07"
+  },
+  {
+    "id": 7933,
+    "heading": "l'arte della dissuasione",
+    "created": "2001-07-25 07:47:33",
+    "linked_file": null,
+    "hugo": "7933-larte-della-dissuasione",
+    "date": "2001-07-25",
+    "time": "07:47:33",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "47",
+    "second": "33"
+  },
+  {
+    "id": 7934,
+    "heading": "cingolato con pestaggio",
+    "created": "2001-07-25 03:03:32",
+    "linked_file": "2001/07/4.jpg",
+    "hugo": "7934-cingolato-con-pestaggio",
+    "date": "2001-07-25",
+    "time": "03:03:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "03",
+    "second": "32"
+  },
+  {
+    "id": 7943,
+    "heading": "un impegno mantenuto",
+    "created": "2001-07-25 10:17:34",
+    "linked_file": "2001/07/impegno.jpg",
+    "hugo": "7943-un-impegno-mantenuto",
+    "date": "2001-07-25",
+    "time": "10:17:34",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "17",
+    "second": "34"
+  },
+  {
+    "id": 7946,
+    "heading": "cingolato con pestaggio 2",
+    "created": "2001-07-26 14:57:55",
+    "linked_file": "2001/07/6.jpg",
+    "hugo": "7946-cingolato-con-pestaggio-2",
+    "date": "2001-07-26",
+    "time": "14:57:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "57",
+    "second": "55"
+  },
+  {
+    "id": 7951,
+    "heading": "Solidarity in Bavaria",
+    "created": "2001-07-25 03:24:46",
+    "linked_file": null,
+    "hugo": "7951-solidarity-in-bavaria",
+    "date": "2001-07-25",
+    "time": "03:24:46",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "24",
+    "second": "46"
+  },
+  {
+    "id": 7961,
+    "heading": "[ e s c a p e . c a p t i v i t y ]",
+    "created": "2001-07-25 03:46:35",
+    "linked_file": "2001/07/image_0051__escape_captivity_0003_.jpg",
+    "hugo": "7961-e-s-c-a-p-e-c-a-p-t-i-v-i-t-y-",
+    "date": "2001-07-25",
+    "time": "03:46:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "46",
+    "second": "35"
+  },
+  {
+    "id": 7967,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-25 04:37:09",
+    "linked_file": null,
+    "hugo": "7967-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-25",
+    "time": "04:37:09",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "37",
+    "second": "09"
+  },
+  {
+    "id": 7970,
+    "heading": "a terra",
+    "created": "2001-07-27 03:41:52",
+    "linked_file": "2001/07/pestaggi-208qs939.jpg",
+    "hugo": "7970-a-terra",
+    "date": "2001-07-27",
+    "time": "03:41:52",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "03",
+    "minute": "41",
+    "second": "52"
+  },
+  {
+    "id": 7988,
+    "heading": "Bloodied but unbowed!",
+    "created": "2001-07-25 04:31:01",
+    "linked_file": "2001/07/we_are_bloodied_but_unbowed.htm",
+    "hugo": "7988-bloodied-but-unbowed",
+    "date": "2001-07-25",
+    "time": "04:31:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "31",
+    "second": "01"
+  },
+  {
+    "id": 7992,
+    "heading": "L'ITALIA CHE HO IN MENTE",
+    "created": "2001-07-25 06:16:55",
+    "linked_file": "2001/07/in_mente.jpg",
+    "hugo": "7992-litalia-che-ho-in-mente",
+    "date": "2001-07-25",
+    "time": "06:16:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "16",
+    "second": "55"
+  },
+  {
+    "id": 8005,
+    "heading": "dopo",
+    "created": "2001-07-30 04:35:35",
+    "linked_file": "2001/07/dopozrayeu.jpg",
+    "hugo": "8005-dopo",
+    "date": "2001-07-30",
+    "time": "04:35:35",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "35",
+    "second": "35"
+  },
+  {
+    "id": 8008,
+    "heading": "Solidarietà con Agnoletto",
+    "created": "2001-07-25 08:16:27",
+    "linked_file": null,
+    "hugo": "8008-solidarieta-con-agnoletto",
+    "date": "2001-07-25",
+    "time": "08:16:27",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "16",
+    "second": "27"
+  },
+  {
+    "id": 8019,
+    "heading": "where are they?",
+    "created": "2001-07-25 05:10:53",
+    "linked_file": null,
+    "hugo": "8019-where-are-they",
+    "date": "2001-07-25",
+    "time": "05:10:53",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "05",
+    "minute": "10",
+    "second": "53"
+  },
+  {
+    "id": 8023,
+    "heading": "Che fine hanno fatto i prigionieri di genova?",
+    "created": "2001-07-25 07:15:32",
+    "linked_file": null,
+    "hugo": "8023-che-fine-hanno-fatto-i-prigionieri-di-genova",
+    "date": "2001-07-25",
+    "time": "07:15:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "15",
+    "second": "32"
+  },
+  {
+    "id": 8024,
+    "heading": "IL PROBLEMA",
+    "created": "2001-07-26 01:33:37",
+    "linked_file": null,
+    "hugo": "8024-il-problema",
+    "date": "2001-07-26",
+    "time": "01:33:37",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "33",
+    "second": "37"
+  },
+  {
+    "id": 8026,
+    "heading": "diffusione libro bianco",
+    "created": "2001-07-26 02:50:35",
+    "linked_file": null,
+    "hugo": "8026-diffusione-libro-bianco",
+    "date": "2001-07-26",
+    "time": "02:50:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "50",
+    "second": "35"
+  },
+  {
+    "id": 8041,
+    "heading": "I CELERINI CARNE DA MACELLO",
+    "created": "2001-07-25 08:12:51",
+    "linked_file": null,
+    "hugo": "8041-i-celerini-carne-da-macello",
+    "date": "2001-07-25",
+    "time": "08:12:51",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "12",
+    "second": "51"
+  },
+  {
+    "id": 8045,
+    "heading": "E INTANTO G.W. NON SI FERMA",
+    "created": "2001-07-25 06:51:31",
+    "linked_file": null,
+    "hugo": "8045-e-intanto-gw-non-si-ferma",
+    "date": "2001-07-25",
+    "time": "06:51:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "51",
+    "second": "31"
+  },
+  {
+    "id": 8061,
+    "heading": "picture 4: take down the wall",
+    "created": "2001-07-25 06:18:30",
+    "linked_file": "2001/07/genua4.jpg",
+    "hugo": "8061-picture-4-take-down-the-wall",
+    "date": "2001-07-25",
+    "time": "06:18:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "18",
+    "second": "30"
+  },
+  {
+    "id": 8074,
+    "heading": "Leviamocel dal cazzo!",
+    "created": "2001-07-25 06:35:35",
+    "linked_file": "2001/07/contromano_berlusconi_leviamocelo.swf",
+    "hugo": "8074-leviamocel-dal-cazzo",
+    "date": "2001-07-25",
+    "time": "06:35:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "35",
+    "second": "35"
+  },
+  {
+    "id": 8075,
+    "heading": "> >  PER NON DIMENTICARE / DON'T FORGET ABOUT ...  ---->",
+    "created": "2001-07-25 06:37:53",
+    "linked_file": null,
+    "hugo": "8075-per-non-dimenticare-dont-forget-about-",
+    "date": "2001-07-25",
+    "time": "06:37:53",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "37",
+    "second": "53"
+  },
+  {
+    "id": 8076,
+    "heading": "verita' sull'assassinio di Carlo",
+    "created": "2001-07-25 10:54:27",
+    "linked_file": null,
+    "hugo": "8076-verita-sullassassinio-di-carlo",
+    "date": "2001-07-25",
+    "time": "10:54:27",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "54",
+    "second": "27"
+  },
+  {
+    "id": 8077,
+    "heading": "Occhio al farmaco di stato: cos'è il T.S.O.?",
+    "created": "2001-07-25 11:10:18",
+    "linked_file": null,
+    "hugo": "8077-occhio-al-farmaco-di-stato-cose-il-tso",
+    "date": "2001-07-25",
+    "time": "11:10:18",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "10",
+    "second": "18"
+  },
+  {
+    "id": 8081,
+    "heading": "Fede e il TG4",
+    "created": "2001-07-25 10:18:11",
+    "linked_file": null,
+    "hugo": "8081-fede-e-il-tg4",
+    "date": "2001-07-25",
+    "time": "10:18:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "18",
+    "second": "11"
+  },
+  {
+    "id": 8082,
+    "heading": "CARLO GIULIANI, PIQUETERO GLOBAL",
+    "created": "2001-07-25 06:45:34",
+    "linked_file": null,
+    "hugo": "8082-carlo-giuliani-piquetero-global",
+    "date": "2001-07-25",
+    "time": "06:45:34",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "45",
+    "second": "34"
+  },
+  {
+    "id": 8084,
+    "heading": "G8 = Assasini",
+    "created": "2001-07-25 06:47:32",
+    "linked_file": "2001/07/genua6ohvnx8.jpg",
+    "hugo": "8084-g8-assasini",
+    "date": "2001-07-25",
+    "time": "06:47:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "47",
+    "second": "32"
+  },
+  {
+    "id": 8086,
+    "heading": "un vecchietto contro il regime",
+    "created": "2001-07-25 08:16:01",
+    "linked_file": null,
+    "hugo": "8086-un-vecchietto-contro-il-regime",
+    "date": "2001-07-25",
+    "time": "08:16:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "16",
+    "second": "01"
+  },
+  {
+    "id": 8087,
+    "heading": "another picture from the mass demonstration",
+    "created": "2001-07-25 06:49:02",
+    "linked_file": "2001/07/genua5.jpg",
+    "hugo": "8087-another-picture-from-the-mass-demonstration",
+    "date": "2001-07-25",
+    "time": "06:49:02",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "49",
+    "second": "02"
+  },
+  {
+    "id": 8092,
+    "heading": "Un impegno concreto... ADDIO!",
+    "created": "2001-07-25 08:19:50",
+    "linked_file": "2001/07/contromano-berlusconi_addio.jpg",
+    "hugo": "8092-un-impegno-concreto-addio",
+    "date": "2001-07-25",
+    "time": "08:19:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "19",
+    "second": "50"
+  },
+  {
+    "id": 8098,
+    "heading": "Carlo Giuliani simbolo d'imbecillità",
+    "created": "2001-07-26 04:10:09",
+    "linked_file": null,
+    "hugo": "8098-carlo-giuliani-simbolo-dimbecillita",
+    "date": "2001-07-26",
+    "time": "04:10:09",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "10",
+    "second": "09"
+  },
+  {
+    "id": 8100,
+    "heading": "GIP non convalida arresti / Judge does not confirm arrests",
+    "created": "2001-07-25 08:38:42",
+    "linked_file": null,
+    "hugo": "8100-gip-non-convalida-arresti-judge-does-not-confirm-arrests",
+    "date": "2001-07-25",
+    "time": "08:38:42",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "38",
+    "second": "42"
+  },
+  {
+    "id": 8114,
+    "heading": "ciao",
+    "created": "2001-07-25 07:16:32",
+    "linked_file": "2001/07/graffiti_is_a_weapon.jpg",
+    "hugo": "8114-ciao",
+    "date": "2001-07-25",
+    "time": "07:16:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "16",
+    "second": "32"
+  },
+  {
+    "id": 8119,
+    "heading": "VINCITORI E VINTI",
+    "created": "2001-07-25 10:39:36",
+    "linked_file": null,
+    "hugo": "8119-vincitori-e-vinti",
+    "date": "2001-07-25",
+    "time": "10:39:36",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "39",
+    "second": "36"
+  },
+  {
+    "id": 8124,
+    "heading": "TOPOLINO , I POLIZIOTTI E IL MAL DI TESTA",
+    "created": "2001-07-25 08:59:04",
+    "linked_file": "2001/07/pestaggi-208qs939eipslw.jpg",
+    "hugo": "8124-topolino-i-poliziotti-e-il-mal-di-testa",
+    "date": "2001-07-25",
+    "time": "08:59:04",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "59",
+    "second": "04"
+  },
+  {
+    "id": 8137,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 07:37:47",
+    "linked_file": "2001/07/dscn0031.jpg",
+    "hugo": "8137-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "07:37:47",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "37",
+    "second": "47"
+  },
+  {
+    "id": 8150,
+    "heading": "UPDATE to: [IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 07:48:48",
+    "linked_file": "2001/07/dscn0051.jpg",
+    "hugo": "8150-update-to-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "07:48:48",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "48",
+    "second": "48"
+  },
+  {
+    "id": 8154,
+    "heading": "Mancano 100 prigionieri",
+    "created": "2001-07-25 08:18:59",
+    "linked_file": null,
+    "hugo": "8154-mancano-100-prigionieri",
+    "date": "2001-07-25",
+    "time": "08:18:59",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "18",
+    "second": "59"
+  },
+  {
+    "id": 8156,
+    "heading": "Protest in Greece",
+    "created": "2001-07-25 07:53:05",
+    "linked_file": null,
+    "hugo": "8156-protest-in-greece",
+    "date": "2001-07-25",
+    "time": "07:53:05",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "53",
+    "second": "05"
+  },
+  {
+    "id": 8157,
+    "heading": "our world is not for sale",
+    "created": "2001-07-25 07:53:43",
+    "linked_file": "2001/07/genua-neu9.jpg",
+    "hugo": "8157-our-world-is-not-for-sale",
+    "date": "2001-07-25",
+    "time": "07:53:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "53",
+    "second": "43"
+  },
+  {
+    "id": 8161,
+    "heading": "picture: one solution: revolution",
+    "created": "2001-07-25 07:57:21",
+    "linked_file": "2001/07/genua-neu8.jpg",
+    "hugo": "8161-picture-one-solution-revolution",
+    "date": "2001-07-25",
+    "time": "07:57:21",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "57",
+    "second": "21"
+  },
+  {
+    "id": 8166,
+    "heading": "per il public social forum in autunno",
+    "created": "2001-07-25 09:49:40",
+    "linked_file": null,
+    "hugo": "8166-per-il-public-social-forum-in-autunno",
+    "date": "2001-07-25",
+    "time": "09:49:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "49",
+    "second": "40"
+  },
+  {
+    "id": 8168,
+    "heading": "15mila a Napoli per Carlo Giuliani",
+    "created": "2001-07-25 08:07:28",
+    "linked_file": null,
+    "hugo": "8168-15mila-a-napoli-per-carlo-giuliani",
+    "date": "2001-07-25",
+    "time": "08:07:28",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "07",
+    "second": "28"
+  },
+  {
+    "id": 8177,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 08:15:26",
+    "linked_file": "2001/07/dpr_art5_dscn0060.jpg",
+    "hugo": "8177-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "08:15:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "15",
+    "second": "26"
+  },
+  {
+    "id": 8181,
+    "heading": "DIFFUSIONE DEL LIBRO BIANCO - 2",
+    "created": "2001-07-25 08:55:50",
+    "linked_file": null,
+    "hugo": "8181-diffusione-del-libro-bianco-2",
+    "date": "2001-07-25",
+    "time": "08:55:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "55",
+    "second": "50"
+  },
+  {
+    "id": 8184,
+    "heading": "il Dito di Dio",
+    "created": "2001-07-26 03:12:00",
+    "linked_file": null,
+    "hugo": "8184-il-dito-di-dio",
+    "date": "2001-07-26",
+    "time": "03:12:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "12",
+    "second": "00"
+  },
+  {
+    "id": 8189,
+    "heading": "400 persone a Salerno per Carlo Giuliani ucciso dalla polizia",
+    "created": "2001-07-25 08:20:54",
+    "linked_file": null,
+    "hugo": "8189-400-persone-a-salerno-per-carlo-giuliani-ucciso-dalla-polizia",
+    "date": "2001-07-25",
+    "time": "08:20:54",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "20",
+    "second": "54"
+  },
+  {
+    "id": 8195,
+    "heading": "L'inizio della nuova era fascista italiana",
+    "created": "2001-07-25 15:45:38",
+    "linked_file": "2001/07/berlusconicopertina6.jpg",
+    "hugo": "8195-linizio-della-nuova-era-fascista-italiana",
+    "date": "2001-07-25",
+    "time": "15:45:38",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "45",
+    "second": "38"
+  },
+  {
+    "id": 8196,
+    "heading": "400 persone a Salerno per Carlo Giuliani ucciso dalla polizia",
+    "created": "2001-07-25 08:25:58",
+    "linked_file": null,
+    "hugo": "8196-400-persone-a-salerno-per-carlo-giuliani-ucciso-dalla-polizia",
+    "date": "2001-07-25",
+    "time": "08:25:58",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "25",
+    "second": "58"
+  },
+  {
+    "id": 8198,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 08:26:17",
+    "linked_file": "2001/07/dscn0089.jpg",
+    "hugo": "8198-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "08:26:17",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "26",
+    "second": "17"
+  },
+  {
+    "id": 8199,
+    "heading": "C'eravate anche voi a Genova per il G8?",
+    "created": "2001-07-25 08:27:04",
+    "linked_file": null,
+    "hugo": "8199-ceravate-anche-voi-a-genova-per-il-g8",
+    "date": "2001-07-25",
+    "time": "08:27:04",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "27",
+    "second": "04"
+  },
+  {
+    "id": 8204,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 08:34:25",
+    "linked_file": "2001/07/dscn0108.jpg",
+    "hugo": "8204-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "08:34:25",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "34",
+    "second": "25"
+  },
+  {
+    "id": 8205,
+    "heading": "altri fermi di polizia / more searches of the police",
+    "created": "2001-07-25 09:00:11",
+    "linked_file": null,
+    "hugo": "8205-altri-fermi-di-polizia-more-searches-of-the-police",
+    "date": "2001-07-25",
+    "time": "09:00:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "00",
+    "second": "11"
+  },
+  {
+    "id": 8211,
+    "heading": "Cronaca dal carcere di Pavia",
+    "created": "2001-07-25 08:43:11",
+    "linked_file": "2001/07/iz7zmw.txt",
+    "hugo": "8211-cronaca-dal-carcere-di-pavia",
+    "date": "2001-07-25",
+    "time": "08:43:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "43",
+    "second": "11"
+  },
+  {
+    "id": 8213,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-26 04:33:59",
+    "linked_file": "2001/07/dscn0117.jpg",
+    "hugo": "8213-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-26",
+    "time": "04:33:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "33",
+    "second": "59"
+  },
+  {
+    "id": 8215,
+    "heading": "Agghiacciante testimonianza di due ragazzi spagnoli",
+    "created": "2001-07-25 10:54:37",
+    "linked_file": null,
+    "hugo": "8215-agghiacciante-testimonianza-di-due-ragazzi-spagnoli",
+    "date": "2001-07-25",
+    "time": "10:54:37",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "54",
+    "second": "37"
+  },
+  {
+    "id": 8216,
+    "heading": "Immagine satirica: 112 pronta somossa",
+    "created": "2001-07-26 03:24:03",
+    "linked_file": "2001/07/prontasomossa.gif",
+    "hugo": "8216-immagine-satirica-112-pronta-somossa",
+    "date": "2001-07-26",
+    "time": "03:24:03",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "24",
+    "second": "03"
+  },
+  {
+    "id": 8221,
+    "heading": "\"Modus Operandi of Lawlessness\"",
+    "created": "2001-07-25 09:36:25",
+    "linked_file": null,
+    "hugo": "8221-modus-operandi-of-lawlessness",
+    "date": "2001-07-25",
+    "time": "09:36:25",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "36",
+    "second": "25"
+  },
+  {
+    "id": 8230,
+    "heading": "Preoccupanti notizie da Genova",
+    "created": "2001-07-26 04:21:36",
+    "linked_file": null,
+    "hugo": "8230-preoccupanti-notizie-da-genova",
+    "date": "2001-07-26",
+    "time": "04:21:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "21",
+    "second": "36"
+  },
+  {
+    "id": 8232,
+    "heading": "COmunicato GSF su non convalida arresti",
+    "created": "2001-07-25 09:33:55",
+    "linked_file": null,
+    "hugo": "8232-comunicato-gsf-su-non-convalida-arresti",
+    "date": "2001-07-25",
+    "time": "09:33:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "33",
+    "second": "55"
+  },
+  {
+    "id": 8234,
+    "heading": "Why they are arresting as many people as possible",
+    "created": "2001-07-25 09:15:50",
+    "linked_file": null,
+    "hugo": "8234-why-they-are-arresting-as-many-people-as-possible",
+    "date": "2001-07-25",
+    "time": "09:15:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "15",
+    "second": "50"
+  },
+  {
+    "id": 8235,
+    "heading": "funerali carlo",
+    "created": "2001-07-27 04:42:54",
+    "linked_file": null,
+    "hugo": "8235-funerali-carlo",
+    "date": "2001-07-27",
+    "time": "04:42:54",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "42",
+    "second": "54"
+  },
+  {
+    "id": 8236,
+    "heading": "Why they are arresting as many people as possible",
+    "created": "2001-07-25 11:00:43",
+    "linked_file": null,
+    "hugo": "8236-why-they-are-arresting-as-many-people-as-possible",
+    "date": "2001-07-25",
+    "time": "11:00:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "00",
+    "second": "43"
+  },
+  {
+    "id": 8238,
+    "heading": "bologna 24/07/01 manifestazione contro la violenza",
+    "created": "2001-07-29 20:57:25",
+    "linked_file": "2001/07/totale1.jpg",
+    "hugo": "8238-bologna-240701-manifestazione-contro-la-violenza",
+    "date": "2001-07-29",
+    "time": "20:57:25",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "20",
+    "minute": "57",
+    "second": "25"
+  },
+  {
+    "id": 8239,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-25 12:15:37",
+    "linked_file": null,
+    "hugo": "8239-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-25",
+    "time": "12:15:37",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "15",
+    "second": "37"
+  },
+  {
+    "id": 8241,
+    "heading": "IO VOGLIO SAPERE",
+    "created": "2001-07-29 09:29:25",
+    "linked_file": null,
+    "hugo": "8241-io-voglio-sapere",
+    "date": "2001-07-29",
+    "time": "09:29:25",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "29",
+    "second": "25"
+  },
+  {
+    "id": 8253,
+    "heading": "Stralcio da \"Comici spaventati guerrieri\" di Stefano Benni",
+    "created": "2001-07-25 09:38:39",
+    "linked_file": null,
+    "hugo": "8253-stralcio-da-comici-spaventati-guerrieri-di-stefano-benni",
+    "date": "2001-07-25",
+    "time": "09:38:39",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "38",
+    "second": "39"
+  },
+  {
+    "id": 8266,
+    "heading": "ANSA 25/07/01",
+    "created": "2001-07-25 11:26:31",
+    "linked_file": null,
+    "hugo": "8266-ansa-250701",
+    "date": "2001-07-25",
+    "time": "11:26:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "26",
+    "second": "31"
+  },
+  {
+    "id": 8268,
+    "heading": "altra Foto manifestazione Roma 24/7/01: sotto tiro!",
+    "created": "2001-07-25 10:31:07",
+    "linked_file": "2001/07/g8d2.jpg",
+    "hugo": "8268-altra-foto-manifestazione-roma-24701-sotto-tiro",
+    "date": "2001-07-25",
+    "time": "10:31:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "31",
+    "second": "07"
+  },
+  {
+    "id": 8282,
+    "heading": "DIFFUSIONE DEL LIBRO BIANCO - 3",
+    "created": "2001-07-25 11:55:57",
+    "linked_file": null,
+    "hugo": "8282-diffusione-del-libro-bianco-3",
+    "date": "2001-07-25",
+    "time": "11:55:57",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "55",
+    "second": "57"
+  },
+  {
+    "id": 8285,
+    "heading": "Carlo Giuliani",
+    "created": "2001-07-25 10:19:14",
+    "linked_file": null,
+    "hugo": "8285-carlo-giuliani",
+    "date": "2001-07-25",
+    "time": "10:19:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "19",
+    "second": "14"
+  },
+  {
+    "id": 8291,
+    "heading": "requisizione",
+    "created": "2001-07-25 10:53:23",
+    "linked_file": null,
+    "hugo": "8291-requisizione",
+    "date": "2001-07-25",
+    "time": "10:53:23",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "53",
+    "second": "23"
+  },
+  {
+    "id": 8295,
+    "heading": "manifestazione",
+    "created": "2001-07-25 10:34:44",
+    "linked_file": null,
+    "hugo": "8295-manifestazione",
+    "date": "2001-07-25",
+    "time": "10:34:44",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "34",
+    "second": "44"
+  },
+  {
+    "id": 8296,
+    "heading": "3.500 personas en la manifestacion a Atenas (text and pictures)",
+    "created": "2001-07-28 10:12:26",
+    "linked_file": "2001/07/athens1.jpg",
+    "hugo": "8296-3500-personas-en-la-manifestacion-a-atenas-text-and-pictures",
+    "date": "2001-07-28",
+    "time": "10:12:26",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "12",
+    "second": "26"
+  },
+  {
+    "id": 8302,
+    "heading": "APPELLO",
+    "created": "2001-07-25 12:59:31",
+    "linked_file": null,
+    "hugo": "8302-appello",
+    "date": "2001-07-25",
+    "time": "12:59:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "59",
+    "second": "31"
+  },
+  {
+    "id": 8303,
+    "heading": "Contro l`accerchiamento del black bloc",
+    "created": "2001-07-26 06:49:00",
+    "linked_file": null,
+    "hugo": "8303-contro-laccerchiamento-del-black-bloc",
+    "date": "2001-07-26",
+    "time": "06:49:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "49",
+    "second": "00"
+  },
+  {
+    "id": 8304,
+    "heading": "ucciso per coprire assassinio di pacifica dimostrante?",
+    "created": "2001-07-26 03:27:52",
+    "linked_file": null,
+    "hugo": "8304-ucciso-per-coprire-assassinio-di-pacifica-dimostrante",
+    "date": "2001-07-26",
+    "time": "03:27:52",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "27",
+    "second": "52"
+  },
+  {
+    "id": 8318,
+    "heading": "IN MEMORIAM",
+    "created": "2001-07-26 01:30:05",
+    "linked_file": "2001/07/in_memoriam__.gif",
+    "hugo": "8318-in-memoriam",
+    "date": "2001-07-26",
+    "time": "01:30:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "30",
+    "second": "05"
+  },
+  {
+    "id": 8321,
+    "heading": "Solidarity demo in Hamburg, Germany (re-post)",
+    "created": "2001-07-25 20:35:20",
+    "linked_file": "2001/07/genoahhrvbpey.jpg",
+    "hugo": "8321-solidarity-demo-in-hamburg-germany-repost",
+    "date": "2001-07-25",
+    "time": "20:35:20",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "20",
+    "minute": "35",
+    "second": "20"
+  },
+  {
+    "id": 8323,
+    "heading": "Truncheons rained down on me in the battle of Genoa",
+    "created": "2001-07-25 14:33:46",
+    "linked_file": null,
+    "hugo": "8323-truncheons-rained-down-on-me-in-the-battle-of-genoa",
+    "date": "2001-07-25",
+    "time": "14:33:46",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "33",
+    "second": "46"
+  },
+  {
+    "id": 8325,
+    "heading": "The Guardian UK, Italian public say policing too tolerant",
+    "created": "2001-07-25 16:43:26",
+    "linked_file": null,
+    "hugo": "8325-the-guardian-uk-italian-public-say-policing-too-tolerant",
+    "date": "2001-07-25",
+    "time": "16:43:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "43",
+    "second": "26"
+  },
+  {
+    "id": 8326,
+    "heading": "Profeta in patria",
+    "created": "2001-07-25 13:39:30",
+    "linked_file": null,
+    "hugo": "8326-profeta-in-patria",
+    "date": "2001-07-25",
+    "time": "13:39:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "39",
+    "second": "30"
+  },
+  {
+    "id": 8339,
+    "heading": "Why the main modulation'enveiled the NSDAP/AO",
+    "created": "2001-07-25 13:49:01",
+    "linked_file": null,
+    "hugo": "8339-why-the-main-modulationenveiled-the-nsdapao",
+    "date": "2001-07-25",
+    "time": "13:49:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "49",
+    "second": "01"
+  },
+  {
+    "id": 8344,
+    "heading": "Ritorno alle origini",
+    "created": "2001-07-25 13:36:31",
+    "linked_file": null,
+    "hugo": "8344-ritorno-alle-origini",
+    "date": "2001-07-25",
+    "time": "13:36:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "36",
+    "second": "31"
+  },
+  {
+    "id": 8348,
+    "heading": "ancora da Pavia",
+    "created": "2001-07-25 17:21:30",
+    "linked_file": "2001/07/uwfhal.txt",
+    "hugo": "8348-ancora-da-pavia",
+    "date": "2001-07-25",
+    "time": "17:21:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "21",
+    "second": "30"
+  },
+  {
+    "id": 8349,
+    "heading": "OPEARAZIONE MAKAIA, UN FALLIMENTO?",
+    "created": "2001-07-25 14:17:14",
+    "linked_file": null,
+    "hugo": "8349-opearazione-makaia-un-fallimento",
+    "date": "2001-07-25",
+    "time": "14:17:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "17",
+    "second": "14"
+  },
+  {
+    "id": 8357,
+    "heading": "cerco notizie su due ragazzi spagnoli scomparsi (OT)",
+    "created": "2001-07-25 12:07:39",
+    "linked_file": null,
+    "hugo": "8357-cerco-notizie-su-due-ragazzi-spagnoli-scomparsi-ot",
+    "date": "2001-07-25",
+    "time": "12:07:39",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "07",
+    "second": "39"
+  },
+  {
+    "id": 8368,
+    "heading": "Sassi sul G8",
+    "created": "2001-07-25 12:29:31",
+    "linked_file": null,
+    "hugo": "8368-sassi-sul-g8",
+    "date": "2001-07-25",
+    "time": "12:29:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "29",
+    "second": "31"
+  },
+  {
+    "id": 8370,
+    "heading": "DA \"LA REPUBBLICA\" DI OGGI",
+    "created": "2001-07-25 14:58:14",
+    "linked_file": null,
+    "hugo": "8370-da-la-repubblica-di-oggi",
+    "date": "2001-07-25",
+    "time": "14:58:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "58",
+    "second": "14"
+  },
+  {
+    "id": 8371,
+    "heading": "BRASIL - SAO PAULO - MANIFESTACAO CONTRA O ASSASSINATO DE CARLO GIULIANO",
+    "created": "2001-07-25 12:38:19",
+    "linked_file": "2001/07/consul.jpg",
+    "hugo": "8371-brasil-sao-paulo-manifestacao-contra-o-assassinato-de-carlo-giuliano",
+    "date": "2001-07-25",
+    "time": "12:38:19",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "38",
+    "second": "19"
+  },
+  {
+    "id": 8373,
+    "heading": "COSA SI PUO' FARE CON LA DIVISA",
+    "created": "2001-07-29 12:27:07",
+    "linked_file": "2001/07/soppruso.jpg.jpg",
+    "hugo": "8373-cosa-si-puo-fare-con-la-divisa",
+    "date": "2001-07-29",
+    "time": "12:27:07",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "27",
+    "second": "07"
+  },
+  {
+    "id": 8385,
+    "heading": "Servizi segreti",
+    "created": "2001-07-25 13:14:40",
+    "linked_file": null,
+    "hugo": "8385-servizi-segreti",
+    "date": "2001-07-25",
+    "time": "13:14:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "14",
+    "second": "40"
+  },
+  {
+    "id": 8386,
+    "heading": "OSSERVAZIONI SULL'OPERAZIONE MAKAYA",
+    "created": "2001-07-25 18:18:07",
+    "linked_file": null,
+    "hugo": "8386-osservazioni-sulloperazione-makaya",
+    "date": "2001-07-25",
+    "time": "18:18:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "18",
+    "second": "07"
+  },
+  {
+    "id": 8387,
+    "heading": "domanda sui proiettili+sit-in a vicenza",
+    "created": "2001-07-25 18:11:09",
+    "linked_file": null,
+    "hugo": "8387-domanda-sui-proiettili+sitin-a-vicenza",
+    "date": "2001-07-25",
+    "time": "18:11:09",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "11",
+    "second": "09"
+  },
+  {
+    "id": 8391,
+    "heading": "Italian Consulate in Sao Paulo is blockaded by activists",
+    "created": "2001-07-25 14:32:48",
+    "linked_file": null,
+    "hugo": "8391-italian-consulate-in-sao-paulo-is-blockaded-by-activists",
+    "date": "2001-07-25",
+    "time": "14:32:48",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "32",
+    "second": "48"
+  },
+  {
+    "id": 8393,
+    "heading": "sequestrati in questura (PAVIA)",
+    "created": "2001-07-25 14:51:21",
+    "linked_file": "2001/07/klnbei.txt",
+    "hugo": "8393-sequestrati-in-questura-pavia",
+    "date": "2001-07-25",
+    "time": "14:51:21",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "51",
+    "second": "21"
+  },
+  {
+    "id": 8394,
+    "heading": "nonparla italiono",
+    "created": "2001-07-25 13:44:01",
+    "linked_file": "2001/07/graffiti_is_a_weaponskcemo.jpg",
+    "hugo": "8394-nonparla-italiono",
+    "date": "2001-07-25",
+    "time": "13:44:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "44",
+    "second": "01"
+  },
+  {
+    "id": 8396,
+    "heading": "g8",
+    "created": "2001-07-25 15:23:31",
+    "linked_file": "2001/07/g8yjtusi.jpg",
+    "hugo": "8396-g8",
+    "date": "2001-07-25",
+    "time": "15:23:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "23",
+    "second": "31"
+  },
+  {
+    "id": 8405,
+    "heading": "Sempre piu' incredibile!",
+    "created": "2001-07-25 14:31:23",
+    "linked_file": null,
+    "hugo": "8405-sempre-piu-incredibile",
+    "date": "2001-07-25",
+    "time": "14:31:23",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "31",
+    "second": "23"
+  },
+  {
+    "id": 8406,
+    "heading": "Sempre piu' incredibile!",
+    "created": "2001-07-26 03:04:34",
+    "linked_file": null,
+    "hugo": "8406-sempre-piu-incredibile",
+    "date": "2001-07-26",
+    "time": "03:04:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "04",
+    "second": "34"
+  },
+  {
+    "id": 8420,
+    "heading": "DA LA REPUBBLICA (ONLINE)",
+    "created": "2001-07-26 03:01:19",
+    "linked_file": null,
+    "hugo": "8420-da-la-repubblica-online",
+    "date": "2001-07-26",
+    "time": "03:01:19",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "01",
+    "second": "19"
+  },
+  {
+    "id": 8422,
+    "heading": "CORTE EUROPEA DEI DIRITTI UMANI",
+    "created": "2001-07-25 15:17:18",
+    "linked_file": null,
+    "hugo": "8422-corte-europea-dei-diritti-umani",
+    "date": "2001-07-25",
+    "time": "15:17:18",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "17",
+    "second": "18"
+  },
+  {
+    "id": 8427,
+    "heading": "manifestazioni in Austria",
+    "created": "2001-07-25 15:26:32",
+    "linked_file": null,
+    "hugo": "8427-manifestazioni-in-austria",
+    "date": "2001-07-25",
+    "time": "15:26:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "26",
+    "second": "32"
+  },
+  {
+    "id": 8440,
+    "heading": "Requiem in Italy and the World :: Genoa :: 20 July 2001",
+    "created": "2001-07-25 15:47:25",
+    "linked_file": null,
+    "hugo": "8440-requiem-in-italy-and-the-world-genoa-20-july-2001",
+    "date": "2001-07-25",
+    "time": "15:47:25",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "47",
+    "second": "25"
+  },
+  {
+    "id": 8443,
+    "heading": "Scompiglio nell'ultradestra per le infiltrazioni di camerati nel \"Black Bloc\"",
+    "created": "2001-07-26 02:34:13",
+    "linked_file": null,
+    "hugo": "8443-scompiglio-nellultradestra-per-le-infiltrazioni-di-camerati-nel-black-bloc",
+    "date": "2001-07-26",
+    "time": "02:34:13",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "34",
+    "second": "13"
+  },
+  {
+    "id": 8445,
+    "heading": "Indignazione in Germania per i fatti di Genova",
+    "created": "2001-07-25 16:21:55",
+    "linked_file": null,
+    "hugo": "8445-indignazione-in-germania-per-i-fatti-di-genova",
+    "date": "2001-07-25",
+    "time": "16:21:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "21",
+    "second": "55"
+  },
+  {
+    "id": 8452,
+    "heading": "eu acho é pouco",
+    "created": "2001-07-25 16:30:26",
+    "linked_file": null,
+    "hugo": "8452-eu-acho-e-pouco",
+    "date": "2001-07-25",
+    "time": "16:30:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "30",
+    "second": "26"
+  },
+  {
+    "id": 8454,
+    "heading": "Eu acho é pouco",
+    "created": "2001-07-25 17:53:00",
+    "linked_file": null,
+    "hugo": "8454-eu-acho-e-pouco",
+    "date": "2001-07-25",
+    "time": "17:53:00",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "53",
+    "second": "00"
+  },
+  {
+    "id": 8456,
+    "heading": "COllettivo universitario a disposizione per ritrovare i \"dispersi\" di Genova",
+    "created": "2001-07-25 17:22:43",
+    "linked_file": null,
+    "hugo": "8456-collettivo-universitario-a-disposizione-per-ritrovare-i-dispersi-di-genova",
+    "date": "2001-07-25",
+    "time": "17:22:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "22",
+    "second": "43"
+  },
+  {
+    "id": 8461,
+    "heading": "L'estintore era stato lanciato dai carabinieri verso i manifestanti?",
+    "created": "2001-07-27 12:45:33",
+    "linked_file": "2001/07/i1l3107k.jpg",
+    "hugo": "8461-lestintore-era-stato-lanciato-dai-carabinieri-verso-i-manifestanti",
+    "date": "2001-07-27",
+    "time": "12:45:33",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "45",
+    "second": "33"
+  },
+  {
+    "id": 8468,
+    "heading": "manifestazione a ginevra, Svizzera",
+    "created": "2001-07-25 17:12:26",
+    "linked_file": null,
+    "hugo": "8468-manifestazione-a-ginevra-svizzera",
+    "date": "2001-07-25",
+    "time": "17:12:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "12",
+    "second": "26"
+  },
+  {
+    "id": 8470,
+    "heading": "Schiacciati dalla violenza: Black Block e polizia.",
+    "created": "2001-07-25 17:55:40",
+    "linked_file": null,
+    "hugo": "8470-schiacciati-dalla-violenza-black-block-e-polizia",
+    "date": "2001-07-25",
+    "time": "17:55:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "55",
+    "second": "40"
+  },
+  {
+    "id": 8477,
+    "heading": "richiedo info su barcellona",
+    "created": "2001-07-25 18:59:30",
+    "linked_file": null,
+    "hugo": "8477-richiedo-info-su-barcellona",
+    "date": "2001-07-25",
+    "time": "18:59:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "59",
+    "second": "30"
+  },
+  {
+    "id": 8482,
+    "heading": "raid all'imc: la condanna dell'ass. int. giornalisti",
+    "created": "2001-07-25 18:01:22",
+    "linked_file": null,
+    "hugo": "8482-raid-allimc-la-condanna-dellass-int-giornalisti",
+    "date": "2001-07-25",
+    "time": "18:01:22",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "01",
+    "second": "22"
+  },
+  {
+    "id": 8484,
+    "heading": "LA TV ITALIANA CONTINUA A SPOSTARE IL TERRENO PER UCCIDERE IL GSF",
+    "created": "2001-07-26 01:43:41",
+    "linked_file": null,
+    "hugo": "8484-la-tv-italiana-continua-a-spostare-il-terreno-per-uccidere-il-gsf",
+    "date": "2001-07-26",
+    "time": "01:43:41",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "43",
+    "second": "41"
+  },
+  {
+    "id": 8486,
+    "heading": "Directory of pictures from Genoa.",
+    "created": "2001-07-26 00:14:17",
+    "linked_file": null,
+    "hugo": "8486-directory-of-pictures-from-genoa",
+    "date": "2001-07-26",
+    "time": "00:14:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "00",
+    "minute": "14",
+    "second": "17"
+  },
+  {
+    "id": 8495,
+    "heading": "L'estintore è stato lanciato dalla jeep conto i manifestanti?",
+    "created": "2001-07-27 05:53:40",
+    "linked_file": "2001/07/diapositiva4.jpg",
+    "hugo": "8495-lestintore-e-stato-lanciato-dalla-jeep-conto-i-manifestanti",
+    "date": "2001-07-27",
+    "time": "05:53:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "53",
+    "second": "40"
+  },
+  {
+    "id": 8496,
+    "heading": "strategie per distruggere il movimento.",
+    "created": "2001-07-25 18:16:17",
+    "linked_file": null,
+    "hugo": "8496-strategie-per-distruggere-il-movimento",
+    "date": "2001-07-25",
+    "time": "18:16:17",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "16",
+    "second": "17"
+  },
+  {
+    "id": 8499,
+    "heading": "strategie per distruggere il movimento...",
+    "created": "2001-07-26 02:28:24",
+    "linked_file": null,
+    "hugo": "8499-strategie-per-distruggere-il-movimento",
+    "date": "2001-07-26",
+    "time": "02:28:24",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "28",
+    "second": "24"
+  },
+  {
+    "id": 8500,
+    "heading": "Requiem in Italy and the World :: Genoa :: 20 July 2001",
+    "created": "2001-07-25 18:22:01",
+    "linked_file": null,
+    "hugo": "8500-requiem-in-italy-and-the-world-genoa-20-july-2001",
+    "date": "2001-07-25",
+    "time": "18:22:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "22",
+    "second": "01"
+  },
+  {
+    "id": 8504,
+    "heading": "Ancora 58 Tedeschi in arresto in Italia (dalla Sueddeutsche Zeitung) (Italian)",
+    "created": "2001-07-25 20:05:36",
+    "linked_file": null,
+    "hugo": "8504-ancora-58-tedeschi-in-arresto-in-italia-dalla-sueddeutsche-zeitung-italian",
+    "date": "2001-07-25",
+    "time": "20:05:36",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "20",
+    "minute": "05",
+    "second": "36"
+  },
+  {
+    "id": 8505,
+    "heading": "Comunicato della CdC della Federazione Anarchica",
+    "created": "2001-07-26 03:50:44",
+    "linked_file": null,
+    "hugo": "8505-comunicato-della-cdc-della-federazione-anarchica",
+    "date": "2001-07-26",
+    "time": "03:50:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "50",
+    "second": "44"
+  },
+  {
+    "id": 8509,
+    "heading": "[it] CENTENAIA DI PERSONE A MADRID PER I FATTI DI GENOVA",
+    "created": "2001-07-25 18:35:41",
+    "linked_file": null,
+    "hugo": "8509-it-centenaia-di-persone-a-madrid-per-i-fatti-di-genova",
+    "date": "2001-07-25",
+    "time": "18:35:41",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "35",
+    "second": "41"
+  },
+  {
+    "id": 8513,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 01:30:38",
+    "linked_file": null,
+    "hugo": "8513-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "01:30:38",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "30",
+    "second": "38"
+  },
+  {
+    "id": 8515,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-25 18:45:39",
+    "linked_file": null,
+    "hugo": "8515-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-25",
+    "time": "18:45:39",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "45",
+    "second": "39"
+  },
+  {
+    "id": 8517,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 03:20:12",
+    "linked_file": null,
+    "hugo": "8517-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "03:20:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "20",
+    "second": "12"
+  },
+  {
+    "id": 8522,
+    "heading": "Scontri di venerdi 20",
+    "created": "2001-07-30 09:03:03",
+    "linked_file": "2001/07/7.jpg",
+    "hugo": "8522-scontri-di-venerdi-20",
+    "date": "2001-07-30",
+    "time": "09:03:03",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "03",
+    "second": "03"
+  },
+  {
+    "id": 8524,
+    "heading": "...uno fra i tanti feriti...",
+    "created": "2001-07-25 19:10:48",
+    "linked_file": "2001/07/senza_titolo-15.jpg",
+    "hugo": "8524-uno-fra-i-tanti-feriti",
+    "date": "2001-07-25",
+    "time": "19:10:48",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "19",
+    "minute": "10",
+    "second": "48"
+  },
+  {
+    "id": 8533,
+    "heading": "actions in sweden",
+    "created": "2001-07-25 20:28:26",
+    "linked_file": "2001/07/hbaaav.jpg",
+    "hugo": "8533-actions-in-sweden",
+    "date": "2001-07-25",
+    "time": "20:28:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "20",
+    "minute": "28",
+    "second": "26"
+  },
+  {
+    "id": 8539,
+    "heading": "ultime sul sequestro (parte III)",
+    "created": "2001-07-25 23:37:54",
+    "linked_file": "2001/07/y2pqo1.txt",
+    "hugo": "8539-ultime-sul-sequestro-parte-iii",
+    "date": "2001-07-25",
+    "time": "23:37:54",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "23",
+    "minute": "37",
+    "second": "54"
+  },
+  {
+    "id": 8540,
+    "heading": "en, it, ca, fr, de) genoa info & solidarity on anarchist list",
+    "created": "2001-07-25 21:38:56",
+    "linked_file": null,
+    "hugo": "8540-en-it-ca-fr-de-genoa-info-solidarity-on-anarchist-list",
+    "date": "2001-07-25",
+    "time": "21:38:56",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "21",
+    "minute": "38",
+    "second": "56"
+  },
+  {
+    "id": 8541,
+    "heading": "International Progressive Librarians' Open Letter on Genoa",
+    "created": "2001-07-27 03:05:21",
+    "linked_file": null,
+    "hugo": "8541-international-progressive-librarians-open-letter-on-genoa",
+    "date": "2001-07-27",
+    "time": "03:05:21",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "03",
+    "minute": "05",
+    "second": "21"
+  },
+  {
+    "id": 8543,
+    "heading": "Genoa Social Forum, NONVIOLENT main umbrella of G8 countersummit. Raid \"Weapons\"",
+    "created": "2001-07-25 23:32:53",
+    "linked_file": null,
+    "hugo": "8543-genoa-social-forum-nonviolent-main-umbrella-of-g8-countersummit-raid-weapons",
+    "date": "2001-07-25",
+    "time": "23:32:53",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "23",
+    "minute": "32",
+    "second": "53"
+  },
+  {
+    "id": 8549,
+    "heading": "Sit-in a TERAMO - 25",
+    "created": "2001-07-26 00:04:50",
+    "linked_file": null,
+    "hugo": "8549-sitin-a-teramo-25",
+    "date": "2001-07-26",
+    "time": "00:04:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "00",
+    "minute": "04",
+    "second": "50"
+  },
+  {
+    "id": 8552,
+    "heading": "G8: A chi giova tutto cio`? [lungo]",
+    "created": "2001-07-26 07:59:11",
+    "linked_file": null,
+    "hugo": "8552-g8-a-chi-giova-tutto-cio-lungo",
+    "date": "2001-07-26",
+    "time": "07:59:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "59",
+    "second": "11"
+  },
+  {
+    "id": 8556,
+    "heading": "A TUTTI GLI ITALIANI",
+    "created": "2001-07-26 05:15:15",
+    "linked_file": null,
+    "hugo": "8556-a-tutti-gli-italiani",
+    "date": "2001-07-26",
+    "time": "05:15:15",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "15",
+    "second": "15"
+  },
+  {
+    "id": 8561,
+    "heading": "demonstrations in more than 120 cities around the world",
+    "created": "2001-07-26 05:00:51",
+    "linked_file": null,
+    "hugo": "8561-demonstrations-in-more-than-120-cities-around-the-world",
+    "date": "2001-07-26",
+    "time": "05:00:51",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "00",
+    "second": "51"
+  },
+  {
+    "id": 8577,
+    "heading": "Ancora Barbarie",
+    "created": "2001-07-26 02:57:01",
+    "linked_file": null,
+    "hugo": "8577-ancora-barbarie",
+    "date": "2001-07-26",
+    "time": "02:57:01",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "57",
+    "second": "01"
+  },
+  {
+    "id": 8578,
+    "heading": "nulla è come prima. in memory of Carlo giuliani",
+    "created": "2001-07-26 02:08:06",
+    "linked_file": null,
+    "hugo": "8578-nulla-e-come-prima-in-memory-of-carlo-giuliani",
+    "date": "2001-07-26",
+    "time": "02:08:06",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "08",
+    "second": "06"
+  },
+  {
+    "id": 8579,
+    "heading": "prefettura terni",
+    "created": "2001-07-26 02:12:44",
+    "linked_file": "2001/07/g84knwsdp.jpg",
+    "hugo": "8579-prefettura-terni",
+    "date": "2001-07-26",
+    "time": "02:12:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "12",
+    "second": "44"
+  },
+  {
+    "id": 8580,
+    "heading": "IL PROBLEMA.....E LA SOLUZIONE?....",
+    "created": "2001-07-26 03:01:34",
+    "linked_file": null,
+    "hugo": "8580-il-problemae-la-soluzione",
+    "date": "2001-07-26",
+    "time": "03:01:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "01",
+    "second": "34"
+  },
+  {
+    "id": 8585,
+    "heading": "STARWARS",
+    "created": "2001-07-26 02:28:58",
+    "linked_file": null,
+    "hugo": "8585-starwars",
+    "date": "2001-07-26",
+    "time": "02:28:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "28",
+    "second": "58"
+  },
+  {
+    "id": 8590,
+    "heading": "FUCK YES!!! A COP TESIFIES THE BRUTALITY!!!",
+    "created": "2001-07-26 10:04:20",
+    "linked_file": null,
+    "hugo": "8590-fuck-yes-a-cop-tesifies-the-brutality",
+    "date": "2001-07-26",
+    "time": "10:04:20",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "04",
+    "second": "20"
+  },
+  {
+    "id": 8602,
+    "heading": "Una proposta",
+    "created": "2001-07-26 06:15:56",
+    "linked_file": null,
+    "hugo": "8602-una-proposta",
+    "date": "2001-07-26",
+    "time": "06:15:56",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "15",
+    "second": "56"
+  },
+  {
+    "id": 8607,
+    "heading": "no comment",
+    "created": "2001-07-26 09:34:34",
+    "linked_file": null,
+    "hugo": "8607-no-comment",
+    "date": "2001-07-26",
+    "time": "09:34:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "34",
+    "second": "34"
+  },
+  {
+    "id": 8609,
+    "heading": "Solidarity actions in Israel",
+    "created": "2001-07-26 03:21:53",
+    "linked_file": "2001/07/genuatelaviv.jpg",
+    "hugo": "8609-solidarity-actions-in-israel",
+    "date": "2001-07-26",
+    "time": "03:21:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "21",
+    "second": "53"
+  },
+  {
+    "id": 8613,
+    "heading": "Tortured Spaniard back in Spain",
+    "created": "2001-07-26 03:24:22",
+    "linked_file": null,
+    "hugo": "8613-tortured-spaniard-back-in-spain",
+    "date": "2001-07-26",
+    "time": "03:24:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "24",
+    "second": "22"
+  },
+  {
+    "id": 8621,
+    "heading": "COP CONFESSES: \"IT'S ALL TRUE\"",
+    "created": "2001-07-26 08:21:57",
+    "linked_file": null,
+    "hugo": "8621-cop-confesses-its-all-true",
+    "date": "2001-07-26",
+    "time": "08:21:57",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "21",
+    "second": "57"
+  },
+  {
+    "id": 8628,
+    "heading": "A volte ritornano",
+    "created": "2001-07-26 06:23:58",
+    "linked_file": null,
+    "hugo": "8628-a-volte-ritornano",
+    "date": "2001-07-26",
+    "time": "06:23:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "23",
+    "second": "58"
+  },
+  {
+    "id": 8631,
+    "heading": "xche",
+    "created": "2001-07-26 04:30:53",
+    "linked_file": null,
+    "hugo": "8631-xche",
+    "date": "2001-07-26",
+    "time": "04:30:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "30",
+    "second": "53"
+  },
+  {
+    "id": 8638,
+    "heading": "quali argomenti?",
+    "created": "2001-07-26 05:02:22",
+    "linked_file": null,
+    "hugo": "8638-quali-argomenti",
+    "date": "2001-07-26",
+    "time": "05:02:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "02",
+    "second": "22"
+  },
+  {
+    "id": 8640,
+    "heading": "PLEASE, SPREAD THIS MESSAGE - PER FAVORE, DIFFONDI QUESTO MESSAGGIO",
+    "created": "2001-07-26 04:06:55",
+    "linked_file": null,
+    "hugo": "8640-please-spread-this-message-per-favore-diffondi-questo-messaggio",
+    "date": "2001-07-26",
+    "time": "04:06:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "06",
+    "second": "55"
+  },
+  {
+    "id": 8643,
+    "heading": "Fuori Orario è stato oscurato?",
+    "created": "2001-07-26 06:20:00",
+    "linked_file": null,
+    "hugo": "8643-fuori-orario-e-stato-oscurato",
+    "date": "2001-07-26",
+    "time": "06:20:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "20",
+    "second": "00"
+  },
+  {
+    "id": 8652,
+    "heading": "Testimonianze",
+    "created": "2001-07-26 06:40:58",
+    "linked_file": "2001/07/genovachiara.doc",
+    "hugo": "8652-testimonianze",
+    "date": "2001-07-26",
+    "time": "06:40:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "40",
+    "second": "58"
+  },
+  {
+    "id": 8659,
+    "heading": "Genova stories",
+    "created": "2001-07-26 04:15:28",
+    "linked_file": "2001/07/tesroby.doc",
+    "hugo": "8659-genova-stories",
+    "date": "2001-07-26",
+    "time": "04:15:28",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "15",
+    "second": "28"
+  },
+  {
+    "id": 8674,
+    "heading": "Un poliziotto racconta la notte del blitz \"cileno\"",
+    "created": "2001-07-26 05:48:14",
+    "linked_file": null,
+    "hugo": "8674-un-poliziotto-racconta-la-notte-del-blitz-cileno",
+    "date": "2001-07-26",
+    "time": "05:48:14",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "48",
+    "second": "14"
+  },
+  {
+    "id": 8676,
+    "heading": ".... oh when the saints, go march in INN",
+    "created": "2001-07-26 05:00:12",
+    "linked_file": null,
+    "hugo": "8676-oh-when-the-saints-go-march-in-inn",
+    "date": "2001-07-26",
+    "time": "05:00:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "00",
+    "second": "12"
+  },
+  {
+    "id": 8683,
+    "heading": "[ESCAPE CAPTIVITY] - Aggiornamenti e nuovo appello per il libro bianco",
+    "created": "2001-07-26 04:58:06",
+    "linked_file": "2001/07/image_0052__escape_captivity_0004.jpg",
+    "hugo": "8683-escape-captivity-aggiornamenti-e-nuovo-appello-per-il-libro-bianco",
+    "date": "2001-07-26",
+    "time": "04:58:06",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "58",
+    "second": "06"
+  },
+  {
+    "id": 8692,
+    "heading": "G8: questura, infiltrati neonazisti contro polizia /G8:  police headquarters, in",
+    "created": "2001-07-26 05:10:25",
+    "linked_file": null,
+    "hugo": "8692-g8-questura-infiltrati-neonazisti-contro-polizia-g8-police-headquarters-in",
+    "date": "2001-07-26",
+    "time": "05:10:25",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "10",
+    "second": "25"
+  },
+  {
+    "id": 8693,
+    "heading": "NEONAZISTI ITALIANI INFILTRATI NEL CORTEO",
+    "created": "2001-07-26 07:22:10",
+    "linked_file": null,
+    "hugo": "8693-neonazisti-italiani-infiltrati-nel-corteo",
+    "date": "2001-07-26",
+    "time": "07:22:10",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "22",
+    "second": "10"
+  },
+  {
+    "id": 8694,
+    "heading": "Fascisti infiltrati: è dimostrato",
+    "created": "2001-07-29 19:31:04",
+    "linked_file": null,
+    "hugo": "8694-fascisti-infiltrati-e-dimostrato",
+    "date": "2001-07-29",
+    "time": "19:31:04",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "19",
+    "minute": "31",
+    "second": "04"
+  },
+  {
+    "id": 8695,
+    "heading": "NON BISOGNA AVER PAURA DI DENCIARE!!!!!! LEGGI L'ARTICOLO DA REPUBBLICA ONLINE",
+    "created": "2001-07-26 06:12:35",
+    "linked_file": null,
+    "hugo": "8695-non-bisogna-aver-paura-di-denciare-leggi-larticolo-da-repubblica-online",
+    "date": "2001-07-26",
+    "time": "06:12:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "12",
+    "second": "35"
+  },
+  {
+    "id": 8696,
+    "heading": "credibilità",
+    "created": "2001-07-26 06:07:17",
+    "linked_file": null,
+    "hugo": "8696-credibilita",
+    "date": "2001-07-26",
+    "time": "06:07:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "07",
+    "second": "17"
+  },
+  {
+    "id": 8697,
+    "heading": "Body Bags???",
+    "created": "2001-07-26 07:18:11",
+    "linked_file": null,
+    "hugo": "8697-body-bags",
+    "date": "2001-07-26",
+    "time": "07:18:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "18",
+    "second": "11"
+  },
+  {
+    "id": 8702,
+    "heading": "Plizziotto o Carabiniere devasta una banca",
+    "created": "2001-07-26 07:36:16",
+    "linked_file": null,
+    "hugo": "8702-plizziotto-o-carabiniere-devasta-una-banca",
+    "date": "2001-07-26",
+    "time": "07:36:16",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "36",
+    "second": "16"
+  },
+  {
+    "id": 8705,
+    "heading": "TESTIMONIANZA DELL'ASSASSINIO DI CARLO",
+    "created": "2001-07-26 06:40:32",
+    "linked_file": null,
+    "hugo": "8705-testimonianza-dellassassinio-di-carlo",
+    "date": "2001-07-26",
+    "time": "06:40:32",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "40",
+    "second": "32"
+  },
+  {
+    "id": 8708,
+    "heading": "Tutti gli articoli della Repubblica di oggi",
+    "created": "2001-07-26 05:38:02",
+    "linked_file": "2001/07/testimonianzeg8.doc",
+    "hugo": "8708-tutti-gli-articoli-della-repubblica-di-oggi",
+    "date": "2001-07-26",
+    "time": "05:38:02",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "38",
+    "second": "02"
+  },
+  {
+    "id": 8709,
+    "heading": "Psych treatment for \"nervous\" protesters?",
+    "created": "2001-07-26 05:30:50",
+    "linked_file": null,
+    "hugo": "8709-psych-treatment-for-nervous-protesters",
+    "date": "2001-07-26",
+    "time": "05:30:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "30",
+    "second": "50"
+  },
+  {
+    "id": 8715,
+    "heading": "Nicht ideologisch blockieren: Judo-Prinzip",
+    "created": "2001-07-26 05:43:59",
+    "linked_file": null,
+    "hugo": "8715-nicht-ideologisch-blockieren-judoprinzip",
+    "date": "2001-07-26",
+    "time": "05:43:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "43",
+    "second": "59"
+  },
+  {
+    "id": 8723,
+    "heading": "nulla è come prima. in memory of Carlo Giuliani",
+    "created": "2001-07-26 06:52:10",
+    "linked_file": null,
+    "hugo": "8723-nulla-e-come-prima-in-memory-of-carlo-giuliani",
+    "date": "2001-07-26",
+    "time": "06:52:10",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "52",
+    "second": "10"
+  },
+  {
+    "id": 8726,
+    "heading": "credi alle favole?",
+    "created": "2001-07-26 07:39:02",
+    "linked_file": null,
+    "hugo": "8726-credi-alle-favole",
+    "date": "2001-07-26",
+    "time": "07:39:02",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "39",
+    "second": "02"
+  },
+  {
+    "id": 8727,
+    "heading": "The importance of a complaints book",
+    "created": "2001-07-31 22:44:18",
+    "linked_file": null,
+    "hugo": "8727-the-importance-of-a-complaints-book",
+    "date": "2001-07-31",
+    "time": "22:44:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "22",
+    "minute": "44",
+    "second": "18"
+  },
+  {
+    "id": 8728,
+    "heading": "posso profetizzare una persecuzione?...",
+    "created": "2001-07-26 06:46:55",
+    "linked_file": null,
+    "hugo": "8728-posso-profetizzare-una-persecuzione",
+    "date": "2001-07-26",
+    "time": "06:46:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "46",
+    "second": "55"
+  },
+  {
+    "id": 8729,
+    "heading": "l'opinione di un magistrato",
+    "created": "2001-07-26 09:16:21",
+    "linked_file": null,
+    "hugo": "8729-lopinione-di-un-magistrato",
+    "date": "2001-07-26",
+    "time": "09:16:21",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "16",
+    "second": "21"
+  },
+  {
+    "id": 8735,
+    "heading": "Dove sono!!!",
+    "created": "2001-07-26 09:01:57",
+    "linked_file": null,
+    "hugo": "8735-dove-sono",
+    "date": "2001-07-26",
+    "time": "09:01:57",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "01",
+    "second": "57"
+  },
+  {
+    "id": 8736,
+    "heading": "IL GOVERNO SAPEVA",
+    "created": "2001-07-26 08:07:53",
+    "linked_file": null,
+    "hugo": "8736-il-governo-sapeva",
+    "date": "2001-07-26",
+    "time": "08:07:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "07",
+    "second": "53"
+  },
+  {
+    "id": 8740,
+    "heading": "Comunicato del 25/07/2001",
+    "created": "2001-07-26 09:22:42",
+    "linked_file": null,
+    "hugo": "8740-comunicato-del-25072001",
+    "date": "2001-07-26",
+    "time": "09:22:42",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "22",
+    "second": "42"
+  },
+  {
+    "id": 8745,
+    "heading": "genova per noi",
+    "created": "2001-07-26 07:10:34",
+    "linked_file": null,
+    "hugo": "8745-genova-per-noi",
+    "date": "2001-07-26",
+    "time": "07:10:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "10",
+    "second": "34"
+  },
+  {
+    "id": 8758,
+    "heading": "testimonianze di medici su http://www.mir.it",
+    "created": "2001-07-26 06:58:51",
+    "linked_file": null,
+    "hugo": "8758-testimonianze-di-medici-su-httpwwwmirit",
+    "date": "2001-07-26",
+    "time": "06:58:51",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "58",
+    "second": "51"
+  },
+  {
+    "id": 8759,
+    "heading": "Cities of Protest (actualized)",
+    "created": "2001-07-26 08:41:11",
+    "linked_file": null,
+    "hugo": "8759-cities-of-protest-actualized",
+    "date": "2001-07-26",
+    "time": "08:41:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "41",
+    "second": "11"
+  },
+  {
+    "id": 8762,
+    "heading": "info Genova",
+    "created": "2001-07-26 06:59:57",
+    "linked_file": null,
+    "hugo": "8762-info-genova",
+    "date": "2001-07-26",
+    "time": "06:59:57",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "59",
+    "second": "57"
+  },
+  {
+    "id": 8765,
+    "heading": "Alternative media in Genoa",
+    "created": "2001-07-26 07:03:40",
+    "linked_file": null,
+    "hugo": "8765-alternative-media-in-genoa",
+    "date": "2001-07-26",
+    "time": "07:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 8773,
+    "heading": "Uno dei tanti pestaggi",
+    "created": "2001-07-26 07:29:28",
+    "linked_file": "2001/07/dopoaifzrz.jpg",
+    "hugo": "8773-uno-dei-tanti-pestaggi",
+    "date": "2001-07-26",
+    "time": "07:29:28",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "29",
+    "second": "28"
+  },
+  {
+    "id": 8781,
+    "heading": "FORSE LI SODOMIZZANO (facendogli cantare \"faccetta nera\", che tanto gli piace)",
+    "created": "2001-07-26 07:33:16",
+    "linked_file": null,
+    "hugo": "8781-forse-li-sodomizzano-facendogli-cantare-faccetta-nera-che-tanto-gli-piace",
+    "date": "2001-07-26",
+    "time": "07:33:16",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "33",
+    "second": "16"
+  },
+  {
+    "id": 8782,
+    "heading": "Lettera di un padre venuto a Genova per proteggere sua figlia [it/en]",
+    "created": "2001-07-26 08:07:31",
+    "linked_file": null,
+    "hugo": "8782-lettera-di-un-padre-venuto-a-genova-per-proteggere-sua-figlia-iten",
+    "date": "2001-07-26",
+    "time": "08:07:31",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "07",
+    "second": "31"
+  },
+  {
+    "id": 8783,
+    "heading": "Un cronista pestato alla Diaz racconta",
+    "created": "2001-07-26 08:15:05",
+    "linked_file": null,
+    "hugo": "8783-un-cronista-pestato-alla-diaz-racconta",
+    "date": "2001-07-26",
+    "time": "08:15:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "15",
+    "second": "05"
+  },
+  {
+    "id": 8794,
+    "heading": "AUTOPSIA FASULLA? OMISSIONI D'ATTI DI UFFICIO PER PROCURA E  VERTICI DELL'ARMA?",
+    "created": "2001-07-26 17:19:20",
+    "linked_file": null,
+    "hugo": "8794-autopsia-fasulla-omissioni-datti-di-ufficio-per-procura-e-vertici-dellarma",
+    "date": "2001-07-26",
+    "time": "17:19:20",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "17",
+    "minute": "19",
+    "second": "20"
+  },
+  {
+    "id": 8800,
+    "heading": "Balthazar Garzon, brave judges and lawyers everywhere: MAKE THEM PAY",
+    "created": "2001-07-26 09:56:07",
+    "linked_file": null,
+    "hugo": "8800-balthazar-garzon-brave-judges-and-lawyers-everywhere-make-them-pay",
+    "date": "2001-07-26",
+    "time": "09:56:07",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "56",
+    "second": "07"
+  },
+  {
+    "id": 8806,
+    "heading": "è.....è stao...poteva essere....",
+    "created": "2001-07-26 10:07:12",
+    "linked_file": null,
+    "hugo": "8806-ee-staopoteva-essere",
+    "date": "2001-07-26",
+    "time": "10:07:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "07",
+    "second": "12"
+  },
+  {
+    "id": 8814,
+    "heading": "Elementos para una síntesis de las luchas globales.",
+    "created": "2001-07-26 10:29:01",
+    "linked_file": null,
+    "hugo": "8814-elementos-para-una-sintesis-de-las-luchas-globales",
+    "date": "2001-07-26",
+    "time": "10:29:01",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "29",
+    "second": "01"
+  },
+  {
+    "id": 8816,
+    "heading": "O YES, YES!!!",
+    "created": "2001-07-26 10:59:35",
+    "linked_file": null,
+    "hugo": "8816-o-yes-yes",
+    "date": "2001-07-26",
+    "time": "10:59:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "59",
+    "second": "35"
+  },
+  {
+    "id": 8819,
+    "heading": "Teniamoli d'occhio... tutti!!",
+    "created": "2001-07-26 08:50:36",
+    "linked_file": null,
+    "hugo": "8819-teniamoli-docchio-tutti",
+    "date": "2001-07-26",
+    "time": "08:50:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "50",
+    "second": "36"
+  },
+  {
+    "id": 8823,
+    "heading": "scavalcano e ignorano la giustizia",
+    "created": "2001-07-26 09:15:53",
+    "linked_file": null,
+    "hugo": "8823-scavalcano-e-ignorano-la-giustizia",
+    "date": "2001-07-26",
+    "time": "09:15:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "15",
+    "second": "53"
+  },
+  {
+    "id": 8827,
+    "heading": "Una trappola per Carlo Giuliani?",
+    "created": "2001-07-27 14:32:46",
+    "linked_file": null,
+    "hugo": "8827-una-trappola-per-carlo-giuliani",
+    "date": "2001-07-27",
+    "time": "14:32:46",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "32",
+    "second": "46"
+  },
+  {
+    "id": 8828,
+    "heading": "SINDACATO GUARDIA DI FINANZA",
+    "created": "2001-07-26 09:53:30",
+    "linked_file": null,
+    "hugo": "8828-sindacato-guardia-di-finanza",
+    "date": "2001-07-26",
+    "time": "09:53:30",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "53",
+    "second": "30"
+  },
+  {
+    "id": 8829,
+    "heading": "Spinte e schiaffi agli operai.",
+    "created": "2001-07-26 09:43:59",
+    "linked_file": null,
+    "hugo": "8829-spinte-e-schiaffi-agli-operai",
+    "date": "2001-07-26",
+    "time": "09:43:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "43",
+    "second": "59"
+  },
+  {
+    "id": 8836,
+    "heading": "FORZA NUOVA ERA A GENOVA",
+    "created": "2001-07-27 21:01:02",
+    "linked_file": null,
+    "hugo": "8836-forza-nuova-era-a-genova",
+    "date": "2001-07-27",
+    "time": "21:01:02",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "21",
+    "minute": "01",
+    "second": "02"
+  },
+  {
+    "id": 8846,
+    "heading": "CASTELLI: <<A BOLZANETO NON HO VISTO VIOLENZE>>",
+    "created": "2001-07-26 09:26:26",
+    "linked_file": null,
+    "hugo": "8846-castelli-a-bolzaneto-non-ho-visto-violenze",
+    "date": "2001-07-26",
+    "time": "09:26:26",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "26",
+    "second": "26"
+  },
+  {
+    "id": 8851,
+    "heading": "CASTELLI: <<A BOLZANETO NON HO VISTO VIOLENZE>>",
+    "created": "2001-07-26 12:34:19",
+    "linked_file": null,
+    "hugo": "8851-castelli-a-bolzaneto-non-ho-visto-violenze",
+    "date": "2001-07-26",
+    "time": "12:34:19",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "34",
+    "second": "19"
+  },
+  {
+    "id": 8855,
+    "heading": "«Neonazisti infiltrati nel corteo»",
+    "created": "2001-07-26 11:17:53",
+    "linked_file": null,
+    "hugo": "8855-neonazisti-infiltrati-nel-corteo",
+    "date": "2001-07-26",
+    "time": "11:17:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "17",
+    "second": "53"
+  },
+  {
+    "id": 8857,
+    "heading": "Teniamoli d'occhio... tutti!!",
+    "created": "2001-07-26 10:19:00",
+    "linked_file": null,
+    "hugo": "8857-teniamoli-docchio-tutti",
+    "date": "2001-07-26",
+    "time": "10:19:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "19",
+    "second": "00"
+  },
+  {
+    "id": 8858,
+    "heading": "Occhi aperti!!!",
+    "created": "2001-07-26 10:58:35",
+    "linked_file": null,
+    "hugo": "8858-occhi-aperti",
+    "date": "2001-07-26",
+    "time": "10:58:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "58",
+    "second": "35"
+  },
+  {
+    "id": 8883,
+    "heading": "MAINSTREAM MEDIA LIES",
+    "created": "2001-07-26 12:23:06",
+    "linked_file": "2001/07/cbs1.gif",
+    "hugo": "8883-mainstream-media-lies",
+    "date": "2001-07-26",
+    "time": "12:23:06",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "23",
+    "second": "06"
+  },
+  {
+    "id": 8885,
+    "heading": "Mazzate anche a Parma",
+    "created": "2001-07-26 10:28:31",
+    "linked_file": null,
+    "hugo": "8885-mazzate-anche-a-parma",
+    "date": "2001-07-26",
+    "time": "10:28:31",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "28",
+    "second": "31"
+  },
+  {
+    "id": 8890,
+    "heading": "Infermiere, e allora?",
+    "created": "2001-07-26 10:06:36",
+    "linked_file": null,
+    "hugo": "8890-infermiere-e-allora",
+    "date": "2001-07-26",
+    "time": "10:06:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "06",
+    "second": "36"
+  },
+  {
+    "id": 8891,
+    "heading": "Infermiere, e allora?",
+    "created": "2001-07-26 10:06:50",
+    "linked_file": "2001/07/infermiere.jpg",
+    "hugo": "8891-infermiere-e-allora",
+    "date": "2001-07-26",
+    "time": "10:06:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "06",
+    "second": "50"
+  },
+  {
+    "id": 8899,
+    "heading": "BLACK POLICE BLOCK",
+    "created": "2001-07-26 10:23:55",
+    "linked_file": null,
+    "hugo": "8899-black-police-block",
+    "date": "2001-07-26",
+    "time": "10:23:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "23",
+    "second": "55"
+  },
+  {
+    "id": 8900,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 1",
+    "created": "2001-07-26 10:24:36",
+    "linked_file": null,
+    "hugo": "8900-a-womble-in-genoa-part-1",
+    "date": "2001-07-26",
+    "time": "10:24:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "24",
+    "second": "36"
+  },
+  {
+    "id": 8901,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 2",
+    "created": "2001-07-26 10:26:22",
+    "linked_file": null,
+    "hugo": "8901-a-womble-in-genoa-part-2",
+    "date": "2001-07-26",
+    "time": "10:26:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "26",
+    "second": "22"
+  },
+  {
+    "id": 8902,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 3",
+    "created": "2001-07-26 11:08:00",
+    "linked_file": null,
+    "hugo": "8902-a-womble-in-genoa-part-3",
+    "date": "2001-07-26",
+    "time": "11:08:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "08",
+    "second": "00"
+  },
+  {
+    "id": 8905,
+    "heading": "A TUTTI GLI ITALIANI",
+    "created": "2001-07-26 15:06:46",
+    "linked_file": null,
+    "hugo": "8905-a-tutti-gli-italiani",
+    "date": "2001-07-26",
+    "time": "15:06:46",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "06",
+    "second": "46"
+  },
+  {
+    "id": 8908,
+    "heading": "AUTODIFESA",
+    "created": "2001-07-26 10:38:36",
+    "linked_file": null,
+    "hugo": "8908-autodifesa",
+    "date": "2001-07-26",
+    "time": "10:38:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "38",
+    "second": "36"
+  },
+  {
+    "id": 8909,
+    "heading": "DOVE SONO?",
+    "created": "2001-07-26 14:11:27",
+    "linked_file": null,
+    "hugo": "8909-dove-sono",
+    "date": "2001-07-26",
+    "time": "14:11:27",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "11",
+    "second": "27"
+  },
+  {
+    "id": 8914,
+    "heading": "1000 Manifestants a Genève",
+    "created": "2001-07-26 12:38:55",
+    "linked_file": "2001/07/pic00057.jpg",
+    "hugo": "8914-1000-manifestants-a-geneve",
+    "date": "2001-07-26",
+    "time": "12:38:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "38",
+    "second": "55"
+  },
+  {
+    "id": 8916,
+    "heading": "Verbale di sequestro",
+    "created": "2001-07-26 16:33:11",
+    "linked_file": null,
+    "hugo": "8916-verbale-di-sequestro",
+    "date": "2001-07-26",
+    "time": "16:33:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "33",
+    "second": "11"
+  },
+  {
+    "id": 8918,
+    "heading": "genoaResistance site is up and running",
+    "created": "2001-07-26 11:18:05",
+    "linked_file": null,
+    "hugo": "8918-genoaresistance-site-is-up-and-running",
+    "date": "2001-07-26",
+    "time": "11:18:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "18",
+    "second": "05"
+  },
+  {
+    "id": 8920,
+    "heading": "Osservate",
+    "created": "2001-07-27 05:46:23",
+    "linked_file": null,
+    "hugo": "8920-osservate",
+    "date": "2001-07-27",
+    "time": "05:46:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "46",
+    "second": "23"
+  },
+  {
+    "id": 8922,
+    "heading": "Sulla Violenza",
+    "created": "2001-07-26 13:05:54",
+    "linked_file": null,
+    "hugo": "8922-sulla-violenza",
+    "date": "2001-07-26",
+    "time": "13:05:54",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "13",
+    "minute": "05",
+    "second": "54"
+  },
+  {
+    "id": 8924,
+    "heading": "STANNO GIA' RITRATTANDO",
+    "created": "2001-07-26 19:08:50",
+    "linked_file": null,
+    "hugo": "8924-stanno-gia-ritrattando",
+    "date": "2001-07-26",
+    "time": "19:08:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "08",
+    "second": "50"
+  },
+  {
+    "id": 8926,
+    "heading": "PER SCAJOLA LA MATTANZA ERA UNA NORMALE OPERAZIONE DI ORDINE PUBBLICO",
+    "created": "2001-07-26 16:35:41",
+    "linked_file": null,
+    "hugo": "8926-per-scajola-la-mattanza-era-una-normale-operazione-di-ordine-pubblico",
+    "date": "2001-07-26",
+    "time": "16:35:41",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "35",
+    "second": "41"
+  },
+  {
+    "id": 8929,
+    "heading": "BLITZ DIAZ; ANNA E JOSE',PICCHIATI CON MANGANELLI E SEDIE",
+    "created": "2001-07-26 16:21:34",
+    "linked_file": null,
+    "hugo": "8929-blitz-diaz-anna-e-josepicchiati-con-manganelli-e-sedie",
+    "date": "2001-07-26",
+    "time": "16:21:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "21",
+    "second": "34"
+  },
+  {
+    "id": 8930,
+    "heading": "BLITZ DIAZ; COWELL, FINTO MORTO MA POI ANCORA BOTTE",
+    "created": "2001-07-26 15:48:08",
+    "linked_file": null,
+    "hugo": "8930-blitz-diaz-cowell-finto-morto-ma-poi-ancora-botte",
+    "date": "2001-07-26",
+    "time": "15:48:08",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "48",
+    "second": "08"
+  },
+  {
+    "id": 8933,
+    "heading": "BLITZ DIAZ; COWELL, FINTO MORTO MA POI ANCORA BOTTE",
+    "created": "2001-07-26 11:48:22",
+    "linked_file": null,
+    "hugo": "8933-blitz-diaz-cowell-finto-morto-ma-poi-ancora-botte",
+    "date": "2001-07-26",
+    "time": "11:48:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "48",
+    "second": "22"
+  },
+  {
+    "id": 8938,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 18:48:17",
+    "linked_file": null,
+    "hugo": "8938-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "18:48:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "48",
+    "second": "17"
+  },
+  {
+    "id": 8941,
+    "heading": "TESTIMONIANZA DELL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 13:07:47",
+    "linked_file": null,
+    "hugo": "8941-testimonianza-dellomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "13:07:47",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "13",
+    "minute": "07",
+    "second": "47"
+  },
+  {
+    "id": 8943,
+    "heading": "Basterà un risarcimento di 300 milioni?",
+    "created": "2001-07-26 12:06:28",
+    "linked_file": null,
+    "hugo": "8943-bastera-un-risarcimento-di-300-milioni",
+    "date": "2001-07-26",
+    "time": "12:06:28",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "06",
+    "second": "28"
+  },
+  {
+    "id": 8944,
+    "heading": "Arriba el Diablo: F.M.I.",
+    "created": "2001-07-26 18:28:03",
+    "linked_file": null,
+    "hugo": "8944-arriba-el-diablo-fmi",
+    "date": "2001-07-26",
+    "time": "18:28:03",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "28",
+    "second": "03"
+  },
+  {
+    "id": 8946,
+    "heading": "D'ALEMA S'E' BEVUTO IL CERVELLO",
+    "created": "2001-07-26 20:42:27",
+    "linked_file": null,
+    "hugo": "8946-dalema-se-bevuto-il-cervello",
+    "date": "2001-07-26",
+    "time": "20:42:27",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "20",
+    "minute": "42",
+    "second": "27"
+  },
+  {
+    "id": 8948,
+    "heading": "...IO AL POSTO LORO SCAPPEREI...",
+    "created": "2001-07-26 14:01:47",
+    "linked_file": null,
+    "hugo": "8948-io-al-posto-loro-scapperei",
+    "date": "2001-07-26",
+    "time": "14:01:47",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "01",
+    "second": "47"
+  },
+  {
+    "id": 8949,
+    "heading": "Basterà un risarcimento di 300 milioni?",
+    "created": "2001-07-26 12:17:45",
+    "linked_file": null,
+    "hugo": "8949-bastera-un-risarcimento-di-300-milioni",
+    "date": "2001-07-26",
+    "time": "12:17:45",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "17",
+    "second": "45"
+  },
+  {
+    "id": 8951,
+    "heading": "Le poco sinuose curve di Laffer",
+    "created": "2001-07-26 12:17:46",
+    "linked_file": null,
+    "hugo": "8951-le-poco-sinuose-curve-di-laffer",
+    "date": "2001-07-26",
+    "time": "12:17:46",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "17",
+    "second": "46"
+  },
+  {
+    "id": 8952,
+    "heading": "Le poco sinuose curve di Laffer",
+    "created": "2001-07-26 18:51:17",
+    "linked_file": null,
+    "hugo": "8952-le-poco-sinuose-curve-di-laffer",
+    "date": "2001-07-26",
+    "time": "18:51:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "51",
+    "second": "17"
+  },
+  {
+    "id": 8967,
+    "heading": "SOSPESA TRASMISSIONE DI RAI 2 DI STASERA",
+    "created": "2001-07-26 15:28:54",
+    "linked_file": null,
+    "hugo": "8967-sospesa-trasmissione-di-rai-2-di-stasera",
+    "date": "2001-07-26",
+    "time": "15:28:54",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "28",
+    "second": "54"
+  },
+  {
+    "id": 8982,
+    "heading": "Il famoso estintore.. fu lanciato dalla camionetta (altra prova)",
+    "created": "2001-07-26 18:30:44",
+    "linked_file": null,
+    "hugo": "8982-il-famoso-estintore-fu-lanciato-dalla-camionetta-altra-prova",
+    "date": "2001-07-26",
+    "time": "18:30:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "30",
+    "second": "44"
+  },
+  {
+    "id": 8997,
+    "heading": "Enrico Ruggiero said",
+    "created": "2001-07-26 14:24:43",
+    "linked_file": null,
+    "hugo": "8997-enrico-ruggiero-said",
+    "date": "2001-07-26",
+    "time": "14:24:43",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "24",
+    "second": "43"
+  },
+  {
+    "id": 8998,
+    "heading": "Destra al potere!",
+    "created": "2001-07-28 16:05:34",
+    "linked_file": null,
+    "hugo": "8998-destra-al-potere",
+    "date": "2001-07-28",
+    "time": "16:05:34",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "16",
+    "minute": "05",
+    "second": "34"
+  },
+  {
+    "id": 9007,
+    "heading": "Memorial, Thunder Bay, Ontario, Canada",
+    "created": "2001-07-26 15:09:25",
+    "linked_file": "2001/07/memorial.jpg",
+    "hugo": "9007-memorial-thunder-bay-ontario-canada",
+    "date": "2001-07-26",
+    "time": "15:09:25",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "09",
+    "second": "25"
+  },
+  {
+    "id": 9008,
+    "heading": "bordercamp frankfurt",
+    "created": "2001-07-26 15:17:44",
+    "linked_file": null,
+    "hugo": "9008-bordercamp-frankfurt",
+    "date": "2001-07-26",
+    "time": "15:17:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "17",
+    "second": "44"
+  },
+  {
+    "id": 9010,
+    "heading": "sorpresa",
+    "created": "2001-07-26 20:05:34",
+    "linked_file": null,
+    "hugo": "9010-sorpresa",
+    "date": "2001-07-26",
+    "time": "20:05:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "20",
+    "minute": "05",
+    "second": "34"
+  },
+  {
+    "id": 9018,
+    "heading": "war in the backstage of television",
+    "created": "2001-07-26 15:46:15",
+    "linked_file": null,
+    "hugo": "9018-war-in-the-backstage-of-television",
+    "date": "2001-07-26",
+    "time": "15:46:15",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "46",
+    "second": "15"
+  },
+  {
+    "id": 9019,
+    "heading": "war in the backstage of television",
+    "created": "2001-07-26 17:43:40",
+    "linked_file": null,
+    "hugo": "9019-war-in-the-backstage-of-television",
+    "date": "2001-07-26",
+    "time": "17:43:40",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "17",
+    "minute": "43",
+    "second": "40"
+  },
+  {
+    "id": 9029,
+    "heading": "Attacchi a computer che si collegano a mir.it?",
+    "created": "2001-07-27 17:47:34",
+    "linked_file": null,
+    "hugo": "9029-attacchi-a-computer-che-si-collegano-a-mirit",
+    "date": "2001-07-27",
+    "time": "17:47:34",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "47",
+    "second": "34"
+  },
+  {
+    "id": 9049,
+    "heading": "polizia al potere(?)",
+    "created": "2001-07-27 17:21:19",
+    "linked_file": null,
+    "hugo": "9049-polizia-al-potere",
+    "date": "2001-07-27",
+    "time": "17:21:19",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "21",
+    "second": "19"
+  },
+  {
+    "id": 9051,
+    "heading": "non ci sono scorciatoie",
+    "created": "2001-07-26 19:36:38",
+    "linked_file": null,
+    "hugo": "9051-non-ci-sono-scorciatoie",
+    "date": "2001-07-26",
+    "time": "19:36:38",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "36",
+    "second": "38"
+  },
+  {
+    "id": 9058,
+    "heading": "\"Bush Daddy Delusions\"",
+    "created": "2001-07-26 19:13:51",
+    "linked_file": null,
+    "hugo": "9058-bush-daddy-delusions",
+    "date": "2001-07-26",
+    "time": "19:13:51",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "13",
+    "second": "51"
+  },
+  {
+    "id": 9062,
+    "heading": "cose strane a canale 5",
+    "created": "2001-07-27 02:48:36",
+    "linked_file": null,
+    "hugo": "9062-cose-strane-a-canale-5",
+    "date": "2001-07-27",
+    "time": "02:48:36",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "48",
+    "second": "36"
+  },
+  {
+    "id": 9068,
+    "heading": "Tracce di sangue sui muri e sui termosifoni (tedesco, prego tradurre)",
+    "created": "2001-07-27 04:05:50",
+    "linked_file": null,
+    "hugo": "9068-tracce-di-sangue-sui-muri-e-sui-termosifoni-tedesco-prego-tradurre",
+    "date": "2001-07-27",
+    "time": "04:05:50",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "05",
+    "second": "50"
+  },
+  {
+    "id": 9072,
+    "heading": "Genoa, a policeofficer tells what happened",
+    "created": "2001-07-26 20:02:02",
+    "linked_file": null,
+    "hugo": "9072-genoa-a-policeofficer-tells-what-happened",
+    "date": "2001-07-26",
+    "time": "20:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "20",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 9077,
+    "heading": "FREE Marcus Covell",
+    "created": "2001-07-27 00:56:13",
+    "linked_file": null,
+    "hugo": "9077-free-marcus-covell",
+    "date": "2001-07-27",
+    "time": "00:56:13",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "00",
+    "minute": "56",
+    "second": "13"
+  },
+  {
+    "id": 9087,
+    "heading": "CITIES IN PROTEST (new)",
+    "created": "2001-07-26 23:05:37",
+    "linked_file": null,
+    "hugo": "9087-cities-in-protest-new",
+    "date": "2001-07-26",
+    "time": "23:05:37",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "23",
+    "minute": "05",
+    "second": "37"
+  },
+  {
+    "id": 9089,
+    "heading": "Belfast with Sunshine- the Battle of Genoa through Irish eyes (Part One)",
+    "created": "2001-07-26 19:29:59",
+    "linked_file": null,
+    "hugo": "9089-belfast-with-sunshine-the-battle-of-genoa-through-irish-eyes-part-one",
+    "date": "2001-07-26",
+    "time": "19:29:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "29",
+    "second": "59"
+  },
+  {
+    "id": 9090,
+    "heading": "Belfast with Sunshine (Part Two)- the Battle of Genoa through Irish eyes",
+    "created": "2001-07-26 19:32:22",
+    "linked_file": null,
+    "hugo": "9090-belfast-with-sunshine-part-two-the-battle-of-genoa-through-irish-eyes",
+    "date": "2001-07-26",
+    "time": "19:32:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "32",
+    "second": "22"
+  },
+  {
+    "id": 9092,
+    "heading": "Belfast with Sunshine (Part Two)- the Battle of Genoa through Irish eyes",
+    "created": "2001-07-26 19:37:34",
+    "linked_file": null,
+    "hugo": "9092-belfast-with-sunshine-part-two-the-battle-of-genoa-through-irish-eyes",
+    "date": "2001-07-26",
+    "time": "19:37:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "37",
+    "second": "34"
+  },
+  {
+    "id": 9093,
+    "heading": "NORTH AMERICAN MEDIA SILENT ON MASSIVE POST-G8 ITALIAN PROTESTS",
+    "created": "2001-07-26 21:08:56",
+    "linked_file": null,
+    "hugo": "9093-north-american-media-silent-on-massive-postg8-italian-protests",
+    "date": "2001-07-26",
+    "time": "21:08:56",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "08",
+    "second": "56"
+  },
+  {
+    "id": 9105,
+    "heading": "6000 turisti tedeschi cancellano viaggio a Genova",
+    "created": "2001-07-27 09:21:03",
+    "linked_file": null,
+    "hugo": "9105-6000-turisti-tedeschi-cancellano-viaggio-a-genova",
+    "date": "2001-07-27",
+    "time": "09:21:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "21",
+    "second": "03"
+  },
+  {
+    "id": 9108,
+    "heading": "time to pressure genoese authorities for numbers of dead!",
+    "created": "2001-07-26 21:19:12",
+    "linked_file": null,
+    "hugo": "9108-time-to-pressure-genoese-authorities-for-numbers-of-dead",
+    "date": "2001-07-26",
+    "time": "21:19:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "19",
+    "second": "12"
+  },
+  {
+    "id": 9109,
+    "heading": "recovering from trauma",
+    "created": "2001-07-26 21:26:15",
+    "linked_file": null,
+    "hugo": "9109-recovering-from-trauma",
+    "date": "2001-07-26",
+    "time": "21:26:15",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "26",
+    "second": "15"
+  },
+  {
+    "id": 9110,
+    "heading": "en, it, ca, fr, de) more genoa info & solidarity on anarchist list",
+    "created": "2001-07-26 21:31:23",
+    "linked_file": null,
+    "hugo": "9110-en-it-ca-fr-de-more-genoa-info-solidarity-on-anarchist-list",
+    "date": "2001-07-26",
+    "time": "21:31:23",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "31",
+    "second": "23"
+  },
+  {
+    "id": 9111,
+    "heading": "SBAGLIO ?",
+    "created": "2001-07-27 05:21:22",
+    "linked_file": null,
+    "hugo": "9111-sbaglio-",
+    "date": "2001-07-27",
+    "time": "05:21:22",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "21",
+    "second": "22"
+  },
+  {
+    "id": 9112,
+    "heading": "en) anarchist and corporate reports, photos on infoshop.org",
+    "created": "2001-07-26 21:34:45",
+    "linked_file": null,
+    "hugo": "9112-en-anarchist-and-corporate-reports-photos-on-infoshoporg",
+    "date": "2001-07-26",
+    "time": "21:34:45",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "34",
+    "second": "45"
+  },
+  {
+    "id": 9114,
+    "heading": "U.S. Super Volcano-Yellowstone Park",
+    "created": "2001-07-27 03:37:32",
+    "linked_file": null,
+    "hugo": "9114-us-super-volcanoyellowstone-park",
+    "date": "2001-07-27",
+    "time": "03:37:32",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "03",
+    "minute": "37",
+    "second": "32"
+  },
+  {
+    "id": 9116,
+    "heading": "G-8: ----> BUSH IS PLANNING A MILITARY ATTACK AGAINST IRAQ",
+    "created": "2001-07-27 02:41:40",
+    "linked_file": null,
+    "hugo": "9116-g8-bush-is-planning-a-military-attack-against-iraq",
+    "date": "2001-07-27",
+    "time": "02:41:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "41",
+    "second": "40"
+  },
+  {
+    "id": 9119,
+    "heading": "World Leaders Creating Another Crisis",
+    "created": "2001-07-26 23:10:24",
+    "linked_file": "2001/07/israel8srh2ql.jpg",
+    "hugo": "9119-world-leaders-creating-another-crisis",
+    "date": "2001-07-26",
+    "time": "23:10:24",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "23",
+    "minute": "10",
+    "second": "24"
+  },
+  {
+    "id": 9121,
+    "heading": "\"Genoa\" - a protest song",
+    "created": "2001-07-27 00:14:24",
+    "linked_file": null,
+    "hugo": "9121-genoa-a-protest-song",
+    "date": "2001-07-27",
+    "time": "00:14:24",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "00",
+    "minute": "14",
+    "second": "24"
+  },
+  {
+    "id": 9123,
+    "heading": "IL 68 CON L'EROINA..IL 2001...??????",
+    "created": "2001-07-27 16:53:58",
+    "linked_file": null,
+    "hugo": "9123-il-68-con-leroinail-2001",
+    "date": "2001-07-27",
+    "time": "16:53:58",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "53",
+    "second": "58"
+  },
+  {
+    "id": 9124,
+    "heading": "Desaparecidos = Turisti",
+    "created": "2001-07-27 16:33:47",
+    "linked_file": null,
+    "hugo": "9124-desaparecidos-turisti",
+    "date": "2001-07-27",
+    "time": "16:33:47",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "33",
+    "second": "47"
+  },
+  {
+    "id": 9128,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 1",
+    "created": "2001-07-27 01:29:34",
+    "linked_file": null,
+    "hugo": "9128-a-womble-in-genoa-part-1",
+    "date": "2001-07-27",
+    "time": "01:29:34",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "01",
+    "minute": "29",
+    "second": "34"
+  },
+  {
+    "id": 9129,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 3",
+    "created": "2001-07-27 01:35:41",
+    "linked_file": null,
+    "hugo": "9129-a-womble-in-genoa-part-3",
+    "date": "2001-07-27",
+    "time": "01:35:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "01",
+    "minute": "35",
+    "second": "41"
+  },
+  {
+    "id": 9130,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 2",
+    "created": "2001-07-27 01:38:24",
+    "linked_file": null,
+    "hugo": "9130-a-womble-in-genoa-part-2",
+    "date": "2001-07-27",
+    "time": "01:38:24",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "01",
+    "minute": "38",
+    "second": "24"
+  },
+  {
+    "id": 9132,
+    "heading": "Come arrestare sto vespaio.......",
+    "created": "2001-07-27 06:54:44",
+    "linked_file": null,
+    "hugo": "9132-come-arrestare-sto-vespaio",
+    "date": "2001-07-27",
+    "time": "06:54:44",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "54",
+    "second": "44"
+  },
+  {
+    "id": 9134,
+    "heading": "Anche a Bergamo",
+    "created": "2001-07-27 02:00:39",
+    "linked_file": "2001/07/08.jpg",
+    "hugo": "9134-anche-a-bergamo",
+    "date": "2001-07-27",
+    "time": "02:00:39",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "00",
+    "second": "39"
+  },
+  {
+    "id": 9136,
+    "heading": "Another testimony of a policemen",
+    "created": "2001-07-27 06:17:34",
+    "linked_file": null,
+    "hugo": "9136-another-testimony-of-a-policemen",
+    "date": "2001-07-27",
+    "time": "06:17:34",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "17",
+    "second": "34"
+  },
+  {
+    "id": 9137,
+    "heading": "Another testimony of a policemen",
+    "created": "2001-07-27 19:42:23",
+    "linked_file": null,
+    "hugo": "9137-another-testimony-of-a-policemen",
+    "date": "2001-07-27",
+    "time": "19:42:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "42",
+    "second": "23"
+  },
+  {
+    "id": 9138,
+    "heading": "Sequenza fotografica sull'assassinio di Carlo",
+    "created": "2001-07-27 15:31:01",
+    "linked_file": null,
+    "hugo": "9138-sequenza-fotografica-sullassassinio-di-carlo",
+    "date": "2001-07-27",
+    "time": "15:31:01",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "15",
+    "minute": "31",
+    "second": "01"
+  },
+  {
+    "id": 9139,
+    "heading": "sempre da Bergamo.",
+    "created": "2001-07-28 18:24:57",
+    "linked_file": null,
+    "hugo": "9139-sempre-da-bergamo",
+    "date": "2001-07-28",
+    "time": "18:24:57",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "18",
+    "minute": "24",
+    "second": "57"
+  },
+  {
+    "id": 9145,
+    "heading": "ancora foto da Bg",
+    "created": "2001-07-27 11:16:44",
+    "linked_file": "2001/07/07.jpg",
+    "hugo": "9145-ancora-foto-da-bg",
+    "date": "2001-07-27",
+    "time": "11:16:44",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "16",
+    "second": "44"
+  },
+  {
+    "id": 9160,
+    "heading": "PAGHERETE TUTTO",
+    "created": "2001-07-27 04:52:07",
+    "linked_file": null,
+    "hugo": "9160-pagherete-tutto",
+    "date": "2001-07-27",
+    "time": "04:52:07",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "52",
+    "second": "07"
+  },
+  {
+    "id": 9162,
+    "heading": "HO FINTO DI ESSERE MORTO, CONTINUAVANO A PICCHIARMI",
+    "created": "2001-07-27 04:51:51",
+    "linked_file": null,
+    "hugo": "9162-ho-finto-di-essere-morto-continuavano-a-picchiarmi",
+    "date": "2001-07-27",
+    "time": "04:51:51",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "51",
+    "second": "51"
+  },
+  {
+    "id": 9167,
+    "heading": "I CASSONETTI DI GENOVA",
+    "created": "2001-07-27 05:51:37",
+    "linked_file": null,
+    "hugo": "9167-i-cassonetti-di-genova",
+    "date": "2001-07-27",
+    "time": "05:51:37",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "51",
+    "second": "37"
+  },
+  {
+    "id": 9184,
+    "heading": "Parlamentari tedeschi vogliono una Commissione d'inchiesta internazionale",
+    "created": "2001-07-27 04:09:06",
+    "linked_file": null,
+    "hugo": "9184-parlamentari-tedeschi-vogliono-una-commissione-dinchiesta-internazionale",
+    "date": "2001-07-27",
+    "time": "04:09:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "09",
+    "second": "06"
+  },
+  {
+    "id": 9190,
+    "heading": "che fare del servizio militare volontario?",
+    "created": "2001-07-27 10:36:10",
+    "linked_file": null,
+    "hugo": "9190-che-fare-del-servizio-militare-volontario",
+    "date": "2001-07-27",
+    "time": "10:36:10",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "36",
+    "second": "10"
+  },
+  {
+    "id": 9195,
+    "heading": "Foto Genova",
+    "created": "2001-07-27 04:34:50",
+    "linked_file": "2001/07/jul22_25.jpg",
+    "hugo": "9195-foto-genova",
+    "date": "2001-07-27",
+    "time": "04:34:50",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "34",
+    "second": "50"
+  },
+  {
+    "id": 9205,
+    "heading": "Chi manca all'appello?",
+    "created": "2001-07-27 07:46:59",
+    "linked_file": null,
+    "hugo": "9205-chi-manca-allappello",
+    "date": "2001-07-27",
+    "time": "07:46:59",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "07",
+    "minute": "46",
+    "second": "59"
+  },
+  {
+    "id": 9206,
+    "heading": "scajola//mussolini",
+    "created": "2001-07-27 05:15:03",
+    "linked_file": null,
+    "hugo": "9206-scajolamussolini",
+    "date": "2001-07-27",
+    "time": "05:15:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "15",
+    "second": "03"
+  },
+  {
+    "id": 9210,
+    "heading": "Cose strane...",
+    "created": "2001-07-27 05:24:40",
+    "linked_file": null,
+    "hugo": "9210-cose-strane",
+    "date": "2001-07-27",
+    "time": "05:24:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "24",
+    "second": "40"
+  },
+  {
+    "id": 9218,
+    "heading": "Mussolini 2 su Rai3",
+    "created": "2001-07-27 05:34:11",
+    "linked_file": null,
+    "hugo": "9218-mussolini-2-su-rai3",
+    "date": "2001-07-27",
+    "time": "05:34:11",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "34",
+    "second": "11"
+  },
+  {
+    "id": 9219,
+    "heading": "Mussolini 2 su Rai3",
+    "created": "2001-07-27 05:21:23",
+    "linked_file": null,
+    "hugo": "9219-mussolini-2-su-rai3",
+    "date": "2001-07-27",
+    "time": "05:21:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "21",
+    "second": "23"
+  },
+  {
+    "id": 9223,
+    "heading": "Democrats from all around the world HELP ITALY",
+    "created": "2001-07-27 05:26:04",
+    "linked_file": null,
+    "hugo": "9223-democrats-from-all-around-the-world-help-italy",
+    "date": "2001-07-27",
+    "time": "05:26:04",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "26",
+    "second": "04"
+  },
+  {
+    "id": 9224,
+    "heading": "Mussolini 2 su Rai3",
+    "created": "2001-07-27 05:26:05",
+    "linked_file": null,
+    "hugo": "9224-mussolini-2-su-rai3",
+    "date": "2001-07-27",
+    "time": "05:26:05",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "26",
+    "second": "05"
+  },
+  {
+    "id": 9225,
+    "heading": "in Rai hanno avuto paura",
+    "created": "2001-07-27 06:13:10",
+    "linked_file": null,
+    "hugo": "9225-in-rai-hanno-avuto-paura",
+    "date": "2001-07-27",
+    "time": "06:13:10",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "13",
+    "second": "10"
+  },
+  {
+    "id": 9233,
+    "heading": "COMPLIMENTI, SIG. MINISTRO",
+    "created": "2001-07-27 05:57:39",
+    "linked_file": null,
+    "hugo": "9233-complimenti-sig-ministro",
+    "date": "2001-07-27",
+    "time": "05:57:39",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "57",
+    "second": "39"
+  },
+  {
+    "id": 9234,
+    "heading": "la conta dei violenti...",
+    "created": "2001-07-27 05:59:16",
+    "linked_file": null,
+    "hugo": "9234-la-conta-dei-violenti",
+    "date": "2001-07-27",
+    "time": "05:59:16",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "59",
+    "second": "16"
+  },
+  {
+    "id": 9235,
+    "heading": "Guiltiness",
+    "created": "2001-07-27 06:02:03",
+    "linked_file": null,
+    "hugo": "9235-guiltiness",
+    "date": "2001-07-27",
+    "time": "06:02:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "02",
+    "second": "03"
+  },
+  {
+    "id": 9238,
+    "heading": "GENOVA E L'ESTREMA DESRA",
+    "created": "2001-07-27 10:19:08",
+    "linked_file": null,
+    "hugo": "9238-genova-e-lestrema-desra",
+    "date": "2001-07-27",
+    "time": "10:19:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "19",
+    "second": "08"
+  },
+  {
+    "id": 9244,
+    "heading": "Intervista Black Bloc",
+    "created": "2001-07-27 09:30:48",
+    "linked_file": null,
+    "hugo": "9244-intervista-black-bloc",
+    "date": "2001-07-27",
+    "time": "09:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 9246,
+    "heading": "poliziotto \"ambiguo\"",
+    "created": "2001-07-28 12:33:17",
+    "linked_file": "2001/07/inf2.jpg",
+    "hugo": "9246-poliziotto-ambiguo",
+    "date": "2001-07-28",
+    "time": "12:33:17",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "33",
+    "second": "17"
+  },
+  {
+    "id": 9248,
+    "heading": "Cassonetti, una conferma",
+    "created": "2001-07-27 08:22:06",
+    "linked_file": null,
+    "hugo": "9248-cassonetti-una-conferma",
+    "date": "2001-07-27",
+    "time": "08:22:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "22",
+    "second": "06"
+  },
+  {
+    "id": 9249,
+    "heading": "ALLARME!!TG2 ore 13:00 : La procura di Genova orientata per la leggittima difesa",
+    "created": "2001-07-27 08:27:35",
+    "linked_file": null,
+    "hugo": "9249-allarmetg2-ore-1300-la-procura-di-genova-orientata-per-la-leggittima-difesa",
+    "date": "2001-07-27",
+    "time": "08:27:35",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "27",
+    "second": "35"
+  },
+  {
+    "id": 9250,
+    "heading": "detriti ?",
+    "created": "2001-07-27 09:19:03",
+    "linked_file": null,
+    "hugo": "9250-detriti-",
+    "date": "2001-07-27",
+    "time": "09:19:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "19",
+    "second": "03"
+  },
+  {
+    "id": 9257,
+    "heading": "genova venerdì 20 - un po'di foto",
+    "created": "2001-07-27 06:58:08",
+    "linked_file": "2001/07/poli1.jpg",
+    "hugo": "9257-genova-venerdi-20-un-podi-foto",
+    "date": "2001-07-27",
+    "time": "06:58:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "58",
+    "second": "08"
+  },
+  {
+    "id": 9261,
+    "heading": "Reporters Sans Frontieres",
+    "created": "2001-07-27 07:07:23",
+    "linked_file": null,
+    "hugo": "9261-reporters-sans-frontieres",
+    "date": "2001-07-27",
+    "time": "07:07:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "07",
+    "minute": "07",
+    "second": "23"
+  },
+  {
+    "id": 9264,
+    "heading": "PLEASE, SPREAD THIS MESSAGE - PER FAVORE, DIFFONDI QUESTO MESSAGGIO",
+    "created": "2001-07-27 07:09:25",
+    "linked_file": null,
+    "hugo": "9264-please-spread-this-message-per-favore-diffondi-questo-messaggio",
+    "date": "2001-07-27",
+    "time": "07:09:25",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "07",
+    "minute": "09",
+    "second": "25"
+  },
+  {
+    "id": 9272,
+    "heading": "UK coverage",
+    "created": "2001-07-27 08:26:54",
+    "linked_file": null,
+    "hugo": "9272-uk-coverage",
+    "date": "2001-07-27",
+    "time": "08:26:54",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "26",
+    "second": "54"
+  },
+  {
+    "id": 9273,
+    "heading": "translation: another testimony of a policeman",
+    "created": "2001-07-27 10:18:41",
+    "linked_file": null,
+    "hugo": "9273-translation-another-testimony-of-a-policeman",
+    "date": "2001-07-27",
+    "time": "10:18:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "18",
+    "second": "41"
+  },
+  {
+    "id": 9280,
+    "heading": "Images from Genoa",
+    "created": "2001-07-27 08:22:06",
+    "linked_file": "2001/07/zaun.jpg",
+    "hugo": "9280-images-from-genoa",
+    "date": "2001-07-27",
+    "time": "08:22:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "22",
+    "second": "06"
+  },
+  {
+    "id": 9286,
+    "heading": "Es hora de cambiar las formas de lucha?",
+    "created": "2001-07-27 08:10:36",
+    "linked_file": null,
+    "hugo": "9286-es-hora-de-cambiar-las-formas-de-lucha",
+    "date": "2001-07-27",
+    "time": "08:10:36",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "10",
+    "second": "36"
+  },
+  {
+    "id": 9287,
+    "heading": "Mussolini-Berlusconi",
+    "created": "2001-07-27 14:55:08",
+    "linked_file": "2001/07/mussolini-berlusconi.html",
+    "hugo": "9287-mussoliniberlusconi",
+    "date": "2001-07-27",
+    "time": "14:55:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "55",
+    "second": "08"
+  },
+  {
+    "id": 9294,
+    "heading": "intervista a Kirsten Wagenschein jornalista tedesca rilasciata ieri (tedesco)",
+    "created": "2001-07-27 11:39:15",
+    "linked_file": null,
+    "hugo": "9294-intervista-a-kirsten-wagenschein-jornalista-tedesca-rilasciata-ieri-tedesco",
+    "date": "2001-07-27",
+    "time": "11:39:15",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "39",
+    "second": "15"
+  },
+  {
+    "id": 9300,
+    "heading": "discrepanza di orari",
+    "created": "2001-07-27 12:21:43",
+    "linked_file": "2001/07/image04-59.jpg",
+    "hugo": "9300-discrepanza-di-orari",
+    "date": "2001-07-27",
+    "time": "12:21:43",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "21",
+    "second": "43"
+  },
+  {
+    "id": 9302,
+    "heading": "IMMAGINI DI UN FERITO - GENOVA 21/7",
+    "created": "2001-07-27 09:19:00",
+    "linked_file": "2001/07/ferito2.jpg",
+    "hugo": "9302-immagini-di-un-ferito-genova-217",
+    "date": "2001-07-27",
+    "time": "09:19:00",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "19",
+    "second": "00"
+  },
+  {
+    "id": 9306,
+    "heading": "A Carlo (per sempre)",
+    "created": "2001-07-27 09:30:47",
+    "linked_file": null,
+    "hugo": "9306-a-carlo-per-sempre",
+    "date": "2001-07-27",
+    "time": "09:30:47",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "30",
+    "second": "47"
+  },
+  {
+    "id": 9309,
+    "heading": "prova",
+    "created": "2001-07-27 09:39:40",
+    "linked_file": null,
+    "hugo": "9309-prova",
+    "date": "2001-07-27",
+    "time": "09:39:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "39",
+    "second": "40"
+  },
+  {
+    "id": 9311,
+    "heading": "26/7: mille persone in assemblea a Roma",
+    "created": "2001-07-27 12:21:43",
+    "linked_file": null,
+    "hugo": "9311-267-mille-persone-in-assemblea-a-roma",
+    "date": "2001-07-27",
+    "time": "12:21:43",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "21",
+    "second": "43"
+  },
+  {
+    "id": 9314,
+    "heading": "ferite",
+    "created": "2001-07-27 16:34:04",
+    "linked_file": "2001/07/bastonato2707.jpg",
+    "hugo": "9314-ferite",
+    "date": "2001-07-27",
+    "time": "16:34:04",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "34",
+    "second": "04"
+  },
+  {
+    "id": 9315,
+    "heading": "GENOVA NELL'ANALISI DI S. PALIDDA  (lungo)",
+    "created": "2001-07-27 10:06:28",
+    "linked_file": null,
+    "hugo": "9315-genova-nellanalisi-di-s-palidda-lungo",
+    "date": "2001-07-27",
+    "time": "10:06:28",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "06",
+    "second": "28"
+  },
+  {
+    "id": 9316,
+    "heading": "GENOVA NELL'ANALISI DI S. PALIDDA  (lungo)",
+    "created": "2001-07-27 11:56:24",
+    "linked_file": null,
+    "hugo": "9316-genova-nellanalisi-di-s-palidda-lungo",
+    "date": "2001-07-27",
+    "time": "11:56:24",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "56",
+    "second": "24"
+  },
+  {
+    "id": 9317,
+    "heading": "le giornate di genova. impressioni e pensieri",
+    "created": "2001-07-27 17:04:00",
+    "linked_file": null,
+    "hugo": "9317-le-giornate-di-genova-impressioni-e-pensieri",
+    "date": "2001-07-27",
+    "time": "17:04:00",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "04",
+    "second": "00"
+  },
+  {
+    "id": 9318,
+    "heading": "indirizzi email",
+    "created": "2001-07-27 10:15:30",
+    "linked_file": null,
+    "hugo": "9318-indirizzi-email",
+    "date": "2001-07-27",
+    "time": "10:15:30",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "15",
+    "second": "30"
+  },
+  {
+    "id": 9323,
+    "heading": "Pestaggio di stato premeditato? Prime conferme",
+    "created": "2001-07-27 16:48:41",
+    "linked_file": null,
+    "hugo": "9323-pestaggio-di-stato-premeditato-prime-conferme",
+    "date": "2001-07-27",
+    "time": "16:48:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "48",
+    "second": "41"
+  },
+  {
+    "id": 9324,
+    "heading": "G8: The Empire Strikes Back",
+    "created": "2001-07-27 10:38:51",
+    "linked_file": null,
+    "hugo": "9324-g8-the-empire-strikes-back",
+    "date": "2001-07-27",
+    "time": "10:38:51",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "38",
+    "second": "51"
+  },
+  {
+    "id": 9326,
+    "heading": "Blows agsinst the Empire",
+    "created": "2001-07-27 11:48:28",
+    "linked_file": null,
+    "hugo": "9326-blows-agsinst-the-empire",
+    "date": "2001-07-27",
+    "time": "11:48:28",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "48",
+    "second": "28"
+  },
+  {
+    "id": 9328,
+    "heading": "Blows agsinst the Empire",
+    "created": "2001-07-27 13:05:20",
+    "linked_file": null,
+    "hugo": "9328-blows-agsinst-the-empire",
+    "date": "2001-07-27",
+    "time": "13:05:20",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "13",
+    "minute": "05",
+    "second": "20"
+  },
+  {
+    "id": 9329,
+    "heading": "FOTO SHOC FERITO (anche sotto)",
+    "created": "2001-07-27 14:12:33",
+    "linked_file": "2001/07/ferito9s22ll.jpg",
+    "hugo": "9329-foto-shoc-ferito-anche-sotto",
+    "date": "2001-07-27",
+    "time": "14:12:33",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "12",
+    "second": "33"
+  },
+  {
+    "id": 9336,
+    "heading": "Berlusca comincia a scaricare il barile!",
+    "created": "2001-07-28 10:17:09",
+    "linked_file": null,
+    "hugo": "9336-berlusca-comincia-a-scaricare-il-barile",
+    "date": "2001-07-28",
+    "time": "10:17:09",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "17",
+    "second": "09"
+  },
+  {
+    "id": 9337,
+    "heading": "No border Theater",
+    "created": "2001-07-27 14:50:20",
+    "linked_file": null,
+    "hugo": "9337-no-border-theater",
+    "date": "2001-07-27",
+    "time": "14:50:20",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "50",
+    "second": "20"
+  },
+  {
+    "id": 9338,
+    "heading": "Piazza virtuale no-global",
+    "created": "2001-07-28 06:52:59",
+    "linked_file": null,
+    "hugo": "9338-piazza-virtuale-noglobal",
+    "date": "2001-07-28",
+    "time": "06:52:59",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "06",
+    "minute": "52",
+    "second": "59"
+  },
+  {
+    "id": 9339,
+    "heading": "Testimonianze dei carabinieri va bene,ma....",
+    "created": "2001-07-27 16:29:00",
+    "linked_file": null,
+    "hugo": "9339-testimonianze-dei-carabinieri-va-benema",
+    "date": "2001-07-27",
+    "time": "16:29:00",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "29",
+    "second": "00"
+  },
+  {
+    "id": 9353,
+    "heading": "Kirsten Wagenschein interview - english translation",
+    "created": "2001-07-27 12:46:11",
+    "linked_file": null,
+    "hugo": "9353-kirsten-wagenschein-interview-english-translation",
+    "date": "2001-07-27",
+    "time": "12:46:11",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "46",
+    "second": "11"
+  },
+  {
+    "id": 9366,
+    "heading": "ECCO LA FOTO di un funzionario carcerario compliceGOM e storia documenta dei GOM",
+    "created": "2001-07-30 01:04:24",
+    "linked_file": "2001/07/dellavecchia1p6nvps9.jpg",
+    "hugo": "9366-ecco-la-foto-di-un-funzionario-carcerario-complicegom-e-storia-documenta-dei-gom",
+    "date": "2001-07-30",
+    "time": "01:04:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "01",
+    "minute": "04",
+    "second": "24"
+  },
+  {
+    "id": 9369,
+    "heading": "2 considerazioni sull'assassinio di giuliani",
+    "created": "2001-07-28 09:19:49",
+    "linked_file": null,
+    "hugo": "9369-2-considerazioni-sullassassinio-di-giuliani",
+    "date": "2001-07-28",
+    "time": "09:19:49",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "19",
+    "second": "49"
+  },
+  {
+    "id": 9374,
+    "heading": "Detroit marches for Genoa",
+    "created": "2001-07-27 14:16:21",
+    "linked_file": null,
+    "hugo": "9374-detroit-marches-for-genoa",
+    "date": "2001-07-27",
+    "time": "14:16:21",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "16",
+    "second": "21"
+  },
+  {
+    "id": 9380,
+    "heading": "controinformazione",
+    "created": "2001-07-28 07:25:40",
+    "linked_file": null,
+    "hugo": "9380-controinformazione",
+    "date": "2001-07-28",
+    "time": "07:25:40",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "25",
+    "second": "40"
+  },
+  {
+    "id": 9383,
+    "heading": "Isoliamo la violenza - Keep us off the violence",
+    "created": "2001-07-27 18:51:23",
+    "linked_file": null,
+    "hugo": "9383-isoliamo-la-violenza-keep-us-off-the-violence",
+    "date": "2001-07-27",
+    "time": "18:51:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "18",
+    "minute": "51",
+    "second": "23"
+  },
+  {
+    "id": 9385,
+    "heading": "compagni di benevento massacrati e spariti",
+    "created": "2001-07-27 18:52:26",
+    "linked_file": null,
+    "hugo": "9385-compagni-di-benevento-massacrati-e-spariti",
+    "date": "2001-07-27",
+    "time": "18:52:26",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "18",
+    "minute": "52",
+    "second": "26"
+  },
+  {
+    "id": 9388,
+    "heading": "songs of resistance",
+    "created": "2001-07-27 23:21:41",
+    "linked_file": null,
+    "hugo": "9388-songs-of-resistance",
+    "date": "2001-07-27",
+    "time": "23:21:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "23",
+    "minute": "21",
+    "second": "41"
+  },
+  {
+    "id": 9399,
+    "heading": "Who is counting the missing persons",
+    "created": "2001-07-28 01:21:17",
+    "linked_file": null,
+    "hugo": "9399-who-is-counting-the-missing-persons",
+    "date": "2001-07-28",
+    "time": "01:21:17",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "01",
+    "minute": "21",
+    "second": "17"
+  },
+  {
+    "id": 9400,
+    "heading": "Foto Da Genova",
+    "created": "2001-07-28 17:18:29",
+    "linked_file": null,
+    "hugo": "9400-foto-da-genova",
+    "date": "2001-07-28",
+    "time": "17:18:29",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "18",
+    "second": "29"
+  },
+  {
+    "id": 9401,
+    "heading": "Sequenza fotografica sull'assassinio di Carlo di Sherwood.it in formato PDF",
+    "created": "2001-07-27 19:25:08",
+    "linked_file": "2001/07/carlo-photofilez6nkqg.pdf",
+    "hugo": "9401-sequenza-fotografica-sullassassinio-di-carlo-di-sherwoodit-in-formato-pdf",
+    "date": "2001-07-27",
+    "time": "19:25:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "25",
+    "second": "08"
+  },
+  {
+    "id": 9415,
+    "heading": "From the Independent (UK Newspaper web site)",
+    "created": "2001-07-28 02:17:11",
+    "linked_file": null,
+    "hugo": "9415-from-the-independent-uk-newspaper-web-site",
+    "date": "2001-07-28",
+    "time": "02:17:11",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "17",
+    "second": "11"
+  },
+  {
+    "id": 9428,
+    "heading": "Mr Berlusconi's response is entirely inadequate",
+    "created": "2001-07-27 23:12:35",
+    "linked_file": null,
+    "hugo": "9428-mr-berlusconis-response-is-entirely-inadequate",
+    "date": "2001-07-27",
+    "time": "23:12:35",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "23",
+    "minute": "12",
+    "second": "35"
+  },
+  {
+    "id": 9435,
+    "heading": "Si squarcia",
+    "created": "2001-07-27 17:18:43",
+    "linked_file": null,
+    "hugo": "9435-si-squarcia",
+    "date": "2001-07-27",
+    "time": "17:18:43",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "18",
+    "second": "43"
+  },
+  {
+    "id": 9439,
+    "heading": "Limiti di questo forum e proposta",
+    "created": "2001-07-27 17:37:02",
+    "linked_file": null,
+    "hugo": "9439-limiti-di-questo-forum-e-proposta",
+    "date": "2001-07-27",
+    "time": "17:37:02",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "37",
+    "second": "02"
+  },
+  {
+    "id": 9440,
+    "heading": "Chi sono sti gom?",
+    "created": "2001-07-27 17:42:52",
+    "linked_file": null,
+    "hugo": "9440-chi-sono-sti-gom",
+    "date": "2001-07-27",
+    "time": "17:42:52",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "42",
+    "second": "52"
+  },
+  {
+    "id": 9443,
+    "heading": "Chi sono sti gom? (rimando, sperando che venga + ordinato...!)",
+    "created": "2001-07-28 04:10:46",
+    "linked_file": null,
+    "hugo": "9443-chi-sono-sti-gom-rimando-sperando-che-venga-+-ordinato",
+    "date": "2001-07-28",
+    "time": "04:10:46",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "04",
+    "minute": "10",
+    "second": "46"
+  },
+  {
+    "id": 9450,
+    "heading": "L'ESTINTORE ESCE A SPINTA  E QUALCUNO CI LASCIA LO ZAMPINO",
+    "created": "2001-07-29 13:35:29",
+    "linked_file": null,
+    "hugo": "9450-lestintore-esce-a-spinta-e-qualcuno-ci-lascia-lo-zampino",
+    "date": "2001-07-29",
+    "time": "13:35:29",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "35",
+    "second": "29"
+  },
+  {
+    "id": 9451,
+    "heading": "TESTIMONIANZA DELL'OMICIDIO DI CARLO",
+    "created": "2001-07-28 04:49:11",
+    "linked_file": null,
+    "hugo": "9451-testimonianza-dellomicidio-di-carlo",
+    "date": "2001-07-28",
+    "time": "04:49:11",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "04",
+    "minute": "49",
+    "second": "11"
+  },
+  {
+    "id": 9453,
+    "heading": "Genova - 20/21 luglio 2001",
+    "created": "2001-07-28 15:32:30",
+    "linked_file": null,
+    "hugo": "9453-genova-2021-luglio-2001",
+    "date": "2001-07-28",
+    "time": "15:32:30",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "32",
+    "second": "30"
+  },
+  {
+    "id": 9459,
+    "heading": "solidarietà internazionale",
+    "created": "2001-07-27 19:30:22",
+    "linked_file": null,
+    "hugo": "9459-solidarieta-internazionale",
+    "date": "2001-07-27",
+    "time": "19:30:22",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "30",
+    "second": "22"
+  },
+  {
+    "id": 9463,
+    "heading": "Il ministro degil esteri tedesco esige chiarezza (da Spiegelonline)(tedesco)",
+    "created": "2001-07-27 19:26:42",
+    "linked_file": null,
+    "hugo": "9463-il-ministro-degil-esteri-tedesco-esige-chiarezza-da-spiegelonlinetedesco",
+    "date": "2001-07-27",
+    "time": "19:26:42",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "26",
+    "second": "42"
+  },
+  {
+    "id": 9464,
+    "heading": "Solidarity with Tomas Aleinikovas",
+    "created": "2001-07-29 08:35:18",
+    "linked_file": null,
+    "hugo": "9464-solidarity-with-tomas-aleinikovas",
+    "date": "2001-07-29",
+    "time": "08:35:18",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "35",
+    "second": "18"
+  },
+  {
+    "id": 9474,
+    "heading": "dal sud america",
+    "created": "2001-07-27 21:29:46",
+    "linked_file": "2001/07/carlo.gif",
+    "hugo": "9474-dal-sud-america",
+    "date": "2001-07-27",
+    "time": "21:29:46",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "21",
+    "minute": "29",
+    "second": "46"
+  },
+  {
+    "id": 9475,
+    "heading": "New illustration about Carlo Giuliani's murder (free distribution)",
+    "created": "2001-07-28 12:12:10",
+    "linked_file": "2001/07/carlox21mlv.gif",
+    "hugo": "9475-new-illustration-about-carlo-giulianis-murder-free-distribution",
+    "date": "2001-07-28",
+    "time": "12:12:10",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "12",
+    "second": "10"
+  },
+  {
+    "id": 9478,
+    "heading": "Boston, Ma., USA Giuliani Solidarity Protest!",
+    "created": "2001-07-30 13:01:09",
+    "linked_file": null,
+    "hugo": "9478-boston-ma-usa-giuliani-solidarity-protest",
+    "date": "2001-07-30",
+    "time": "13:01:09",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "01",
+    "second": "09"
+  },
+  {
+    "id": 9485,
+    "heading": "Dalla Cina alla Francia",
+    "created": "2001-07-28 01:43:47",
+    "linked_file": null,
+    "hugo": "9485-dalla-cina-alla-francia",
+    "date": "2001-07-28",
+    "time": "01:43:47",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "01",
+    "minute": "43",
+    "second": "47"
+  },
+  {
+    "id": 9486,
+    "heading": "abbiamo visto abbiamo sentito abbiamo saputo",
+    "created": "2001-07-28 02:12:50",
+    "linked_file": null,
+    "hugo": "9486-abbiamo-visto-abbiamo-sentito-abbiamo-saputo",
+    "date": "2001-07-28",
+    "time": "02:12:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "12",
+    "second": "50"
+  },
+  {
+    "id": 9489,
+    "heading": "test ignore",
+    "created": "2001-07-28 01:35:40",
+    "linked_file": null,
+    "hugo": "9489-test-ignore",
+    "date": "2001-07-28",
+    "time": "01:35:40",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "01",
+    "minute": "35",
+    "second": "40"
+  },
+  {
+    "id": 9495,
+    "heading": "macchine parcheggiate lungo un corteo?",
+    "created": "2001-07-28 15:03:56",
+    "linked_file": "2001/07/scontri_11.jpg",
+    "hugo": "9495-macchine-parcheggiate-lungo-un-corteo",
+    "date": "2001-07-28",
+    "time": "15:03:56",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "03",
+    "second": "56"
+  },
+  {
+    "id": 9497,
+    "heading": "Protestate: Indirizzi email dei deputati italiani",
+    "created": "2001-07-28 02:15:29",
+    "linked_file": null,
+    "hugo": "9497-protestate-indirizzi-email-dei-deputati-italiani",
+    "date": "2001-07-28",
+    "time": "02:15:29",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "15",
+    "second": "29"
+  },
+  {
+    "id": 9499,
+    "heading": "Cocer Carabinieri, un documento",
+    "created": "2001-07-28 05:25:40",
+    "linked_file": null,
+    "hugo": "9499-cocer-carabinieri-un-documento",
+    "date": "2001-07-28",
+    "time": "05:25:40",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "05",
+    "minute": "25",
+    "second": "40"
+  },
+  {
+    "id": 9500,
+    "heading": "Know your enemy: two links to articles about fascism",
+    "created": "2001-07-28 02:23:31",
+    "linked_file": null,
+    "hugo": "9500-know-your-enemy-two-links-to-articles-about-fascism",
+    "date": "2001-07-28",
+    "time": "02:23:31",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "23",
+    "second": "31"
+  },
+  {
+    "id": 9502,
+    "heading": "Carlo non è stato ucciso per \"legittima difesa\"",
+    "created": "2001-07-28 06:56:03",
+    "linked_file": "2001/07/indexitalianoon4yss.ppt",
+    "hugo": "9502-carlo-non-e-stato-ucciso-per-legittima-difesa",
+    "date": "2001-07-28",
+    "time": "06:56:03",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "06",
+    "minute": "56",
+    "second": "03"
+  },
+  {
+    "id": 9503,
+    "heading": "che vita e'",
+    "created": "2001-07-28 02:42:15",
+    "linked_file": null,
+    "hugo": "9503-che-vita-e",
+    "date": "2001-07-28",
+    "time": "02:42:15",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "42",
+    "second": "15"
+  },
+  {
+    "id": 9504,
+    "heading": "G8: IL DEBITO DEI PAESI RICCHI\r(cronache genovesi, n°3)\r",
+    "created": "2001-07-28 02:49:45",
+    "linked_file": null,
+    "hugo": "9504-g8-il-debito-dei-paesi-ricchicronache-genovesi-n3",
+    "date": "2001-07-28",
+    "time": "02:49:45",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "49",
+    "second": "45"
+  },
+  {
+    "id": 9506,
+    "heading": "Carabinieri had a high profile and low tactics",
+    "created": "2001-07-28 03:00:51",
+    "linked_file": null,
+    "hugo": "9506-carabinieri-had-a-high-profile-and-low-tactics",
+    "date": "2001-07-28",
+    "time": "03:00:51",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "00",
+    "second": "51"
+  },
+  {
+    "id": 9508,
+    "heading": "L'Avvenire chiede le dimissioni di De Gennaro!",
+    "created": "2001-07-28 03:02:14",
+    "linked_file": null,
+    "hugo": "9508-lavvenire-chiede-le-dimissioni-di-de-gennaro",
+    "date": "2001-07-28",
+    "time": "03:02:14",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "02",
+    "second": "14"
+  },
+  {
+    "id": 9509,
+    "heading": "ECCO LA FOTO di un funzionario carcerario complice GOM e storia documentata GOM",
+    "created": "2001-07-28 09:54:58",
+    "linked_file": "2001/07/dellavecchia1p03tgsd.jpg",
+    "hugo": "9509-ecco-la-foto-di-un-funzionario-carcerario-complice-gom-e-storia-documentata-gom",
+    "date": "2001-07-28",
+    "time": "09:54:58",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "54",
+    "second": "58"
+  },
+  {
+    "id": 9516,
+    "heading": "considerazioni personali su genova",
+    "created": "2001-07-28 03:27:27",
+    "linked_file": null,
+    "hugo": "9516-considerazioni-personali-su-genova",
+    "date": "2001-07-28",
+    "time": "03:27:27",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "27",
+    "second": "27"
+  },
+  {
+    "id": 9518,
+    "heading": "La \"Canzoncina\" di Bolzaneto",
+    "created": "2001-07-28 08:28:55",
+    "linked_file": null,
+    "hugo": "9518-la-canzoncina-di-bolzaneto",
+    "date": "2001-07-28",
+    "time": "08:28:55",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "08",
+    "minute": "28",
+    "second": "55"
+  },
+  {
+    "id": 9521,
+    "heading": "\"Il Foglio\" del servo Ferrara chiede chiarezza al governo",
+    "created": "2001-07-28 03:51:12",
+    "linked_file": null,
+    "hugo": "9521-il-foglio-del-servo-ferrara-chiede-chiarezza-al-governo",
+    "date": "2001-07-28",
+    "time": "03:51:12",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "51",
+    "second": "12"
+  },
+  {
+    "id": 9522,
+    "heading": "G8: IL DEBITO DEI PAESI RICCHI\r(cronache genovesi, n°3)\r",
+    "created": "2001-07-28 09:27:08",
+    "linked_file": null,
+    "hugo": "9522-g8-il-debito-dei-paesi-ricchicronache-genovesi-n3",
+    "date": "2001-07-28",
+    "time": "09:27:08",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "27",
+    "second": "08"
+  },
+  {
+    "id": 9527,
+    "heading": "foto di ordinaria violenza",
+    "created": "2001-07-28 05:21:27",
+    "linked_file": "2001/07/calci.gif",
+    "hugo": "9527-foto-di-ordinaria-violenza",
+    "date": "2001-07-28",
+    "time": "05:21:27",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "05",
+    "minute": "21",
+    "second": "27"
+  },
+  {
+    "id": 9530,
+    "heading": "G8: LA LIBERTA' FA MALE?\r",
+    "created": "2001-07-28 11:01:42",
+    "linked_file": null,
+    "hugo": "9530-g8-la-liberta-fa-male",
+    "date": "2001-07-28",
+    "time": "11:01:42",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "11",
+    "minute": "01",
+    "second": "42"
+  },
+  {
+    "id": 9535,
+    "heading": "G8: LE BOTTE VERE NELLE FINTE LOTTE\r",
+    "created": "2001-07-28 09:35:26",
+    "linked_file": null,
+    "hugo": "9535-g8-le-botte-vere-nelle-finte-lotte",
+    "date": "2001-07-28",
+    "time": "09:35:26",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "35",
+    "second": "26"
+  },
+  {
+    "id": 9536,
+    "heading": "VIDEO SU BLIZ DIAZ (QUALCUNO RIESCE A VEDERLI?)",
+    "created": "2001-07-29 09:23:16",
+    "linked_file": null,
+    "hugo": "9536-video-su-bliz-diaz-qualcuno-riesce-a-vederli",
+    "date": "2001-07-29",
+    "time": "09:23:16",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "23",
+    "second": "16"
+  },
+  {
+    "id": 9538,
+    "heading": "VIOLANTE, COMMISSIONE INCHIESTA O CI MOBILITIAMO (Ansa)",
+    "created": "2001-07-29 07:44:55",
+    "linked_file": null,
+    "hugo": "9538-violante-commissione-inchiesta-o-ci-mobilitiamo-ansa",
+    "date": "2001-07-29",
+    "time": "07:44:55",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "44",
+    "second": "55"
+  },
+  {
+    "id": 9542,
+    "heading": "DE GENNARO MENTE - DE GENNARO IS LYING",
+    "created": "2001-07-28 12:33:48",
+    "linked_file": null,
+    "hugo": "9542-de-gennaro-mente-de-gennaro-is-lying",
+    "date": "2001-07-28",
+    "time": "12:33:48",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "33",
+    "second": "48"
+  },
+  {
+    "id": 9547,
+    "heading": "non vivo bene da genova!",
+    "created": "2001-07-29 18:02:13",
+    "linked_file": null,
+    "hugo": "9547-non-vivo-bene-da-genova",
+    "date": "2001-07-29",
+    "time": "18:02:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "02",
+    "second": "13"
+  },
+  {
+    "id": 9549,
+    "heading": "I magistrati vogliono foto e video...",
+    "created": "2001-07-28 08:49:42",
+    "linked_file": null,
+    "hugo": "9549-i-magistrati-vogliono-foto-e-video",
+    "date": "2001-07-28",
+    "time": "08:49:42",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "08",
+    "minute": "49",
+    "second": "42"
+  },
+  {
+    "id": 9552,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-29 15:54:04",
+    "linked_file": null,
+    "hugo": "9552-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-29",
+    "time": "15:54:04",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "54",
+    "second": "04"
+  },
+  {
+    "id": 9553,
+    "heading": "L'ESTINTORE ESCE A SPINTA  E QUALCUNO CI LASCIA LO ZAMPINO",
+    "created": "2001-07-28 05:19:32",
+    "linked_file": null,
+    "hugo": "9553-lestintore-esce-a-spinta-e-qualcuno-ci-lascia-lo-zampino",
+    "date": "2001-07-28",
+    "time": "05:19:32",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "05",
+    "minute": "19",
+    "second": "32"
+  },
+  {
+    "id": 9565,
+    "heading": "PLEASE, SPREAD THIS MESSAGE - PER FAVORE, DIFFONDI QUESTO MESSAGGIO",
+    "created": "2001-07-28 13:48:44",
+    "linked_file": null,
+    "hugo": "9565-please-spread-this-message-per-favore-diffondi-questo-messaggio",
+    "date": "2001-07-28",
+    "time": "13:48:44",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "48",
+    "second": "44"
+  },
+  {
+    "id": 9568,
+    "heading": "London:ore 15 italiane inizio manifestazione amb.italiana",
+    "created": "2001-07-28 07:15:46",
+    "linked_file": null,
+    "hugo": "9568-londonore-15-italiane-inizio-manifestazione-ambitaliana",
+    "date": "2001-07-28",
+    "time": "07:15:46",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "15",
+    "second": "46"
+  },
+  {
+    "id": 9578,
+    "heading": "Police face sack for Genoa 'brutality'",
+    "created": "2001-07-28 13:07:18",
+    "linked_file": null,
+    "hugo": "9578-police-face-sack-for-genoa-brutality",
+    "date": "2001-07-28",
+    "time": "13:07:18",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "07",
+    "second": "18"
+  },
+  {
+    "id": 9579,
+    "heading": "VECCHIO FILM",
+    "created": "2001-07-28 07:12:20",
+    "linked_file": "2001/07/carbbb.jpg",
+    "hugo": "9579-vecchio-film",
+    "date": "2001-07-28",
+    "time": "07:12:20",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "12",
+    "second": "20"
+  },
+  {
+    "id": 9585,
+    "heading": "estintori e trappole",
+    "created": "2001-07-29 11:11:28",
+    "linked_file": null,
+    "hugo": "9585-estintori-e-trappole",
+    "date": "2001-07-29",
+    "time": "11:11:28",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "11",
+    "minute": "11",
+    "second": "28"
+  },
+  {
+    "id": 9588,
+    "heading": "BLACK FLOP",
+    "created": "2001-07-28 11:00:47",
+    "linked_file": null,
+    "hugo": "9588-black-flop",
+    "date": "2001-07-28",
+    "time": "11:00:47",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "11",
+    "minute": "00",
+    "second": "47"
+  },
+  {
+    "id": 9589,
+    "heading": "**IMPORTANTE** - LA CONDANNA DEL PRESIDENTE DEL SINDACATO EUROPEO DI POLIZIA",
+    "created": "2001-07-28 14:03:50",
+    "linked_file": null,
+    "hugo": "9589-importante-la-condanna-del-presidente-del-sindacato-europeo-di-polizia",
+    "date": "2001-07-28",
+    "time": "14:03:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "14",
+    "minute": "03",
+    "second": "50"
+  },
+  {
+    "id": 9590,
+    "heading": "**IMPORTANTE** - LA CONDANNA DEL PRESIDENTE DEL SINDACATO EUROPEO DI POLIZIA",
+    "created": "2001-07-28 09:38:29",
+    "linked_file": null,
+    "hugo": "9590-importante-la-condanna-del-presidente-del-sindacato-europeo-di-polizia",
+    "date": "2001-07-28",
+    "time": "09:38:29",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "38",
+    "second": "29"
+  },
+  {
+    "id": 9591,
+    "heading": "Manifestazione a Pescara del 24/7",
+    "created": "2001-07-28 07:30:45",
+    "linked_file": null,
+    "hugo": "9591-manifestazione-a-pescara-del-247",
+    "date": "2001-07-28",
+    "time": "07:30:45",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "30",
+    "second": "45"
+  },
+  {
+    "id": 9592,
+    "heading": "Echelon in azione a Genova: Repressione Globale Fase 1",
+    "created": "2001-07-28 09:52:24",
+    "linked_file": null,
+    "hugo": "9592-echelon-in-azione-a-genova-repressione-globale-fase-1",
+    "date": "2001-07-28",
+    "time": "09:52:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "52",
+    "second": "24"
+  },
+  {
+    "id": 9593,
+    "heading": "BLACK BLOC IS BLACK FLOP",
+    "created": "2001-07-28 16:54:24",
+    "linked_file": null,
+    "hugo": "9593-black-bloc-is-black-flop",
+    "date": "2001-07-28",
+    "time": "16:54:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "16",
+    "minute": "54",
+    "second": "24"
+  },
+  {
+    "id": 9594,
+    "heading": "Echelon in azione a Genova: Repressione Globale Fase 2",
+    "created": "2001-07-28 10:00:46",
+    "linked_file": null,
+    "hugo": "9594-echelon-in-azione-a-genova-repressione-globale-fase-2",
+    "date": "2001-07-28",
+    "time": "10:00:46",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "00",
+    "second": "46"
+  },
+  {
+    "id": 9613,
+    "heading": "99 Posse di ritorno da Genova",
+    "created": "2001-07-30 04:33:07",
+    "linked_file": null,
+    "hugo": "9613-99-posse-di-ritorno-da-genova",
+    "date": "2001-07-30",
+    "time": "04:33:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "33",
+    "second": "07"
+  },
+  {
+    "id": 9622,
+    "heading": "Prisoner solidarity action in Hamburg, Germany",
+    "created": "2001-07-31 03:28:53",
+    "linked_file": "2001/07/funeral1.jpg",
+    "hugo": "9622-prisoner-solidarity-action-in-hamburg-germany",
+    "date": "2001-07-31",
+    "time": "03:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "03",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 9624,
+    "heading": "Ci sono altri morti? Facciamo luce",
+    "created": "2001-07-29 05:01:13",
+    "linked_file": null,
+    "hugo": "9624-ci-sono-altri-morti-facciamo-luce",
+    "date": "2001-07-29",
+    "time": "05:01:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "05",
+    "minute": "01",
+    "second": "13"
+  },
+  {
+    "id": 9658,
+    "heading": "NIENTE CENSURA, MA VIGILANZA!!!",
+    "created": "2001-07-28 12:46:53",
+    "linked_file": null,
+    "hugo": "9658-niente-censura-ma-vigilanza",
+    "date": "2001-07-28",
+    "time": "12:46:53",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "46",
+    "second": "53"
+  },
+  {
+    "id": 9665,
+    "heading": "Secolo XIX su Black Bloc",
+    "created": "2001-07-28 13:08:11",
+    "linked_file": null,
+    "hugo": "9665-secolo-xix-su-black-bloc",
+    "date": "2001-07-28",
+    "time": "13:08:11",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "08",
+    "second": "11"
+  },
+  {
+    "id": 9672,
+    "heading": "L'informazione è davvero obiettiva a Mediaset come si afferma da più parti?",
+    "created": "2001-07-28 13:38:39",
+    "linked_file": null,
+    "hugo": "9672-linformazione-e-davvero-obiettiva-a-mediaset-come-si-afferma-da-piu-parti",
+    "date": "2001-07-28",
+    "time": "13:38:39",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "38",
+    "second": "39"
+  },
+  {
+    "id": 9674,
+    "heading": "Catarro di poliziotto su Fausto",
+    "created": "2001-07-29 07:12:51",
+    "linked_file": "2001/07/testimone.doc",
+    "hugo": "9674-catarro-di-poliziotto-su-fausto",
+    "date": "2001-07-29",
+    "time": "07:12:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "12",
+    "second": "51"
+  },
+  {
+    "id": 9679,
+    "heading": "Berlino: in 1000  protestano contro violenze polizia italiana",
+    "created": "2001-07-28 10:48:38",
+    "linked_file": null,
+    "hugo": "9679-berlino-in-1000-protestano-contro-violenze-polizia-italiana",
+    "date": "2001-07-28",
+    "time": "10:48:38",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "48",
+    "second": "38"
+  },
+  {
+    "id": 9702,
+    "heading": "Maltese group Moviment Graffiti protests against abuse of power by Italian G8 po",
+    "created": "2001-07-28 11:30:52",
+    "linked_file": "2001/07/graffitti8.jpg",
+    "hugo": "9702-maltese-group-moviment-graffiti-protests-against-abuse-of-power-by-italian-g8-po",
+    "date": "2001-07-28",
+    "time": "11:30:52",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "11",
+    "minute": "30",
+    "second": "52"
+  },
+  {
+    "id": 9714,
+    "heading": "Ci sono altri morti? (2)",
+    "created": "2001-07-29 12:18:45",
+    "linked_file": null,
+    "hugo": "9714-ci-sono-altri-morti-2",
+    "date": "2001-07-29",
+    "time": "12:18:45",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "18",
+    "second": "45"
+  },
+  {
+    "id": 9720,
+    "heading": "da altri siti",
+    "created": "2001-07-28 12:30:57",
+    "linked_file": null,
+    "hugo": "9720-da-altri-siti",
+    "date": "2001-07-28",
+    "time": "12:30:57",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "30",
+    "second": "57"
+  },
+  {
+    "id": 9725,
+    "heading": "Straw tackles Italy's envoy over'shocking' violence",
+    "created": "2001-07-28 15:08:06",
+    "linked_file": null,
+    "hugo": "9725-straw-tackles-italys-envoy-overshocking-violence",
+    "date": "2001-07-28",
+    "time": "15:08:06",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "08",
+    "second": "06"
+  },
+  {
+    "id": 9728,
+    "heading": "Testimony  from a police  custody (El Veneto)",
+    "created": "2001-07-28 14:48:01",
+    "linked_file": null,
+    "hugo": "9728-testimony-from-a-police-custody-el-veneto",
+    "date": "2001-07-28",
+    "time": "14:48:01",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "14",
+    "minute": "48",
+    "second": "01"
+  },
+  {
+    "id": 9734,
+    "heading": "INTERVISTA FANTOCCIO del capo carcerario SABELLA A DIFESA DEI TORTURATORI GOM",
+    "created": "2001-07-28 17:59:34",
+    "linked_file": null,
+    "hugo": "9734-intervista-fantoccio-del-capo-carcerario-sabella-a-difesa-dei-torturatori-gom",
+    "date": "2001-07-28",
+    "time": "17:59:34",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "59",
+    "second": "34"
+  },
+  {
+    "id": 9739,
+    "heading": "FUORI ORARIO NON E' STATO OSCURATO",
+    "created": "2001-07-28 15:32:24",
+    "linked_file": null,
+    "hugo": "9739-fuori-orario-non-e-stato-oscurato",
+    "date": "2001-07-28",
+    "time": "15:32:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "32",
+    "second": "24"
+  },
+  {
+    "id": 9752,
+    "heading": "CONSIGLIO X I NAVIGANTI",
+    "created": "2001-07-28 15:00:24",
+    "linked_file": null,
+    "hugo": "9752-consiglio-x-i-naviganti",
+    "date": "2001-07-28",
+    "time": "15:00:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "00",
+    "second": "24"
+  },
+  {
+    "id": 9756,
+    "heading": "BOICOTTA L'ESPRESSO",
+    "created": "2001-07-29 09:12:54",
+    "linked_file": null,
+    "hugo": "9756-boicotta-lespresso",
+    "date": "2001-07-29",
+    "time": "09:12:54",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "12",
+    "second": "54"
+  },
+  {
+    "id": 9766,
+    "heading": "Defacing di protesta/Protest defacing",
+    "created": "2001-07-28 20:59:39",
+    "linked_file": null,
+    "hugo": "9766-defacing-di-protestaprotest-defacing",
+    "date": "2001-07-28",
+    "time": "20:59:39",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "20",
+    "minute": "59",
+    "second": "39"
+  },
+  {
+    "id": 9767,
+    "heading": "\"Report on Lawlessness from the Deaf Messenger\"",
+    "created": "2001-07-28 14:35:50",
+    "linked_file": null,
+    "hugo": "9767-report-on-lawlessness-from-the-deaf-messenger",
+    "date": "2001-07-28",
+    "time": "14:35:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "14",
+    "minute": "35",
+    "second": "50"
+  },
+  {
+    "id": 9778,
+    "heading": "aiutateci a rispondere alle domande su carlo",
+    "created": "2001-07-28 15:06:50",
+    "linked_file": null,
+    "hugo": "9778-aiutateci-a-rispondere-alle-domande-su-carlo",
+    "date": "2001-07-28",
+    "time": "15:06:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "06",
+    "second": "50"
+  },
+  {
+    "id": 9795,
+    "heading": "CALL UP FOR SOLIDARITY: publiXtheatreCaravane still in jail",
+    "created": "2001-07-28 15:36:23",
+    "linked_file": null,
+    "hugo": "9795-call-up-for-solidarity-publixtheatrecaravane-still-in-jail",
+    "date": "2001-07-28",
+    "time": "15:36:23",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "36",
+    "second": "23"
+  },
+  {
+    "id": 9801,
+    "heading": " General faces Genoa inquiry",
+    "created": "2001-07-29 07:47:42",
+    "linked_file": null,
+    "hugo": "9801-general-faces-genoa-inquiry",
+    "date": "2001-07-29",
+    "time": "07:47:42",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "47",
+    "second": "42"
+  },
+  {
+    "id": 9802,
+    "heading": "anarchie et facade... suite de del'interieur",
+    "created": "2001-07-28 16:46:33",
+    "linked_file": null,
+    "hugo": "9802-anarchie-et-facade-suite-de-delinterieur",
+    "date": "2001-07-28",
+    "time": "16:46:33",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "16",
+    "minute": "46",
+    "second": "33"
+  },
+  {
+    "id": 9812,
+    "heading": "GENOVA: TRE IPOTESI",
+    "created": "2001-07-29 15:24:05",
+    "linked_file": null,
+    "hugo": "9812-genova-tre-ipotesi",
+    "date": "2001-07-29",
+    "time": "15:24:05",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "24",
+    "second": "05"
+  },
+  {
+    "id": 9816,
+    "heading": "Attenzione Virus",
+    "created": "2001-07-29 07:20:28",
+    "linked_file": null,
+    "hugo": "9816-attenzione-virus",
+    "date": "2001-07-29",
+    "time": "07:20:28",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "20",
+    "second": "28"
+  },
+  {
+    "id": 9817,
+    "heading": " Genoa 'police brutality' dossier handed over",
+    "created": "2001-07-28 17:44:28",
+    "linked_file": null,
+    "hugo": "9817-genoa-police-brutality-dossier-handed-over",
+    "date": "2001-07-28",
+    "time": "17:44:28",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "44",
+    "second": "28"
+  },
+  {
+    "id": 9822,
+    "heading": "L'appello della Procura su Genova",
+    "created": "2001-07-29 06:27:53",
+    "linked_file": null,
+    "hugo": "9822-lappello-della-procura-su-genova",
+    "date": "2001-07-29",
+    "time": "06:27:53",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "06",
+    "minute": "27",
+    "second": "53"
+  },
+  {
+    "id": 9828,
+    "heading": "SECONDO APPELLO AI NAVIGANTI",
+    "created": "2001-07-29 05:30:19",
+    "linked_file": null,
+    "hugo": "9828-secondo-appello-ai-naviganti",
+    "date": "2001-07-29",
+    "time": "05:30:19",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "05",
+    "minute": "30",
+    "second": "19"
+  },
+  {
+    "id": 9829,
+    "heading": "AUTO E CASSONETTI",
+    "created": "2001-07-28 18:46:20",
+    "linked_file": null,
+    "hugo": "9829-auto-e-cassonetti",
+    "date": "2001-07-28",
+    "time": "18:46:20",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "18",
+    "minute": "46",
+    "second": "20"
+  },
+  {
+    "id": 9832,
+    "heading": "fotos: Giuliani solidarity in Boston, USA",
+    "created": "2001-07-28 19:34:19",
+    "linked_file": null,
+    "hugo": "9832-fotos-giuliani-solidarity-in-boston-usa",
+    "date": "2001-07-28",
+    "time": "19:34:19",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "19",
+    "minute": "34",
+    "second": "19"
+  },
+  {
+    "id": 9834,
+    "heading": "Voi cosa ne pensate? (Carlo i CC ecc...)",
+    "created": "2001-07-29 06:03:03",
+    "linked_file": null,
+    "hugo": "9834-voi-cosa-ne-pensate-carlo-i-cc-ecc",
+    "date": "2001-07-29",
+    "time": "06:03:03",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "06",
+    "minute": "03",
+    "second": "03"
+  },
+  {
+    "id": 9844,
+    "heading": "American, Su Thomas held at Voghera prison.",
+    "created": "2001-07-28 23:14:56",
+    "linked_file": null,
+    "hugo": "9844-american-su-thomas-held-at-voghera-prison",
+    "date": "2001-07-28",
+    "time": "23:14:56",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "23",
+    "minute": "14",
+    "second": "56"
+  },
+  {
+    "id": 9846,
+    "heading": "Firewall e sicurezza",
+    "created": "2001-07-29 09:38:46",
+    "linked_file": null,
+    "hugo": "9846-firewall-e-sicurezza",
+    "date": "2001-07-29",
+    "time": "09:38:46",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "38",
+    "second": "46"
+  },
+  {
+    "id": 9849,
+    "heading": ":: Requiem in Italy and the World :: 20 July 2001 ::",
+    "created": "2001-07-29 02:00:59",
+    "linked_file": null,
+    "hugo": "9849-requiem-in-italy-and-the-world-20-july-2001-",
+    "date": "2001-07-29",
+    "time": "02:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "02",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 9850,
+    "heading": ":: Genoa :: Requiem in Italy and the World :: 20 July 2001",
+    "created": "2001-07-29 02:08:59",
+    "linked_file": null,
+    "hugo": "9850-genoa-requiem-in-italy-and-the-world-20-july-2001",
+    "date": "2001-07-29",
+    "time": "02:08:59",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "02",
+    "minute": "08",
+    "second": "59"
+  },
+  {
+    "id": 9854,
+    "heading": "en, fr,it, de ...) genoa info and solidarity info multilingual on ainfos archive",
+    "created": "2001-07-29 02:32:35",
+    "linked_file": null,
+    "hugo": "9854-en-frit-de-genoa-info-and-solidarity-info-multilingual-on-ainfos-archive",
+    "date": "2001-07-29",
+    "time": "02:32:35",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "02",
+    "minute": "32",
+    "second": "35"
+  },
+  {
+    "id": 9857,
+    "heading": "achtung!",
+    "created": "2001-07-29 04:21:38",
+    "linked_file": "2001/07/maglietta_copia.gif",
+    "hugo": "9857-achtung",
+    "date": "2001-07-29",
+    "time": "04:21:38",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "04",
+    "minute": "21",
+    "second": "38"
+  },
+  {
+    "id": 9864,
+    "heading": "Infiltrati al corteo a Taranto",
+    "created": "2001-07-29 09:39:51",
+    "linked_file": null,
+    "hugo": "9864-infiltrati-al-corteo-a-taranto",
+    "date": "2001-07-29",
+    "time": "09:39:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "39",
+    "second": "51"
+  },
+  {
+    "id": 9866,
+    "heading": " \"Ci picchiavano senza pietà\"",
+    "created": "2001-07-29 07:59:22",
+    "linked_file": null,
+    "hugo": "9866-ci-picchiavano-senza-pieta",
+    "date": "2001-07-29",
+    "time": "07:59:22",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "59",
+    "second": "22"
+  },
+  {
+    "id": 9873,
+    "heading": "let's paint on our t-shirt",
+    "created": "2001-07-29 08:03:03",
+    "linked_file": "2001/07/maglietta_copiaxjqnab.gif",
+    "hugo": "9873-lets-paint-on-our-tshirt",
+    "date": "2001-07-29",
+    "time": "08:03:03",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "03",
+    "second": "03"
+  },
+  {
+    "id": 9875,
+    "heading": "testimonianze su genova tratte dal quotidiano siciliano \"L'ORA\"",
+    "created": "2001-07-29 16:34:31",
+    "linked_file": null,
+    "hugo": "9875-testimonianze-su-genova-tratte-dal-quotidiano-siciliano-lora",
+    "date": "2001-07-29",
+    "time": "16:34:31",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "34",
+    "second": "31"
+  },
+  {
+    "id": 9878,
+    "heading": "pace",
+    "created": "2001-07-29 04:16:21",
+    "linked_file": "2001/07/doc1.rtf",
+    "hugo": "9878-pace",
+    "date": "2001-07-29",
+    "time": "04:16:21",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "04",
+    "minute": "16",
+    "second": "21"
+  },
+  {
+    "id": 9883,
+    "heading": "Tanto di Cappello al TG5",
+    "created": "2001-07-31 12:12:13",
+    "linked_file": null,
+    "hugo": "9883-tanto-di-cappello-al-tg5",
+    "date": "2001-07-31",
+    "time": "12:12:13",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "12",
+    "minute": "12",
+    "second": "13"
+  },
+  {
+    "id": 9892,
+    "heading": "CONTINUIAMO COSì...FACCIAMOCI DEL MALE",
+    "created": "2001-07-29 13:49:26",
+    "linked_file": null,
+    "hugo": "9892-continuiamo-cosifacciamoci-del-male",
+    "date": "2001-07-29",
+    "time": "13:49:26",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "49",
+    "second": "26"
+  },
+  {
+    "id": 9898,
+    "heading": "qualcuno è risucito a riprodurre i filmati sul G8?",
+    "created": "2001-07-29 09:45:59",
+    "linked_file": null,
+    "hugo": "9898-qualcuno-e-risucito-a-riprodurre-i-filmati-sul-g8",
+    "date": "2001-07-29",
+    "time": "09:45:59",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "45",
+    "second": "59"
+  },
+  {
+    "id": 9910,
+    "heading": "la banda BB",
+    "created": "2001-07-31 10:10:49",
+    "linked_file": "2001/07/la_banda_bb.jpg",
+    "hugo": "9910-la-banda-bb",
+    "date": "2001-07-31",
+    "time": "10:10:49",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "10",
+    "second": "49"
+  },
+  {
+    "id": 9915,
+    "heading": "Boycott!",
+    "created": "2001-07-29 07:09:15",
+    "linked_file": "2001/07/boycott3.jpg",
+    "hugo": "9915-boycott",
+    "date": "2001-07-29",
+    "time": "07:09:15",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "09",
+    "second": "15"
+  },
+  {
+    "id": 9916,
+    "heading": "Cileni un cazzo...",
+    "created": "2001-07-29 13:25:19",
+    "linked_file": null,
+    "hugo": "9916-cileni-un-cazzo",
+    "date": "2001-07-29",
+    "time": "13:25:19",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "25",
+    "second": "19"
+  },
+  {
+    "id": 9922,
+    "heading": "SABELLI A LA7,LE VIOLENZE CI SONO STATE, I REFERTI PARLANO (Ansa)",
+    "created": "2001-07-29 10:36:54",
+    "linked_file": null,
+    "hugo": "9922-sabelli-a-la7le-violenze-ci-sono-state-i-referti-parlano-ansa",
+    "date": "2001-07-29",
+    "time": "10:36:54",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "36",
+    "second": "54"
+  },
+  {
+    "id": 9928,
+    "heading": "Lights, camera, protest... G8",
+    "created": "2001-07-29 07:50:32",
+    "linked_file": null,
+    "hugo": "9928-lights-camera-protest-g8",
+    "date": "2001-07-29",
+    "time": "07:50:32",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "50",
+    "second": "32"
+  },
+  {
+    "id": 9929,
+    "heading": "a tutto il movimento no global",
+    "created": "2001-07-29 12:19:14",
+    "linked_file": null,
+    "hugo": "9929-a-tutto-il-movimento-no-global",
+    "date": "2001-07-29",
+    "time": "12:19:14",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "19",
+    "second": "14"
+  },
+  {
+    "id": 9935,
+    "heading": "\"Sono stato rapito e torturato dallo Stato italiano\"",
+    "created": "2001-07-29 10:52:11",
+    "linked_file": null,
+    "hugo": "9935-sono-stato-rapito-e-torturato-dallo-stato-italiano",
+    "date": "2001-07-29",
+    "time": "10:52:11",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "52",
+    "second": "11"
+  },
+  {
+    "id": 9940,
+    "heading": "Lapsus freudiano",
+    "created": "2001-07-29 08:31:08",
+    "linked_file": null,
+    "hugo": "9940-lapsus-freudiano",
+    "date": "2001-07-29",
+    "time": "08:31:08",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "31",
+    "second": "08"
+  },
+  {
+    "id": 9941,
+    "heading": "Revolutionary Peoples Liberation Front from Turkey about Genua",
+    "created": "2001-07-29 08:30:40",
+    "linked_file": null,
+    "hugo": "9941-revolutionary-peoples-liberation-front-from-turkey-about-genua",
+    "date": "2001-07-29",
+    "time": "08:30:40",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "30",
+    "second": "40"
+  },
+  {
+    "id": 9947,
+    "heading": "Black Bloc vero e Black Bloc finto: da Il Secolo XIX",
+    "created": "2001-07-29 10:27:51",
+    "linked_file": null,
+    "hugo": "9947-black-bloc-vero-e-black-bloc-finto-da-il-secolo-xix",
+    "date": "2001-07-29",
+    "time": "10:27:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "27",
+    "second": "51"
+  },
+  {
+    "id": 9948,
+    "heading": "Assassini",
+    "created": "2001-07-30 09:35:48",
+    "linked_file": null,
+    "hugo": "9948-assassini",
+    "date": "2001-07-30",
+    "time": "09:35:48",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "35",
+    "second": "48"
+  },
+  {
+    "id": 9952,
+    "heading": "Comunicato di guerra.",
+    "created": "2001-07-29 09:11:17",
+    "linked_file": null,
+    "hugo": "9952-comunicato-di-guerra",
+    "date": "2001-07-29",
+    "time": "09:11:17",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "11",
+    "second": "17"
+  },
+  {
+    "id": 9953,
+    "heading": "Comunicato di guerra.",
+    "created": "2001-07-30 05:35:06",
+    "linked_file": null,
+    "hugo": "9953-comunicato-di-guerra",
+    "date": "2001-07-30",
+    "time": "05:35:06",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "35",
+    "second": "06"
+  },
+  {
+    "id": 9962,
+    "heading": "Relato de un zaragozano detenido en Scuola Diaz (es)",
+    "created": "2001-07-29 12:19:19",
+    "linked_file": null,
+    "hugo": "9962-relato-de-un-zaragozano-detenido-en-scuola-diaz-es",
+    "date": "2001-07-29",
+    "time": "12:19:19",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "19",
+    "second": "19"
+  },
+  {
+    "id": 9973,
+    "heading": "Ci spiano, non ci spiano",
+    "created": "2001-07-29 15:53:10",
+    "linked_file": null,
+    "hugo": "9973-ci-spiano-non-ci-spiano",
+    "date": "2001-07-29",
+    "time": "15:53:10",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "53",
+    "second": "10"
+  },
+  {
+    "id": 9984,
+    "heading": "APPELLO AI NAVIGANTI",
+    "created": "2001-07-29 13:22:24",
+    "linked_file": null,
+    "hugo": "9984-appello-ai-naviganti",
+    "date": "2001-07-29",
+    "time": "13:22:24",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "22",
+    "second": "24"
+  },
+  {
+    "id": 9988,
+    "heading": "ancora sulle auto",
+    "created": "2001-07-29 13:13:37",
+    "linked_file": null,
+    "hugo": "9988-ancora-sulle-auto",
+    "date": "2001-07-29",
+    "time": "13:13:37",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "13",
+    "second": "37"
+  },
+  {
+    "id": 9990,
+    "heading": "BBC  \"Something clearly went very badly wrong with the policing.",
+    "created": "2001-07-29 11:43:12",
+    "linked_file": null,
+    "hugo": "9990-bbc-something-clearly-went-very-badly-wrong-with-the-policing",
+    "date": "2001-07-29",
+    "time": "11:43:12",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "11",
+    "minute": "43",
+    "second": "12"
+  },
+  {
+    "id": 9993,
+    "heading": "E' USCITO SU INTERNET L'INSERTO G8 di organizzazione comunista internazionalista",
+    "created": "2001-07-29 09:59:12",
+    "linked_file": null,
+    "hugo": "9993-e-uscito-su-internet-linserto-g8-di-organizzazione-comunista-internazionalista",
+    "date": "2001-07-29",
+    "time": "09:59:12",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "59",
+    "second": "12"
+  },
+  {
+    "id": 9994,
+    "heading": "IL MURO DI GENOVA E QUELLO DI BERLINO: ANALOGIE",
+    "created": "2001-07-30 10:24:09",
+    "linked_file": "2001/07/mur03.jpg",
+    "hugo": "9994-il-muro-di-genova-e-quello-di-berlino-analogie",
+    "date": "2001-07-30",
+    "time": "10:24:09",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "24",
+    "second": "09"
+  },
+  {
+    "id": 9996,
+    "heading": "SI CHIAMA ALFONSO SABELLA e non SABELLI il capo carcarario Dap (vedi Gom)",
+    "created": "2001-07-29 10:05:11",
+    "linked_file": null,
+    "hugo": "9996-si-chiama-alfonso-sabella-e-non-sabelli-il-capo-carcarario-dap-vedi-gom",
+    "date": "2001-07-29",
+    "time": "10:05:11",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "05",
+    "second": "11"
+  }
+]

+ 28427 - 0
sorted.json

@@ -0,0 +1,28427 @@
+[
+  {
+    "id": 2405,
+    "heading": "Palermo antiG8. Sequestrato dai CC il manifesto del coord. antiproibizionista",
+    "created": "2001-07-01 06:22:51",
+    "linked_file": null,
+    "hugo": "2405-palermo-antig8-sequestrato-dai-cc-il-manifesto-del-coord-antiproibizionista",
+    "date": "2001-07-01",
+    "time": "06:22:51",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "06",
+    "minute": "22",
+    "second": "51"
+  },
+  {
+    "id": 2338,
+    "heading": "JULY, 19TH-21: G8- EVERYONE TO GENOA!",
+    "created": "2001-07-01 06:37:30",
+    "linked_file": null,
+    "hugo": "2338-july-19th21-g8-everyone-to-genoa",
+    "date": "2001-07-01",
+    "time": "06:37:30",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "06",
+    "minute": "37",
+    "second": "30"
+  },
+  {
+    "id": 2412,
+    "heading": "G8 CONTRO TUTTI - TUTTI CONTRO G8",
+    "created": "2001-07-01 12:29:33",
+    "linked_file": null,
+    "hugo": "2412-g8-contro-tutti-tutti-contro-g8",
+    "date": "2001-07-01",
+    "time": "12:29:33",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "12",
+    "minute": "29",
+    "second": "33"
+  },
+  {
+    "id": 2416,
+    "heading": "\"In soccorso (al vincente\"",
+    "created": "2001-07-01 18:07:59",
+    "linked_file": null,
+    "hugo": "2416-in-soccorso-al-vincente",
+    "date": "2001-07-01",
+    "time": "18:07:59",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "18",
+    "minute": "07",
+    "second": "59"
+  },
+  {
+    "id": 2378,
+    "heading": "Information on Genova?",
+    "created": "2001-07-01 23:15:45",
+    "linked_file": null,
+    "hugo": "2378-information-on-genova",
+    "date": "2001-07-01",
+    "time": "23:15:45",
+    "year": "2001",
+    "month": "07",
+    "day": "01",
+    "hour": "23",
+    "minute": "15",
+    "second": "45"
+  },
+  {
+    "id": 2386,
+    "heading": "Initiatives during j21",
+    "created": "2001-07-02 12:10:46",
+    "linked_file": null,
+    "hugo": "2386-initiatives-during-j21",
+    "date": "2001-07-02",
+    "time": "12:10:46",
+    "year": "2001",
+    "month": "07",
+    "day": "02",
+    "hour": "12",
+    "minute": "10",
+    "second": "46"
+  },
+  {
+    "id": 2418,
+    "heading": "imagine all the people",
+    "created": "2001-07-02 15:30:36",
+    "linked_file": "2001/07/johnlennon.jpg",
+    "hugo": "2418-imagine-all-the-people",
+    "date": "2001-07-02",
+    "time": "15:30:36",
+    "year": "2001",
+    "month": "07",
+    "day": "02",
+    "hour": "15",
+    "minute": "30",
+    "second": "36"
+  },
+  {
+    "id": 2435,
+    "heading": "Torino 6 luglio assemblea per lo sciopero generale contro il G8",
+    "created": "2001-07-03 03:22:00",
+    "linked_file": null,
+    "hugo": "2435-torino-6-luglio-assemblea-per-lo-sciopero-generale-contro-il-g8",
+    "date": "2001-07-03",
+    "time": "03:22:00",
+    "year": "2001",
+    "month": "07",
+    "day": "03",
+    "hour": "03",
+    "minute": "22",
+    "second": "00"
+  },
+  {
+    "id": 2422,
+    "heading": "G8 - Berlusconi`s Elaborate Mousetrap",
+    "created": "2001-07-03 05:37:15",
+    "linked_file": null,
+    "hugo": "2422-g8-berlusconis-elaborate-mousetrap",
+    "date": "2001-07-03",
+    "time": "05:37:15",
+    "year": "2001",
+    "month": "07",
+    "day": "03",
+    "hour": "05",
+    "minute": "37",
+    "second": "15"
+  },
+  {
+    "id": 2439,
+    "heading": "Occupazioni agenzie di lavoro interinale in tutto il Sud",
+    "created": "2001-07-03 11:49:07",
+    "linked_file": null,
+    "hugo": "2439-occupazioni-agenzie-di-lavoro-interinale-in-tutto-il-sud",
+    "date": "2001-07-03",
+    "time": "11:49:07",
+    "year": "2001",
+    "month": "07",
+    "day": "03",
+    "hour": "11",
+    "minute": "49",
+    "second": "07"
+  },
+  {
+    "id": 2397,
+    "heading": "Genova citta' piu' dettagliata",
+    "created": "2001-07-04 03:44:12",
+    "linked_file": "2001/07/genovacitta.gif",
+    "hugo": "2397-genova-citta-piu-dettagliata",
+    "date": "2001-07-04",
+    "time": "03:44:12",
+    "year": "2001",
+    "month": "07",
+    "day": "04",
+    "hour": "03",
+    "minute": "44",
+    "second": "12"
+  },
+  {
+    "id": 2436,
+    "heading": "Anarchici contro il G8: comunicato dell'assemblea del 1 luglio",
+    "created": "2001-07-04 14:30:38",
+    "linked_file": null,
+    "hugo": "2436-anarchici-contro-il-g8-comunicato-dellassemblea-del-1-luglio",
+    "date": "2001-07-04",
+    "time": "14:30:38",
+    "year": "2001",
+    "month": "07",
+    "day": "04",
+    "hour": "14",
+    "minute": "30",
+    "second": "38"
+  },
+  {
+    "id": 2474,
+    "heading": "programma del public  forum (ge, 16->22 luglio)",
+    "created": "2001-07-05 17:05:41",
+    "linked_file": "2001/07/vbjcdq.txt",
+    "hugo": "2474-programma-del-public-forum-ge-1622-luglio",
+    "date": "2001-07-05",
+    "time": "17:05:41",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "17",
+    "minute": "05",
+    "second": "41"
+  },
+  {
+    "id": 18411,
+    "heading": "Inaccettabile il divieto di manifestare: Rizzo, Violante, Angius",
+    "created": "2001-07-05 18:59:52",
+    "linked_file": null,
+    "hugo": "18411-inaccettabile-il-divieto-di-manifestare-rizzo-violante-angius",
+    "date": "2001-07-05",
+    "time": "18:59:52",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "18",
+    "minute": "59",
+    "second": "52"
+  },
+  {
+    "id": 18422,
+    "heading": "diritti civili",
+    "created": "2001-07-05 19:48:01",
+    "linked_file": null,
+    "hugo": "18422-diritti-civili",
+    "date": "2001-07-05",
+    "time": "19:48:01",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "19",
+    "minute": "48",
+    "second": "01"
+  },
+  {
+    "id": 10799,
+    "heading": "Vi ricordate l'infoltarto a taranto?",
+    "created": "2001-07-05 20:27:01",
+    "linked_file": "2001/07/taranto1.asf",
+    "hugo": "10799-vi-ricordate-linfoltarto-a-taranto",
+    "date": "2001-07-05",
+    "time": "20:27:01",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "20",
+    "minute": "27",
+    "second": "01"
+  },
+  {
+    "id": 18433,
+    "heading": "NAVE PROFUGHI TAMPA E' VUOTA",
+    "created": "2001-07-05 20:49:09",
+    "linked_file": null,
+    "hugo": "18433-nave-profughi-tampa-e-vuota",
+    "date": "2001-07-05",
+    "time": "20:49:09",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "20",
+    "minute": "49",
+    "second": "09"
+  },
+  {
+    "id": 18295,
+    "heading": "BREVE PARENTESI",
+    "created": "2001-07-05 22:56:15",
+    "linked_file": null,
+    "hugo": "18295-breve-parentesi",
+    "date": "2001-07-05",
+    "time": "22:56:15",
+    "year": "2001",
+    "month": "07",
+    "day": "05",
+    "hour": "22",
+    "minute": "56",
+    "second": "15"
+  },
+  {
+    "id": 2482,
+    "heading": "G8",
+    "created": "2001-07-06 05:58:49",
+    "linked_file": "2001/07/a.jpg",
+    "hugo": "2482-g8",
+    "date": "2001-07-06",
+    "time": "05:58:49",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "05",
+    "minute": "58",
+    "second": "49"
+  },
+  {
+    "id": 2483,
+    "heading": "  Public Forum - genoa july 16th/22nd",
+    "created": "2001-07-06 09:08:38",
+    "linked_file": "2001/07/z4orr5.txt",
+    "hugo": "2483-public-forum-genoa-july-16th22nd",
+    "date": "2001-07-06",
+    "time": "09:08:38",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "09",
+    "minute": "08",
+    "second": "38"
+  },
+  {
+    "id": 2484,
+    "heading": "Genoa, 19-20-21 July Manifestations",
+    "created": "2001-07-06 09:14:16",
+    "linked_file": "2001/07/1xu6v2.txt",
+    "hugo": "2484-genoa-192021-july-manifestations",
+    "date": "2001-07-06",
+    "time": "09:14:16",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "09",
+    "minute": "14",
+    "second": "16"
+  },
+  {
+    "id": 2425,
+    "heading": "Next Stop : Genoa",
+    "created": "2001-07-06 09:50:19",
+    "linked_file": null,
+    "hugo": "2425-next-stop-genoa",
+    "date": "2001-07-06",
+    "time": "09:50:19",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "09",
+    "minute": "50",
+    "second": "19"
+  },
+  {
+    "id": 2477,
+    "heading": "Zarrillo ci ha dato una mano",
+    "created": "2001-07-06 14:47:58",
+    "linked_file": null,
+    "hugo": "2477-zarrillo-ci-ha-dato-una-mano",
+    "date": "2001-07-06",
+    "time": "14:47:58",
+    "year": "2001",
+    "month": "07",
+    "day": "06",
+    "hour": "14",
+    "minute": "47",
+    "second": "58"
+  },
+  {
+    "id": 2502,
+    "heading": "Direct Action against Repression /berlin",
+    "created": "2001-07-07 07:21:18",
+    "linked_file": null,
+    "hugo": "2502-direct-action-against-repression-berlin",
+    "date": "2001-07-07",
+    "time": "07:21:18",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "07",
+    "minute": "21",
+    "second": "18"
+  },
+  {
+    "id": 2476,
+    "heading": "programma manifestazioni del 19 20 e 21 a genova",
+    "created": "2001-07-07 07:45:52",
+    "linked_file": "2001/07/4hajjr.txt",
+    "hugo": "2476-programma-manifestazioni-del-19-20-e-21-a-genova",
+    "date": "2001-07-07",
+    "time": "07:45:52",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "07",
+    "minute": "45",
+    "second": "52"
+  },
+  {
+    "id": 2505,
+    "heading": "Rassegna stampa verso Genova",
+    "created": "2001-07-07 09:18:55",
+    "linked_file": null,
+    "hugo": "2505-rassegna-stampa-verso-genova",
+    "date": "2001-07-07",
+    "time": "09:18:55",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "09",
+    "minute": "18",
+    "second": "55"
+  },
+  {
+    "id": 2512,
+    "heading": "ECCOCI VENITE A PRENDERCI !!!",
+    "created": "2001-07-07 17:21:05",
+    "linked_file": null,
+    "hugo": "2512-eccoci-venite-a-prenderci-",
+    "date": "2001-07-07",
+    "time": "17:21:05",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "17",
+    "minute": "21",
+    "second": "05"
+  },
+  {
+    "id": 2457,
+    "heading": "La Tobin Tax fuori dal G8 di Genova...",
+    "created": "2001-07-07 18:14:44",
+    "linked_file": null,
+    "hugo": "2457-la-tobin-tax-fuori-dal-g8-di-genova",
+    "date": "2001-07-07",
+    "time": "18:14:44",
+    "year": "2001",
+    "month": "07",
+    "day": "07",
+    "hour": "18",
+    "minute": "14",
+    "second": "44"
+  },
+  {
+    "id": 2509,
+    "heading": "Qualcosa sta cambiando.....",
+    "created": "2001-07-08 08:12:07",
+    "linked_file": null,
+    "hugo": "2509-qualcosa-sta-cambiando",
+    "date": "2001-07-08",
+    "time": "08:12:07",
+    "year": "2001",
+    "month": "07",
+    "day": "08",
+    "hour": "08",
+    "minute": "12",
+    "second": "07"
+  },
+  {
+    "id": 2508,
+    "heading": "Moltitudini in marcia contro l'impero (audio - it)",
+    "created": "2001-07-08 14:39:13",
+    "linked_file": "2001/07/moltitudini.rm",
+    "hugo": "2508-moltitudini-in-marcia-contro-limpero-audio-it",
+    "date": "2001-07-08",
+    "time": "14:39:13",
+    "year": "2001",
+    "month": "07",
+    "day": "08",
+    "hour": "14",
+    "minute": "39",
+    "second": "13"
+  },
+  {
+    "id": 2529,
+    "heading": "Testo del ricorso al TAR - zona rossa illegittima",
+    "created": "2001-07-08 18:32:21",
+    "linked_file": null,
+    "hugo": "2529-testo-del-ricorso-al-tar-zona-rossa-illegittima",
+    "date": "2001-07-08",
+    "time": "18:32:21",
+    "year": "2001",
+    "month": "07",
+    "day": "08",
+    "hour": "18",
+    "minute": "32",
+    "second": "21"
+  },
+  {
+    "id": 2515,
+    "heading": "(en) Update from Genoa Friday July 7th",
+    "created": "2001-07-09 03:15:39",
+    "linked_file": null,
+    "hugo": "2515-en-update-from-genoa-friday-july-7th",
+    "date": "2001-07-09",
+    "time": "03:15:39",
+    "year": "2001",
+    "month": "07",
+    "day": "09",
+    "hour": "03",
+    "minute": "15",
+    "second": "39"
+  },
+  {
+    "id": 2487,
+    "heading": "napoli: pestaggio sotto la nave del G8",
+    "created": "2001-07-09 13:59:13",
+    "linked_file": null,
+    "hugo": "2487-napoli-pestaggio-sotto-la-nave-del-g8",
+    "date": "2001-07-09",
+    "time": "13:59:13",
+    "year": "2001",
+    "month": "07",
+    "day": "09",
+    "hour": "13",
+    "minute": "59",
+    "second": "13"
+  },
+  {
+    "id": 2534,
+    "heading": "Ensure you get to Genoa: Know your rights/Connaissez Vos Droits",
+    "created": "2001-07-09 17:09:02",
+    "linked_file": null,
+    "hugo": "2534-ensure-you-get-to-genoa-know-your-rightsconnaissez-vos-droits",
+    "date": "2001-07-09",
+    "time": "17:09:02",
+    "year": "2001",
+    "month": "07",
+    "day": "09",
+    "hour": "17",
+    "minute": "09",
+    "second": "02"
+  },
+  {
+    "id": 2549,
+    "heading": "Genova, ma continuiamo a seguirli?",
+    "created": "2001-07-10 06:54:17",
+    "linked_file": null,
+    "hugo": "2549-genova-ma-continuiamo-a-seguirli",
+    "date": "2001-07-10",
+    "time": "06:54:17",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "06",
+    "minute": "54",
+    "second": "17"
+  },
+  {
+    "id": 2561,
+    "heading": "Tute bianche",
+    "created": "2001-07-10 08:53:47",
+    "linked_file": "2001/07/god.jpg",
+    "hugo": "2561-tute-bianche",
+    "date": "2001-07-10",
+    "time": "08:53:47",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "08",
+    "minute": "53",
+    "second": "47"
+  },
+  {
+    "id": 2552,
+    "heading": "affinchè la protesta non si fermi a Genova",
+    "created": "2001-07-10 11:12:02",
+    "linked_file": null,
+    "hugo": "2552-affinche-la-protesta-non-si-fermi-a-genova",
+    "date": "2001-07-10",
+    "time": "11:12:02",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "11",
+    "minute": "12",
+    "second": "02"
+  },
+  {
+    "id": 2567,
+    "heading": "Torino: aperitivo contro il G8",
+    "created": "2001-07-10 14:56:31",
+    "linked_file": null,
+    "hugo": "2567-torino-aperitivo-contro-il-g8",
+    "date": "2001-07-10",
+    "time": "14:56:31",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "14",
+    "minute": "56",
+    "second": "31"
+  },
+  {
+    "id": 2570,
+    "heading": "carovana di biciclette a genova",
+    "created": "2001-07-10 15:45:04",
+    "linked_file": null,
+    "hugo": "2570-carovana-di-biciclette-a-genova",
+    "date": "2001-07-10",
+    "time": "15:45:04",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "15",
+    "minute": "45",
+    "second": "04"
+  },
+  {
+    "id": 2574,
+    "heading": "Luca Casarini's past re-emerges: he had stalinist friends!",
+    "created": "2001-07-10 19:20:52",
+    "linked_file": "2001/07/casarinistalin.jpg",
+    "hugo": "2574-luca-casarinis-past-reemerges-he-had-stalinist-friends",
+    "date": "2001-07-10",
+    "time": "19:20:52",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "19",
+    "minute": "20",
+    "second": "52"
+  },
+  {
+    "id": 2576,
+    "heading": "genoa infosheet july 10",
+    "created": "2001-07-10 21:45:26",
+    "linked_file": null,
+    "hugo": "2576-genoa-infosheet-july-10",
+    "date": "2001-07-10",
+    "time": "21:45:26",
+    "year": "2001",
+    "month": "07",
+    "day": "10",
+    "hour": "21",
+    "minute": "45",
+    "second": "26"
+  },
+  {
+    "id": 1861,
+    "heading": "Dalle moltitudini d'Europa in marcia contro l'Impero",
+    "created": "2001-07-11 02:15:58",
+    "linked_file": "2001/07/dalle_molt.txt",
+    "hugo": "1861-dalle-moltitudini-deuropa-in-marcia-contro-limpero",
+    "date": "2001-07-11",
+    "time": "02:15:58",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "02",
+    "minute": "15",
+    "second": "58"
+  },
+  {
+    "id": 2584,
+    "heading": "Attenzione! Un altro attacco è stato sferrato da Studio Aperto e TG la 7 contro",
+    "created": "2001-07-11 05:04:25",
+    "linked_file": null,
+    "hugo": "2584-attenzione-un-altro-attacco-e-stato-sferrato-da-studio-aperto-e-tg-la-7-contro",
+    "date": "2001-07-11",
+    "time": "05:04:25",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "05",
+    "minute": "04",
+    "second": "25"
+  },
+  {
+    "id": 2587,
+    "heading": "Clima. Bonn e Genova, sfida in contemporanea su Kyoto",
+    "created": "2001-07-11 06:55:42",
+    "linked_file": null,
+    "hugo": "2587-clima-bonn-e-genova-sfida-in-contemporanea-su-kyoto",
+    "date": "2001-07-11",
+    "time": "06:55:42",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "06",
+    "minute": "55",
+    "second": "42"
+  },
+  {
+    "id": 2591,
+    "heading": " UNA CAROVANA VERSO GENOVA",
+    "created": "2001-07-11 08:04:03",
+    "linked_file": null,
+    "hugo": "2591-una-carovana-verso-genova",
+    "date": "2001-07-11",
+    "time": "08:04:03",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "08",
+    "minute": "04",
+    "second": "03"
+  },
+  {
+    "id": 2593,
+    "heading": "radio popolare network a genova",
+    "created": "2001-07-11 08:30:07",
+    "linked_file": null,
+    "hugo": "2593-radio-popolare-network-a-genova",
+    "date": "2001-07-11",
+    "time": "08:30:07",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "08",
+    "minute": "30",
+    "second": "07"
+  },
+  {
+    "id": 2556,
+    "heading": "GENOA WILL NOT BE PORTO ALEGRE",
+    "created": "2001-07-11 09:13:27",
+    "linked_file": null,
+    "hugo": "2556-genoa-will-not-be-porto-alegre",
+    "date": "2001-07-11",
+    "time": "09:13:27",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "09",
+    "minute": "13",
+    "second": "27"
+  },
+  {
+    "id": 2599,
+    "heading": "treno dalla svizzera per genova 16.luglio",
+    "created": "2001-07-11 14:22:51",
+    "linked_file": null,
+    "hugo": "2599-treno-dalla-svizzera-per-genova-16luglio",
+    "date": "2001-07-11",
+    "time": "14:22:51",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "14",
+    "minute": "22",
+    "second": "51"
+  },
+  {
+    "id": 2602,
+    "heading": "Di cosa si discute al g8?",
+    "created": "2001-07-11 15:15:31",
+    "linked_file": "2001/07/cartello_g8.jpg",
+    "hugo": "2602-di-cosa-si-discute-al-g8",
+    "date": "2001-07-11",
+    "time": "15:15:31",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "15",
+    "minute": "15",
+    "second": "31"
+  },
+  {
+    "id": 2603,
+    "heading": "Come arrivare all'Information e al Converge Center",
+    "created": "2001-07-11 15:27:05",
+    "linked_file": "2001/07/imccenter.jpg",
+    "hugo": "2603-come-arrivare-allinformation-e-al-converge-center",
+    "date": "2001-07-11",
+    "time": "15:27:05",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "15",
+    "minute": "27",
+    "second": "05"
+  },
+  {
+    "id": 2605,
+    "heading": "street parade autostradale palermo-genova",
+    "created": "2001-07-11 19:48:52",
+    "linked_file": null,
+    "hugo": "2605-street-parade-autostradale-palermogenova",
+    "date": "2001-07-11",
+    "time": "19:48:52",
+    "year": "2001",
+    "month": "07",
+    "day": "11",
+    "hour": "19",
+    "minute": "48",
+    "second": "52"
+  },
+  {
+    "id": 2610,
+    "heading": "ASSICURAZIONE!!!!!!!",
+    "created": "2001-07-12 02:09:50",
+    "linked_file": null,
+    "hugo": "2610-assicurazione",
+    "date": "2001-07-12",
+    "time": "02:09:50",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "02",
+    "minute": "09",
+    "second": "50"
+  },
+  {
+    "id": 2614,
+    "heading": "Berlusconi su difesa lissilistica del G8: \"ghe pensi mi\"",
+    "created": "2001-07-12 04:22:21",
+    "linked_file": null,
+    "hugo": "2614-berlusconi-su-difesa-lissilistica-del-g8-ghe-pensi-mi",
+    "date": "2001-07-12",
+    "time": "04:22:21",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "04",
+    "minute": "22",
+    "second": "21"
+  },
+  {
+    "id": 2616,
+    "heading": " PUBLIC FORUM \"UNALTRO MONDO E' POSSIBILE\"",
+    "created": "2001-07-12 05:02:10",
+    "linked_file": null,
+    "hugo": "2616-public-forum-unaltro-mondo-e-possibile",
+    "date": "2001-07-12",
+    "time": "05:02:10",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "05",
+    "minute": "02",
+    "second": "10"
+  },
+  {
+    "id": 2607,
+    "heading": "genoa anarchist solidarity ship",
+    "created": "2001-07-12 05:28:59",
+    "linked_file": null,
+    "hugo": "2607-genoa-anarchist-solidarity-ship",
+    "date": "2001-07-12",
+    "time": "05:28:59",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "05",
+    "minute": "28",
+    "second": "59"
+  },
+  {
+    "id": 2598,
+    "heading": "Anti-G8: primi respinti alla frontiera Ch/I",
+    "created": "2001-07-12 07:54:42",
+    "linked_file": null,
+    "hugo": "2598-antig8-primi-respinti-alla-frontiera-chi",
+    "date": "2001-07-12",
+    "time": "07:54:42",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "07",
+    "minute": "54",
+    "second": "42"
+  },
+  {
+    "id": 2626,
+    "heading": "Coordinamento Salernitano STOPG8",
+    "created": "2001-07-12 09:06:25",
+    "linked_file": null,
+    "hugo": "2626-coordinamento-salernitano-stopg8",
+    "date": "2001-07-12",
+    "time": "09:06:25",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "06",
+    "second": "25"
+  },
+  {
+    "id": 2634,
+    "heading": "Andare a Genova da Torino",
+    "created": "2001-07-12 09:18:35",
+    "linked_file": null,
+    "hugo": "2634-andare-a-genova-da-torino",
+    "date": "2001-07-12",
+    "time": "09:18:35",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "18",
+    "second": "35"
+  },
+  {
+    "id": 2635,
+    "heading": "In autostrada DALL'ITALIA verso Genova",
+    "created": "2001-07-12 09:19:54",
+    "linked_file": null,
+    "hugo": "2635-in-autostrada-dallitalia-verso-genova",
+    "date": "2001-07-12",
+    "time": "09:19:54",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "19",
+    "second": "54"
+  },
+  {
+    "id": 2636,
+    "heading": "In autostrada/strada DALL'ESTERO verso genova",
+    "created": "2001-07-12 09:20:55",
+    "linked_file": null,
+    "hugo": "2636-in-autostradastrada-dallestero-verso-genova",
+    "date": "2001-07-12",
+    "time": "09:20:55",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "20",
+    "second": "55"
+  },
+  {
+    "id": 2625,
+    "heading": "Ancora repressione per i Pugliesi",
+    "created": "2001-07-12 09:24:32",
+    "linked_file": null,
+    "hugo": "2625-ancora-repressione-per-i-pugliesi",
+    "date": "2001-07-12",
+    "time": "09:24:32",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "09",
+    "minute": "24",
+    "second": "32"
+  },
+  {
+    "id": 2597,
+    "heading": "No Global: Zona D'Ombra verso Genova",
+    "created": "2001-07-12 10:55:40",
+    "linked_file": null,
+    "hugo": "2597-no-global-zona-dombra-verso-genova",
+    "date": "2001-07-12",
+    "time": "10:55:40",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "10",
+    "minute": "55",
+    "second": "40"
+  },
+  {
+    "id": 2396,
+    "heading": "Come arrivare in macchina a Genova",
+    "created": "2001-07-12 13:17:58",
+    "linked_file": "2001/07/genovaroadmap.gif",
+    "hugo": "2396-come-arrivare-in-macchina-a-genova",
+    "date": "2001-07-12",
+    "time": "13:17:58",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "13",
+    "minute": "17",
+    "second": "58"
+  },
+  {
+    "id": 2642,
+    "heading": "Tute bianche di Bologna contro McDonald's",
+    "created": "2001-07-12 13:58:19",
+    "linked_file": null,
+    "hugo": "2642-tute-bianche-di-bologna-contro-mcdonalds",
+    "date": "2001-07-12",
+    "time": "13:58:19",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "13",
+    "minute": "58",
+    "second": "19"
+  },
+  {
+    "id": 2649,
+    "heading": "Genoa: the Info Center it's getting ready...",
+    "created": "2001-07-12 15:20:28",
+    "linked_file": null,
+    "hugo": "2649-genoa-the-info-center-its-getting-ready",
+    "date": "2001-07-12",
+    "time": "15:20:28",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "15",
+    "minute": "20",
+    "second": "28"
+  },
+  {
+    "id": 2643,
+    "heading": "Tute bianche di Bologna contro McDonald's",
+    "created": "2001-07-12 16:57:44",
+    "linked_file": null,
+    "hugo": "2643-tute-bianche-di-bologna-contro-mcdonalds",
+    "date": "2001-07-12",
+    "time": "16:57:44",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "16",
+    "minute": "57",
+    "second": "44"
+  },
+  {
+    "id": 2651,
+    "heading": "how to reach genova from abroad",
+    "created": "2001-07-12 17:56:55",
+    "linked_file": "2001/07/xwanfu.txt",
+    "hugo": "2651-how-to-reach-genova-from-abroad",
+    "date": "2001-07-12",
+    "time": "17:56:55",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "17",
+    "minute": "56",
+    "second": "55"
+  },
+  {
+    "id": 2609,
+    "heading": "Genoa G8 : Mediterranean Solidarity ship arrives in Italian Waters.",
+    "created": "2001-07-12 22:48:07",
+    "linked_file": "2001/07/boat__2_.mp3",
+    "hugo": "2609-genoa-g8-mediterranean-solidarity-ship-arrives-in-italian-waters",
+    "date": "2001-07-12",
+    "time": "22:48:07",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "22",
+    "minute": "48",
+    "second": "07"
+  },
+  {
+    "id": 2608,
+    "heading": "mass media spin - missiles !",
+    "created": "2001-07-12 22:50:58",
+    "linked_file": null,
+    "hugo": "2608-mass-media-spin-missiles-",
+    "date": "2001-07-12",
+    "time": "22:50:58",
+    "year": "2001",
+    "month": "07",
+    "day": "12",
+    "hour": "22",
+    "minute": "50",
+    "second": "58"
+  },
+  {
+    "id": 2657,
+    "heading": "border camps and against borders to genoa  etc info from schnews uk",
+    "created": "2001-07-13 01:44:33",
+    "linked_file": null,
+    "hugo": "2657-border-camps-and-against-borders-to-genoa-etc-info-from-schnews-uk",
+    "date": "2001-07-13",
+    "time": "01:44:33",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "01",
+    "minute": "44",
+    "second": "33"
+  },
+  {
+    "id": 2622,
+    "heading": "IMC map",
+    "created": "2001-07-13 03:22:35",
+    "linked_file": "2001/07/imc.gif",
+    "hugo": "2622-imc-map",
+    "date": "2001-07-13",
+    "time": "03:22:35",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "03",
+    "minute": "22",
+    "second": "35"
+  },
+  {
+    "id": 2644,
+    "heading": "manifestazione ad Agrigento!!!!",
+    "created": "2001-07-13 04:32:46",
+    "linked_file": null,
+    "hugo": "2644-manifestazione-ad-agrigento",
+    "date": "2001-07-13",
+    "time": "04:32:46",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "04",
+    "minute": "32",
+    "second": "46"
+  },
+  {
+    "id": 2461,
+    "heading": "The Venice Biennale: Anti - Goteborg Picket and Incident – 23 June 2001",
+    "created": "2001-07-13 04:32:53",
+    "linked_file": "2001/07/image002.gif",
+    "hugo": "2461-the-venice-biennale-anti-goteborg-picket-and-incident-23-june-2001",
+    "date": "2001-07-13",
+    "time": "04:32:53",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "04",
+    "minute": "32",
+    "second": "53"
+  },
+  {
+    "id": 2659,
+    "heading": "Napoli: Irruzione al Genovesi contro G8",
+    "created": "2001-07-13 06:09:43",
+    "linked_file": null,
+    "hugo": "2659-napoli-irruzione-al-genovesi-contro-g8",
+    "date": "2001-07-13",
+    "time": "06:09:43",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "06",
+    "minute": "09",
+    "second": "43"
+  },
+  {
+    "id": 2663,
+    "heading": "Per la libertà di andare manifestare a Genova, un picnic..",
+    "created": "2001-07-13 06:32:44",
+    "linked_file": null,
+    "hugo": "2663-per-la-liberta-di-andare-manifestare-a-genova-un-picnic",
+    "date": "2001-07-13",
+    "time": "06:32:44",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "06",
+    "minute": "32",
+    "second": "44"
+  },
+  {
+    "id": 2665,
+    "heading": "Salerno Piazza Flavio Gioia ore 19,00",
+    "created": "2001-07-13 07:15:20",
+    "linked_file": null,
+    "hugo": "2665-salerno-piazza-flavio-gioia-ore-1900",
+    "date": "2001-07-13",
+    "time": "07:15:20",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "07",
+    "minute": "15",
+    "second": "20"
+  },
+  {
+    "id": 2667,
+    "heading": "CEPU invasa dagli studenti anti-G8",
+    "created": "2001-07-13 07:50:01",
+    "linked_file": null,
+    "hugo": "2667-cepu-invasa-dagli-studenti-antig8",
+    "date": "2001-07-13",
+    "time": "07:50:01",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "07",
+    "minute": "50",
+    "second": "01"
+  },
+  {
+    "id": 2670,
+    "heading": "Attac percquisita!",
+    "created": "2001-07-13 08:46:27",
+    "linked_file": null,
+    "hugo": "2670-attac-percquisita",
+    "date": "2001-07-13",
+    "time": "08:46:27",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "08",
+    "minute": "46",
+    "second": "27"
+  },
+  {
+    "id": 2640,
+    "heading": "Firenze contro il G8",
+    "created": "2001-07-13 08:55:23",
+    "linked_file": null,
+    "hugo": "2640-firenze-contro-il-g8",
+    "date": "2001-07-13",
+    "time": "08:55:23",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "08",
+    "minute": "55",
+    "second": "23"
+  },
+  {
+    "id": 2673,
+    "heading": "VOGLIAMO ASSICURARCI O NO?",
+    "created": "2001-07-13 09:29:55",
+    "linked_file": null,
+    "hugo": "2673-vogliamo-assicurarci-o-no",
+    "date": "2001-07-13",
+    "time": "09:29:55",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "09",
+    "minute": "29",
+    "second": "55"
+  },
+  {
+    "id": 2674,
+    "heading": "Genova: Istruzioni per l'uso",
+    "created": "2001-07-13 10:17:27",
+    "linked_file": null,
+    "hugo": "2674-genova-istruzioni-per-luso",
+    "date": "2001-07-13",
+    "time": "10:17:27",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "10",
+    "minute": "17",
+    "second": "27"
+  },
+  {
+    "id": 2676,
+    "heading": "Guerriglia Semiotica",
+    "created": "2001-07-13 11:03:12",
+    "linked_file": null,
+    "hugo": "2676-guerriglia-semiotica",
+    "date": "2001-07-13",
+    "time": "11:03:12",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "11",
+    "minute": "03",
+    "second": "12"
+  },
+  {
+    "id": 2677,
+    "heading": "La Rete Univ. antiG8 di Milano in partenza...",
+    "created": "2001-07-13 11:07:28",
+    "linked_file": null,
+    "hugo": "2677-la-rete-univ-antig8-di-milano-in-partenza",
+    "date": "2001-07-13",
+    "time": "11:07:28",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "11",
+    "minute": "07",
+    "second": "28"
+  },
+  {
+    "id": 2681,
+    "heading": "Ganova... pronti a salpare",
+    "created": "2001-07-13 16:41:35",
+    "linked_file": "2001/07/pir_ta.tif",
+    "hugo": "2681-ganova-pronti-a-salpare",
+    "date": "2001-07-13",
+    "time": "16:41:35",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "16",
+    "minute": "41",
+    "second": "35"
+  },
+  {
+    "id": 2658,
+    "heading": "@narchsit platformist meeting",
+    "created": "2001-07-13 18:39:01",
+    "linked_file": null,
+    "hugo": "2658-narchsit-platformist-meeting",
+    "date": "2001-07-13",
+    "time": "18:39:01",
+    "year": "2001",
+    "month": "07",
+    "day": "13",
+    "hour": "18",
+    "minute": "39",
+    "second": "01"
+  },
+  {
+    "id": 2686,
+    "heading": "Iniziative locali conto G8: Prato",
+    "created": "2001-07-14 02:13:40",
+    "linked_file": null,
+    "hugo": "2686-iniziative-locali-conto-g8-prato",
+    "date": "2001-07-14",
+    "time": "02:13:40",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "02",
+    "minute": "13",
+    "second": "40"
+  },
+  {
+    "id": 2685,
+    "heading": "Catholic Priests & Nuns Join Activists at G8 Genoa.",
+    "created": "2001-07-14 04:27:24",
+    "linked_file": null,
+    "hugo": "2685-catholic-priests-nuns-join-activists-at-g8-genoa",
+    "date": "2001-07-14",
+    "time": "04:27:24",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "04",
+    "minute": "27",
+    "second": "24"
+  },
+  {
+    "id": 2687,
+    "heading": "Chiuse stazioni di Genova",
+    "created": "2001-07-14 06:13:58",
+    "linked_file": null,
+    "hugo": "2687-chiuse-stazioni-di-genova",
+    "date": "2001-07-14",
+    "time": "06:13:58",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "06",
+    "minute": "13",
+    "second": "58"
+  },
+  {
+    "id": 2695,
+    "heading": "Zio Sam",
+    "created": "2001-07-14 07:02:25",
+    "linked_file": "2001/07/ziosam.jpg",
+    "hugo": "2695-zio-sam",
+    "date": "2001-07-14",
+    "time": "07:02:25",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "07",
+    "minute": "02",
+    "second": "25"
+  },
+  {
+    "id": 2698,
+    "heading": "Giotto",
+    "created": "2001-07-14 10:34:43",
+    "linked_file": "2001/07/giotto3.jpg",
+    "hugo": "2698-giotto",
+    "date": "2001-07-14",
+    "time": "10:34:43",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "10",
+    "minute": "34",
+    "second": "43"
+  },
+  {
+    "id": 2699,
+    "heading": "Genova attaccata dai.................",
+    "created": "2001-07-14 10:38:36",
+    "linked_file": "2001/07/genova.exe",
+    "hugo": "2699-genova-attaccata-dai",
+    "date": "2001-07-14",
+    "time": "10:38:36",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "10",
+    "minute": "38",
+    "second": "36"
+  },
+  {
+    "id": 2652,
+    "heading": "logistics update",
+    "created": "2001-07-14 11:55:46",
+    "linked_file": "2001/07/kajach.txt",
+    "hugo": "2652-logistics-update",
+    "date": "2001-07-14",
+    "time": "11:55:46",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "11",
+    "minute": "55",
+    "second": "46"
+  },
+  {
+    "id": 2551,
+    "heading": "Novita' su logistica",
+    "created": "2001-07-14 13:32:19",
+    "linked_file": null,
+    "hugo": "2551-novita-su-logistica",
+    "date": "2001-07-14",
+    "time": "13:32:19",
+    "year": "2001",
+    "month": "07",
+    "day": "14",
+    "hour": "13",
+    "minute": "32",
+    "second": "19"
+  },
+  {
+    "id": 2694,
+    "heading": "non solo a genova ma in ogni città",
+    "created": "2001-07-15 03:15:26",
+    "linked_file": null,
+    "hugo": "2694-non-solo-a-genova-ma-in-ogni-citta",
+    "date": "2001-07-15",
+    "time": "03:15:26",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "03",
+    "minute": "15",
+    "second": "26"
+  },
+  {
+    "id": 2707,
+    "heading": "TG8FLASH-from Chiasso Border",
+    "created": "2001-07-15 06:17:20",
+    "linked_file": "2001/07/tg8flash01.rm",
+    "hugo": "2707-tg8flashfrom-chiasso-border",
+    "date": "2001-07-15",
+    "time": "06:17:20",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "06",
+    "minute": "17",
+    "second": "20"
+  },
+  {
+    "id": 2718,
+    "heading": "La Carovana di biciclette verso Genova contro il G8",
+    "created": "2001-07-15 06:21:32",
+    "linked_file": null,
+    "hugo": "2718-la-carovana-di-biciclette-verso-genova-contro-il-g8",
+    "date": "2001-07-15",
+    "time": "06:21:32",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "06",
+    "minute": "21",
+    "second": "32"
+  },
+  {
+    "id": 2722,
+    "heading": "Don Juan Online lancia la \"Copertura Edonistica \" di Genova G8",
+    "created": "2001-07-15 08:25:07",
+    "linked_file": null,
+    "hugo": "2722-don-juan-online-lancia-la-copertura-edonistica-di-genova-g8",
+    "date": "2001-07-15",
+    "time": "08:25:07",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "08",
+    "minute": "25",
+    "second": "07"
+  },
+  {
+    "id": 2725,
+    "heading": "Italian Anarchist Federation",
+    "created": "2001-07-15 10:00:59",
+    "linked_file": null,
+    "hugo": "2725-italian-anarchist-federation",
+    "date": "2001-07-15",
+    "time": "10:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 2721,
+    "heading": "Genoa open for celebrations",
+    "created": "2001-07-15 10:03:40",
+    "linked_file": null,
+    "hugo": "2721-genoa-open-for-celebrations",
+    "date": "2001-07-15",
+    "time": "10:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 2726,
+    "heading": "Rete No Global: Negata la nave, scattano le perquisizioni.Rassegna Stampa",
+    "created": "2001-07-15 10:17:14",
+    "linked_file": null,
+    "hugo": "2726-rete-no-global-negata-la-nave-scattano-le-perquisizionirassegna-stampa",
+    "date": "2001-07-15",
+    "time": "10:17:14",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "17",
+    "second": "14"
+  },
+  {
+    "id": 2727,
+    "heading": "il 21 luglio Forza Nuova ha organizzato un raduno internazionale a",
+    "created": "2001-07-15 10:42:09",
+    "linked_file": null,
+    "hugo": "2727-il-21-luglio-forza-nuova-ha-organizzato-un-raduno-internazionale-a",
+    "date": "2001-07-15",
+    "time": "10:42:09",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "10",
+    "minute": "42",
+    "second": "09"
+  },
+  {
+    "id": 2723,
+    "heading": "Info. on German bus about to cross German/Swiss border",
+    "created": "2001-07-15 11:02:16",
+    "linked_file": "2001/07/psjcwd.txt",
+    "hugo": "2723-info-on-german-bus-about-to-cross-germanswiss-border",
+    "date": "2001-07-15",
+    "time": "11:02:16",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "11",
+    "minute": "02",
+    "second": "16"
+  },
+  {
+    "id": 2729,
+    "heading": "Update on German bus at Swiss border.",
+    "created": "2001-07-15 11:08:14",
+    "linked_file": "2001/07/mrqatq.txt",
+    "hugo": "2729-update-on-german-bus-at-swiss-border",
+    "date": "2001-07-15",
+    "time": "11:08:14",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "11",
+    "minute": "08",
+    "second": "14"
+  },
+  {
+    "id": 2730,
+    "heading": "movimento molecolare",
+    "created": "2001-07-15 12:05:16",
+    "linked_file": "2001/07/movimentomolecolare2.html",
+    "hugo": "2730-movimento-molecolare",
+    "date": "2001-07-15",
+    "time": "12:05:16",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "12",
+    "minute": "05",
+    "second": "16"
+  },
+  {
+    "id": 2706,
+    "heading": "Chiasso 14-07-2001",
+    "created": "2001-07-15 13:45:14",
+    "linked_file": null,
+    "hugo": "2706-chiasso-14072001",
+    "date": "2001-07-15",
+    "time": "13:45:14",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "13",
+    "minute": "45",
+    "second": "14"
+  },
+  {
+    "id": 2735,
+    "heading": "German bus on Swiss border has got through.",
+    "created": "2001-07-15 14:29:11",
+    "linked_file": null,
+    "hugo": "2735-german-bus-on-swiss-border-has-got-through",
+    "date": "2001-07-15",
+    "time": "14:29:11",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "14",
+    "minute": "29",
+    "second": "11"
+  },
+  {
+    "id": 2733,
+    "heading": "Genoa: what's on By Anarchist against G8",
+    "created": "2001-07-15 14:51:04",
+    "linked_file": null,
+    "hugo": "2733-genoa-whats-on-by-anarchist-against-g8",
+    "date": "2001-07-15",
+    "time": "14:51:04",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "14",
+    "minute": "51",
+    "second": "04"
+  },
+  {
+    "id": 2736,
+    "heading": "partita la carovana del sud",
+    "created": "2001-07-15 15:30:23",
+    "linked_file": null,
+    "hugo": "2736-partita-la-carovana-del-sud",
+    "date": "2001-07-15",
+    "time": "15:30:23",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "15",
+    "minute": "30",
+    "second": "23"
+  },
+  {
+    "id": 2737,
+    "heading": "work in Progress",
+    "created": "2001-07-15 18:28:05",
+    "linked_file": "2001/07/genua_work_in_porgress_r1_c1.jpg",
+    "hugo": "2737-work-in-progress",
+    "date": "2001-07-15",
+    "time": "18:28:05",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "18",
+    "minute": "28",
+    "second": "05"
+  },
+  {
+    "id": 2732,
+    "heading": "Anarchist against G8",
+    "created": "2001-07-15 23:24:30",
+    "linked_file": null,
+    "hugo": "2732-anarchist-against-g8",
+    "date": "2001-07-15",
+    "time": "23:24:30",
+    "year": "2001",
+    "month": "07",
+    "day": "15",
+    "hour": "23",
+    "minute": "24",
+    "second": "30"
+  },
+  {
+    "id": 2745,
+    "heading": "Repressione Preventiva / Preventive Repression",
+    "created": "2001-07-16 00:38:45",
+    "linked_file": null,
+    "hugo": "2745-repressione-preventiva-preventive-repression",
+    "date": "2001-07-16",
+    "time": "00:38:45",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "00",
+    "minute": "38",
+    "second": "45"
+  },
+  {
+    "id": 2747,
+    "heading": "Anarchists against G8",
+    "created": "2001-07-16 01:10:41",
+    "linked_file": null,
+    "hugo": "2747-anarchists-against-g8",
+    "date": "2001-07-16",
+    "time": "01:10:41",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "01",
+    "minute": "10",
+    "second": "41"
+  },
+  {
+    "id": 2734,
+    "heading": "genova-sbirri e centree",
+    "created": "2001-07-16 01:55:56",
+    "linked_file": "2001/07/bgd_small.rm",
+    "hugo": "2734-genovasbirri-e-centree",
+    "date": "2001-07-16",
+    "time": "01:55:56",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "01",
+    "minute": "55",
+    "second": "56"
+  },
+  {
+    "id": 2739,
+    "heading": "IMC Italy Video Channel",
+    "created": "2001-07-16 02:42:55",
+    "linked_file": "2001/07/imctv.gif",
+    "hugo": "2739-imc-italy-video-channel",
+    "date": "2001-07-16",
+    "time": "02:42:55",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "02",
+    "minute": "42",
+    "second": "55"
+  },
+  {
+    "id": 2750,
+    "heading": "\"Genoa is mapped out like a battle field\"",
+    "created": "2001-07-16 02:45:59",
+    "linked_file": null,
+    "hugo": "2750-genoa-is-mapped-out-like-a-battle-field",
+    "date": "2001-07-16",
+    "time": "02:45:59",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "02",
+    "minute": "45",
+    "second": "59"
+  },
+  {
+    "id": 2753,
+    "heading": "CUB: sciopero del 20 luglio e corteo da p.za Montano/Genova",
+    "created": "2001-07-16 03:14:11",
+    "linked_file": null,
+    "hugo": "2753-cub-sciopero-del-20-luglio-e-corteo-da-pza-montanogenova",
+    "date": "2001-07-16",
+    "time": "03:14:11",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "03",
+    "minute": "14",
+    "second": "11"
+  },
+  {
+    "id": 2592,
+    "heading": " CONTRO IL G8: NASCE RADIO GAP - GLOBAL AUDIO PROJECT",
+    "created": "2001-07-16 06:01:30",
+    "linked_file": null,
+    "hugo": "2592-contro-il-g8-nasce-radio-gap-global-audio-project",
+    "date": "2001-07-16",
+    "time": "06:01:30",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "06",
+    "minute": "01",
+    "second": "30"
+  },
+  {
+    "id": 2430,
+    "heading": "ordinanza del prefetto di genova",
+    "created": "2001-07-16 06:37:17",
+    "linked_file": null,
+    "hugo": "2430-ordinanza-del-prefetto-di-genova",
+    "date": "2001-07-16",
+    "time": "06:37:17",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "06",
+    "minute": "37",
+    "second": "17"
+  },
+  {
+    "id": 2764,
+    "heading": "autodifesa",
+    "created": "2001-07-16 08:02:21",
+    "linked_file": null,
+    "hugo": "2764-autodifesa",
+    "date": "2001-07-16",
+    "time": "08:02:21",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "08",
+    "minute": "02",
+    "second": "21"
+  },
+  {
+    "id": 2765,
+    "heading": "Info on accomodation etc in Genoa",
+    "created": "2001-07-16 08:16:50",
+    "linked_file": "2001/07/7mxwm9.txt",
+    "hugo": "2765-info-on-accomodation-etc-in-genoa",
+    "date": "2001-07-16",
+    "time": "08:16:50",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "08",
+    "minute": "16",
+    "second": "50"
+  },
+  {
+    "id": 2766,
+    "heading": "Barriere e altro",
+    "created": "2001-07-16 08:38:59",
+    "linked_file": null,
+    "hugo": "2766-barriere-e-altro",
+    "date": "2001-07-16",
+    "time": "08:38:59",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "08",
+    "minute": "38",
+    "second": "59"
+  },
+  {
+    "id": 2768,
+    "heading": "Allarmi bomba che rasentano il ridicolo (1)",
+    "created": "2001-07-16 09:31:53",
+    "linked_file": null,
+    "hugo": "2768-allarmi-bomba-che-rasentano-il-ridicolo-1",
+    "date": "2001-07-16",
+    "time": "09:31:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "31",
+    "second": "53"
+  },
+  {
+    "id": 2769,
+    "heading": "beware of provocations",
+    "created": "2001-07-16 09:39:18",
+    "linked_file": null,
+    "hugo": "2769-beware-of-provocations",
+    "date": "2001-07-16",
+    "time": "09:39:18",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "39",
+    "second": "18"
+  },
+  {
+    "id": 2770,
+    "heading": "Allarmi bomba che rasentano il ridicolo (2)",
+    "created": "2001-07-16 09:46:04",
+    "linked_file": null,
+    "hugo": "2770-allarmi-bomba-che-rasentano-il-ridicolo-2",
+    "date": "2001-07-16",
+    "time": "09:46:04",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "46",
+    "second": "04"
+  },
+  {
+    "id": 2772,
+    "heading": "Harmless Explosives Sought by Military?",
+    "created": "2001-07-16 09:54:21",
+    "linked_file": null,
+    "hugo": "2772-harmless-explosives-sought-by-military",
+    "date": "2001-07-16",
+    "time": "09:54:21",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "09",
+    "minute": "54",
+    "second": "21"
+  },
+  {
+    "id": 2758,
+    "heading": "INFO TRENI GENOVA DA ROMA",
+    "created": "2001-07-16 10:03:04",
+    "linked_file": null,
+    "hugo": "2758-info-treni-genova-da-roma",
+    "date": "2001-07-16",
+    "time": "10:03:04",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "03",
+    "second": "04"
+  },
+  {
+    "id": 2773,
+    "heading": "Watch out for spindoctors, agents provocateurs etc",
+    "created": "2001-07-16 10:08:53",
+    "linked_file": null,
+    "hugo": "2773-watch-out-for-spindoctors-agents-provocateurs-etc",
+    "date": "2001-07-16",
+    "time": "10:08:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "08",
+    "second": "53"
+  },
+  {
+    "id": 2775,
+    "heading": "novita' dalla frontiera di chiasso",
+    "created": "2001-07-16 10:36:24",
+    "linked_file": null,
+    "hugo": "2775-novita-dalla-frontiera-di-chiasso",
+    "date": "2001-07-16",
+    "time": "10:36:24",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "36",
+    "second": "24"
+  },
+  {
+    "id": 2776,
+    "heading": "Irruzioni nei centri sociali a Torino",
+    "created": "2001-07-16 10:55:53",
+    "linked_file": null,
+    "hugo": "2776-irruzioni-nei-centri-sociali-a-torino",
+    "date": "2001-07-16",
+    "time": "10:55:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "55",
+    "second": "53"
+  },
+  {
+    "id": 2777,
+    "heading": "Università-punti controinformativi",
+    "created": "2001-07-16 10:58:48",
+    "linked_file": null,
+    "hugo": "2777-universitapunti-controinformativi",
+    "date": "2001-07-16",
+    "time": "10:58:48",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "10",
+    "minute": "58",
+    "second": "48"
+  },
+  {
+    "id": 2779,
+    "heading": "Anyone know where to buy some weed in Genoa? Any good areas/shops etc?",
+    "created": "2001-07-16 11:42:53",
+    "linked_file": null,
+    "hugo": "2779-anyone-know-where-to-buy-some-weed-in-genoa-any-good-areasshops-etc",
+    "date": "2001-07-16",
+    "time": "11:42:53",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "11",
+    "minute": "42",
+    "second": "53"
+  },
+  {
+    "id": 2785,
+    "heading": "ge  - bomba vicino al carlini (finta?)",
+    "created": "2001-07-16 12:11:14",
+    "linked_file": null,
+    "hugo": "2785-ge-bomba-vicino-al-carlini-finta",
+    "date": "2001-07-16",
+    "time": "12:11:14",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "11",
+    "second": "14"
+  },
+  {
+    "id": 2786,
+    "heading": "Aggiornamenti da Geova- Stadio Carlini",
+    "created": "2001-07-16 12:19:23",
+    "linked_file": null,
+    "hugo": "2786-aggiornamenti-da-geova-stadio-carlini",
+    "date": "2001-07-16",
+    "time": "12:19:23",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "19",
+    "second": "23"
+  },
+  {
+    "id": 2780,
+    "heading": "Allarme bomba al Carlini",
+    "created": "2001-07-16 12:24:10",
+    "linked_file": null,
+    "hugo": "2780-allarme-bomba-al-carlini",
+    "date": "2001-07-16",
+    "time": "12:24:10",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "24",
+    "second": "10"
+  },
+  {
+    "id": 2790,
+    "heading": "news from carlini stadium",
+    "created": "2001-07-16 12:47:18",
+    "linked_file": null,
+    "hugo": "2790-news-from-carlini-stadium",
+    "date": "2001-07-16",
+    "time": "12:47:18",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "12",
+    "minute": "47",
+    "second": "18"
+  },
+  {
+    "id": 2797,
+    "heading": "Chiasso: liberi i 4 compagni arrestati",
+    "created": "2001-07-16 13:45:00",
+    "linked_file": null,
+    "hugo": "2797-chiasso-liberi-i-4-compagni-arrestati",
+    "date": "2001-07-16",
+    "time": "13:45:00",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "13",
+    "minute": "45",
+    "second": "00"
+  },
+  {
+    "id": 2638,
+    "heading": "indy@ge [deutsch]",
+    "created": "2001-07-16 13:56:41",
+    "linked_file": "2001/07/xjf7jq.txt",
+    "hugo": "2638-indyge-deutsch",
+    "date": "2001-07-16",
+    "time": "13:56:41",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "13",
+    "minute": "56",
+    "second": "41"
+  },
+  {
+    "id": 2795,
+    "heading": "Terreur in Genua ???",
+    "created": "2001-07-16 14:12:06",
+    "linked_file": null,
+    "hugo": "2795-terreur-in-genua-",
+    "date": "2001-07-16",
+    "time": "14:12:06",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "14",
+    "minute": "12",
+    "second": "06"
+  },
+  {
+    "id": 2783,
+    "heading": "Cariche a Chiasso. Occupate la dogana. Riots at the swiss border",
+    "created": "2001-07-16 14:16:08",
+    "linked_file": null,
+    "hugo": "2783-cariche-a-chiasso-occupate-la-dogana-riots-at-the-swiss-border",
+    "date": "2001-07-16",
+    "time": "14:16:08",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "14",
+    "minute": "16",
+    "second": "08"
+  },
+  {
+    "id": 2798,
+    "heading": "Irish are here",
+    "created": "2001-07-16 15:03:40",
+    "linked_file": "2001/07/gx1xcr.txt",
+    "hugo": "2798-irish-are-here",
+    "date": "2001-07-16",
+    "time": "15:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "15",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 2757,
+    "heading": "Genova...il GSF comincia i lavori...",
+    "created": "2001-07-16 15:39:37",
+    "linked_file": null,
+    "hugo": "2757-genovail-gsf-comincia-i-lavori",
+    "date": "2001-07-16",
+    "time": "15:39:37",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "15",
+    "minute": "39",
+    "second": "37"
+  },
+  {
+    "id": 2767,
+    "heading": "GSF: UNA BOMBA CONTRO IL MOVIMENTO SCONFIGGIAMO LA PAURA, VENIAMO TUTTI A GENOVA",
+    "created": "2001-07-16 15:40:58",
+    "linked_file": null,
+    "hugo": "2767-gsf-una-bomba-contro-il-movimento-sconfiggiamo-la-paura-veniamo-tutti-a-genova",
+    "date": "2001-07-16",
+    "time": "15:40:58",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "15",
+    "minute": "40",
+    "second": "58"
+  },
+  {
+    "id": 2778,
+    "heading": "SEQUESTRATO DALLA POLIZIA",
+    "created": "2001-07-16 16:04:52",
+    "linked_file": null,
+    "hugo": "2778-sequestrato-dalla-polizia",
+    "date": "2001-07-16",
+    "time": "16:04:52",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "16",
+    "minute": "04",
+    "second": "52"
+  },
+  {
+    "id": 2792,
+    "heading": "news from milan : eviction!",
+    "created": "2001-07-16 16:17:25",
+    "linked_file": null,
+    "hugo": "2792-news-from-milan-eviction",
+    "date": "2001-07-16",
+    "time": "16:17:25",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "16",
+    "minute": "17",
+    "second": "25"
+  },
+  {
+    "id": 2788,
+    "heading": "Perquisizioni a Torino-Searches in Turin",
+    "created": "2001-07-16 16:39:22",
+    "linked_file": "2001/07/zmaz3j.txt",
+    "hugo": "2788-perquisizioni-a-torinosearches-in-turin",
+    "date": "2001-07-16",
+    "time": "16:39:22",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "16",
+    "minute": "39",
+    "second": "22"
+  },
+  {
+    "id": 2820,
+    "heading": "Perquisito il cso Askatasuna",
+    "created": "2001-07-16 17:09:09",
+    "linked_file": null,
+    "hugo": "2820-perquisito-il-cso-askatasuna",
+    "date": "2001-07-16",
+    "time": "17:09:09",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "17",
+    "minute": "09",
+    "second": "09"
+  },
+  {
+    "id": 2825,
+    "heading": "nobordercaravan in genova",
+    "created": "2001-07-16 18:22:23",
+    "linked_file": null,
+    "hugo": "2825-nobordercaravan-in-genova",
+    "date": "2001-07-16",
+    "time": "18:22:23",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "22",
+    "second": "23"
+  },
+  {
+    "id": 2806,
+    "heading": "Attentato a Tute Bianche a Genova.",
+    "created": "2001-07-16 18:35:59",
+    "linked_file": null,
+    "hugo": "2806-attentato-a-tute-bianche-a-genova",
+    "date": "2001-07-16",
+    "time": "18:35:59",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "35",
+    "second": "59"
+  },
+  {
+    "id": 2821,
+    "heading": "bomb at carlini stadium",
+    "created": "2001-07-16 18:37:27",
+    "linked_file": "2001/07/bomberman.ram",
+    "hugo": "2821-bomb-at-carlini-stadium",
+    "date": "2001-07-16",
+    "time": "18:37:27",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "37",
+    "second": "27"
+  },
+  {
+    "id": 2828,
+    "heading": "Pristina -monopoli -bologna.",
+    "created": "2001-07-16 18:53:49",
+    "linked_file": null,
+    "hugo": "2828-pristina-monopoli-bologna",
+    "date": "2001-07-16",
+    "time": "18:53:49",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "53",
+    "second": "49"
+  },
+  {
+    "id": 2829,
+    "heading": "G8: Train to Genoa with stop in Chiasso",
+    "created": "2001-07-16 18:56:14",
+    "linked_file": "2001/07/1o7jev.txt",
+    "hugo": "2829-g8-train-to-genoa-with-stop-in-chiasso",
+    "date": "2001-07-16",
+    "time": "18:56:14",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "18",
+    "minute": "56",
+    "second": "14"
+  },
+  {
+    "id": 2836,
+    "heading": "en) Preventive Repression",
+    "created": "2001-07-16 20:31:56",
+    "linked_file": null,
+    "hugo": "2836-en-preventive-repression",
+    "date": "2001-07-16",
+    "time": "20:31:56",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "20",
+    "minute": "31",
+    "second": "56"
+  },
+  {
+    "id": 2837,
+    "heading": "genoa pictures",
+    "created": "2001-07-16 21:04:23",
+    "linked_file": null,
+    "hugo": "2837-genoa-pictures",
+    "date": "2001-07-16",
+    "time": "21:04:23",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "21",
+    "minute": "04",
+    "second": "23"
+  },
+  {
+    "id": 2839,
+    "heading": "ZONArozza bifo-people-loach",
+    "created": "2001-07-16 21:20:29",
+    "linked_file": "2001/07/zonarozza.rm",
+    "hugo": "2839-zonarozza-bifopeopleloach",
+    "date": "2001-07-16",
+    "time": "21:20:29",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "21",
+    "minute": "20",
+    "second": "29"
+  },
+  {
+    "id": 2784,
+    "heading": "direct new for bomb alarm",
+    "created": "2001-07-16 23:19:29",
+    "linked_file": null,
+    "hugo": "2784-direct-new-for-bomb-alarm",
+    "date": "2001-07-16",
+    "time": "23:19:29",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "23",
+    "minute": "19",
+    "second": "29"
+  },
+  {
+    "id": 2751,
+    "heading": "mass media wash and other genoa stories at infoshop.org",
+    "created": "2001-07-16 23:24:44",
+    "linked_file": null,
+    "hugo": "2751-mass-media-wash-and-other-genoa-stories-at-infoshoporg",
+    "date": "2001-07-16",
+    "time": "23:24:44",
+    "year": "2001",
+    "month": "07",
+    "day": "16",
+    "hour": "23",
+    "minute": "24",
+    "second": "44"
+  },
+  {
+    "id": 2654,
+    "heading": "A PROPOSAL TO WORLD ACTIVISTS IN GENOA",
+    "created": "2001-07-17 02:38:50",
+    "linked_file": "2001/07/g8palace.jpg",
+    "hugo": "2654-a-proposal-to-world-activists-in-genoa",
+    "date": "2001-07-17",
+    "time": "02:38:50",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "02",
+    "minute": "38",
+    "second": "50"
+  },
+  {
+    "id": 2846,
+    "heading": "\\\"REVOLT\\'S FIREMEN\\\"",
+    "created": "2001-07-17 03:02:54",
+    "linked_file": null,
+    "hugo": "2846-revolts-firemen",
+    "date": "2001-07-17",
+    "time": "03:02:54",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "03",
+    "minute": "02",
+    "second": "54"
+  },
+  {
+    "id": 2854,
+    "heading": "continua il viaggio della carovana del sud",
+    "created": "2001-07-17 03:07:29",
+    "linked_file": null,
+    "hugo": "2854-continua-il-viaggio-della-carovana-del-sud",
+    "date": "2001-07-17",
+    "time": "03:07:29",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "03",
+    "minute": "07",
+    "second": "29"
+  },
+  {
+    "id": 2855,
+    "heading": "Brignole: meglio aperta",
+    "created": "2001-07-17 04:00:39",
+    "linked_file": null,
+    "hugo": "2855-brignole-meglio-aperta",
+    "date": "2001-07-17",
+    "time": "04:00:39",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "00",
+    "second": "39"
+  },
+  {
+    "id": 2857,
+    "heading": "Social Forum report:  Raffael Freire",
+    "created": "2001-07-17 04:15:26",
+    "linked_file": null,
+    "hugo": "2857-social-forum-report-raffael-freire",
+    "date": "2001-07-17",
+    "time": "04:15:26",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "15",
+    "second": "26"
+  },
+  {
+    "id": 2859,
+    "heading": "G8: UN GOAL SULLE BARRIERE DELLA ZONA ROSSA CONTRO IL VERTICE",
+    "created": "2001-07-17 04:21:56",
+    "linked_file": null,
+    "hugo": "2859-g8-un-goal-sulle-barriere-della-zona-rossa-contro-il-vertice",
+    "date": "2001-07-17",
+    "time": "04:21:56",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "21",
+    "second": "56"
+  },
+  {
+    "id": 2861,
+    "heading": "What is really happening in Genoa?",
+    "created": "2001-07-17 04:47:12",
+    "linked_file": "2001/07/genoa_poster.gif",
+    "hugo": "2861-what-is-really-happening-in-genoa",
+    "date": "2001-07-17",
+    "time": "04:47:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "47",
+    "second": "12"
+  },
+  {
+    "id": 2429,
+    "heading": "[en] vademecum",
+    "created": "2001-07-17 04:51:55",
+    "linked_file": null,
+    "hugo": "2429-en-vademecum",
+    "date": "2001-07-17",
+    "time": "04:51:55",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "04",
+    "minute": "51",
+    "second": "55"
+  },
+  {
+    "id": 2863,
+    "heading": "Genoa Police Raid Social Center (among other things)",
+    "created": "2001-07-17 05:03:36",
+    "linked_file": "2001/07/monannouncement.rm",
+    "hugo": "2863-genoa-police-raid-social-center-among-other-things",
+    "date": "2001-07-17",
+    "time": "05:03:36",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "03",
+    "second": "36"
+  },
+  {
+    "id": 2864,
+    "heading": "Perquisizioni al Pinelli e allo Sciorta",
+    "created": "2001-07-17 05:04:06",
+    "linked_file": null,
+    "hugo": "2864-perquisizioni-al-pinelli-e-allo-sciorta",
+    "date": "2001-07-17",
+    "time": "05:04:06",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "04",
+    "second": "06"
+  },
+  {
+    "id": 2866,
+    "heading": "perquisizione al Pinelli",
+    "created": "2001-07-17 05:09:13",
+    "linked_file": null,
+    "hugo": "2866-perquisizione-al-pinelli",
+    "date": "2001-07-17",
+    "time": "05:09:13",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "09",
+    "second": "13"
+  },
+  {
+    "id": 2872,
+    "heading": "Conferenza su lavoro e globalizzazione, del GSF",
+    "created": "2001-07-17 05:30:00",
+    "linked_file": null,
+    "hugo": "2872-conferenza-su-lavoro-e-globalizzazione-del-gsf",
+    "date": "2001-07-17",
+    "time": "05:30:00",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "30",
+    "second": "00"
+  },
+  {
+    "id": 2794,
+    "heading": "Finnish White Overalls in Genoa",
+    "created": "2001-07-17 05:49:17",
+    "linked_file": null,
+    "hugo": "2794-finnish-white-overalls-in-genoa",
+    "date": "2001-07-17",
+    "time": "05:49:17",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "05",
+    "minute": "49",
+    "second": "17"
+  },
+  {
+    "id": 2826,
+    "heading": "\"Strategy of tension\" used again in Italy?",
+    "created": "2001-07-17 06:29:29",
+    "linked_file": null,
+    "hugo": "2826-strategy-of-tension-used-again-in-italy",
+    "date": "2001-07-17",
+    "time": "06:29:29",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "06",
+    "minute": "29",
+    "second": "29"
+  },
+  {
+    "id": 2879,
+    "heading": "Amnesty International: Policing must respect human rights standards",
+    "created": "2001-07-17 07:00:20",
+    "linked_file": null,
+    "hugo": "2879-amnesty-international-policing-must-respect-human-rights-standards",
+    "date": "2001-07-17",
+    "time": "07:00:20",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "00",
+    "second": "20"
+  },
+  {
+    "id": 2394,
+    "heading": "cartina di genova",
+    "created": "2001-07-17 07:23:03",
+    "linked_file": "2001/07/ge_big.jpg",
+    "hugo": "2394-cartina-di-genova",
+    "date": "2001-07-17",
+    "time": "07:23:03",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "23",
+    "second": "03"
+  },
+  {
+    "id": 2675,
+    "heading": "Processione di Sant'Elia",
+    "created": "2001-07-17 07:36:46",
+    "linked_file": null,
+    "hugo": "2675-processione-di-santelia",
+    "date": "2001-07-17",
+    "time": "07:36:46",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "36",
+    "second": "46"
+  },
+  {
+    "id": 2887,
+    "heading": "comunicato 1 - martedì 17/07/2001 - Anarchici contro il G8",
+    "created": "2001-07-17 07:55:04",
+    "linked_file": null,
+    "hugo": "2887-comunicato-1-martedi-17072001-anarchici-contro-il-g8",
+    "date": "2001-07-17",
+    "time": "07:55:04",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "07",
+    "minute": "55",
+    "second": "04"
+  },
+  {
+    "id": 2890,
+    "heading": "Da Seattle a Genova passando per il cortile di casa",
+    "created": "2001-07-17 08:09:05",
+    "linked_file": null,
+    "hugo": "2890-da-seattle-a-genova-passando-per-il-cortile-di-casa",
+    "date": "2001-07-17",
+    "time": "08:09:05",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "08",
+    "minute": "09",
+    "second": "05"
+  },
+  {
+    "id": 2894,
+    "heading": "Fermato Jose' Bove'. Conferenza stampa del GSF",
+    "created": "2001-07-17 09:08:45",
+    "linked_file": null,
+    "hugo": "2894-fermato-jose-bove-conferenza-stampa-del-gsf",
+    "date": "2001-07-17",
+    "time": "09:08:45",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "09",
+    "minute": "08",
+    "second": "45"
+  },
+  {
+    "id": 2899,
+    "heading": "Offensiva Internazionale di Genova",
+    "created": "2001-07-17 09:51:30",
+    "linked_file": null,
+    "hugo": "2899-offensiva-internazionale-di-genova",
+    "date": "2001-07-17",
+    "time": "09:51:30",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "09",
+    "minute": "51",
+    "second": "30"
+  },
+  {
+    "id": 2904,
+    "heading": "Cancellato il treno \"Global Resistance\"",
+    "created": "2001-07-17 10:21:30",
+    "linked_file": null,
+    "hugo": "2904-cancellato-il-treno-global-resistance",
+    "date": "2001-07-17",
+    "time": "10:21:30",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "10",
+    "minute": "21",
+    "second": "30"
+  },
+  {
+    "id": 2907,
+    "heading": "treni speciali dall'italia",
+    "created": "2001-07-17 11:11:56",
+    "linked_file": null,
+    "hugo": "2907-treni-speciali-dallitalia",
+    "date": "2001-07-17",
+    "time": "11:11:56",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "11",
+    "second": "56"
+  },
+  {
+    "id": 2910,
+    "heading": "Genoa: Police Actions",
+    "created": "2001-07-17 11:13:07",
+    "linked_file": null,
+    "hugo": "2910-genoa-police-actions",
+    "date": "2001-07-17",
+    "time": "11:13:07",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "13",
+    "second": "07"
+  },
+  {
+    "id": 2914,
+    "heading": "Tutti a Genova contro il G8",
+    "created": "2001-07-17 11:30:48",
+    "linked_file": null,
+    "hugo": "2914-tutti-a-genova-contro-il-g8",
+    "date": "2001-07-17",
+    "time": "11:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 2383,
+    "heading": "IMC Center e azioni mediatiche",
+    "created": "2001-07-17 11:31:36",
+    "linked_file": null,
+    "hugo": "2383-imc-center-e-azioni-mediatiche",
+    "date": "2001-07-17",
+    "time": "11:31:36",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "11",
+    "minute": "31",
+    "second": "36"
+  },
+  {
+    "id": 2920,
+    "heading": "Comunicato 2 - Anarchici contro il G8 - martedì 17/07/2001",
+    "created": "2001-07-17 12:28:25",
+    "linked_file": null,
+    "hugo": "2920-comunicato-2-anarchici-contro-il-g8-martedi-17072001",
+    "date": "2001-07-17",
+    "time": "12:28:25",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "12",
+    "minute": "28",
+    "second": "25"
+  },
+  {
+    "id": 2921,
+    "heading": "COMMENT SE MAINTENIR EN BONNE ETAT DE SANTE DANS UNE MANIF",
+    "created": "2001-07-17 12:30:54",
+    "linked_file": null,
+    "hugo": "2921-comment-se-maintenir-en-bonne-etat-de-sante-dans-une-manif",
+    "date": "2001-07-17",
+    "time": "12:30:54",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "12",
+    "minute": "30",
+    "second": "54"
+  },
+  {
+    "id": 2922,
+    "heading": "Treni per il ritorno da Genova",
+    "created": "2001-07-17 12:46:11",
+    "linked_file": null,
+    "hugo": "2922-treni-per-il-ritorno-da-genova",
+    "date": "2001-07-17",
+    "time": "12:46:11",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "12",
+    "minute": "46",
+    "second": "11"
+  },
+  {
+    "id": 2926,
+    "heading": "per la liberta' di movemente",
+    "created": "2001-07-17 13:17:22",
+    "linked_file": null,
+    "hugo": "2926-per-la-liberta-di-movemente",
+    "date": "2001-07-17",
+    "time": "13:17:22",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "13",
+    "minute": "17",
+    "second": "22"
+  },
+  {
+    "id": 2678,
+    "heading": "OCCUPATA LA MANPOWRE A BERGAMO",
+    "created": "2001-07-17 13:51:44",
+    "linked_file": "2001/07/job3.jpg",
+    "hugo": "2678-occupata-la-manpowre-a-bergamo",
+    "date": "2001-07-17",
+    "time": "13:51:44",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "13",
+    "minute": "51",
+    "second": "44"
+  },
+  {
+    "id": 2823,
+    "heading": "The great 8 fear the consciousness",
+    "created": "2001-07-17 15:04:19",
+    "linked_file": null,
+    "hugo": "2823-the-great-8-fear-the-consciousness",
+    "date": "2001-07-17",
+    "time": "15:04:19",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "15",
+    "minute": "04",
+    "second": "19"
+  },
+  {
+    "id": 2936,
+    "heading": "The great 8 fear the consciousness",
+    "created": "2001-07-17 15:14:13",
+    "linked_file": null,
+    "hugo": "2936-the-great-8-fear-the-consciousness",
+    "date": "2001-07-17",
+    "time": "15:14:13",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "15",
+    "minute": "14",
+    "second": "13"
+  },
+  {
+    "id": 2900,
+    "heading": "Beautiful Brave Genoa - Gold Medal Resistance- Home of Balilla",
+    "created": "2001-07-17 15:25:05",
+    "linked_file": null,
+    "hugo": "2900-beautiful-brave-genoa-gold-medal-resistance-home-of-balilla",
+    "date": "2001-07-17",
+    "time": "15:25:05",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "15",
+    "minute": "25",
+    "second": "05"
+  },
+  {
+    "id": 2938,
+    "heading": "CUB-SLAI Cobas - Sciopero e Corteo a Genova Ponente (20/7)",
+    "created": "2001-07-17 16:00:44",
+    "linked_file": "2001/07/cub.gif",
+    "hugo": "2938-cubslai-cobas-sciopero-e-corteo-a-genova-ponente-207",
+    "date": "2001-07-17",
+    "time": "16:00:44",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "00",
+    "second": "44"
+  },
+  {
+    "id": 2940,
+    "heading": "Fermo  a genova per 5 ragazze tedesche.",
+    "created": "2001-07-17 16:14:19",
+    "linked_file": null,
+    "hugo": "2940-fermo-a-genova-per-5-ragazze-tedesche",
+    "date": "2001-07-17",
+    "time": "16:14:19",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "14",
+    "second": "19"
+  },
+  {
+    "id": 2937,
+    "heading": "SMASH THE BORDER!!!",
+    "created": "2001-07-17 16:30:48",
+    "linked_file": null,
+    "hugo": "2937-smash-the-border",
+    "date": "2001-07-17",
+    "time": "16:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 2944,
+    "heading": "allarme bomba  via dante 17 luglio ore 23",
+    "created": "2001-07-17 16:43:00",
+    "linked_file": null,
+    "hugo": "2944-allarme-bomba-via-dante-17-luglio-ore-23",
+    "date": "2001-07-17",
+    "time": "16:43:00",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "16",
+    "minute": "43",
+    "second": "00"
+  },
+  {
+    "id": 2870,
+    "heading": "Walden Bello Speaks at Social Forum in Genoa Monday (english)",
+    "created": "2001-07-17 17:11:23",
+    "linked_file": "2001/07/belloenglish.mp3",
+    "hugo": "2870-walden-bello-speaks-at-social-forum-in-genoa-monday-english",
+    "date": "2001-07-17",
+    "time": "17:11:23",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "17",
+    "minute": "11",
+    "second": "23"
+  },
+  {
+    "id": 2950,
+    "heading": "English Translation of GSF Medical Bulletin",
+    "created": "2001-07-17 17:32:41",
+    "linked_file": null,
+    "hugo": "2950-english-translation-of-gsf-medical-bulletin",
+    "date": "2001-07-17",
+    "time": "17:32:41",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "17",
+    "minute": "32",
+    "second": "41"
+  },
+  {
+    "id": 2865,
+    "heading": "Perquisizioni al Pinelli e allo Sciorba",
+    "created": "2001-07-17 18:09:12",
+    "linked_file": null,
+    "hugo": "2865-perquisizioni-al-pinelli-e-allo-sciorba",
+    "date": "2001-07-17",
+    "time": "18:09:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "09",
+    "second": "12"
+  },
+  {
+    "id": 2883,
+    "heading": "Arresti e perquisizioni a Roma",
+    "created": "2001-07-17 18:24:01",
+    "linked_file": null,
+    "hugo": "2883-arresti-e-perquisizioni-a-roma",
+    "date": "2001-07-17",
+    "time": "18:24:01",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "24",
+    "second": "01"
+  },
+  {
+    "id": 2888,
+    "heading": "BRIGNOLE APERTA AI MANIFESTANTI",
+    "created": "2001-07-17 18:27:23",
+    "linked_file": null,
+    "hugo": "2888-brignole-aperta-ai-manifestanti",
+    "date": "2001-07-17",
+    "time": "18:27:23",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "27",
+    "second": "23"
+  },
+  {
+    "id": 2906,
+    "heading": "Azione di Attac e partita di calcio",
+    "created": "2001-07-17 18:39:16",
+    "linked_file": null,
+    "hugo": "2906-azione-di-attac-e-partita-di-calcio",
+    "date": "2001-07-17",
+    "time": "18:39:16",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "39",
+    "second": "16"
+  },
+  {
+    "id": 2903,
+    "heading": "Jose' Bove' e' in Italia",
+    "created": "2001-07-17 18:42:40",
+    "linked_file": null,
+    "hugo": "2903-jose-bove-e-in-italia",
+    "date": "2001-07-17",
+    "time": "18:42:40",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "42",
+    "second": "40"
+  },
+  {
+    "id": 2928,
+    "heading": "From Germany to Genoa, Europe Cracks Down on Political Dissent",
+    "created": "2001-07-17 18:58:52",
+    "linked_file": null,
+    "hugo": "2928-from-germany-to-genoa-europe-cracks-down-on-political-dissent",
+    "date": "2001-07-17",
+    "time": "18:58:52",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "18",
+    "minute": "58",
+    "second": "52"
+  },
+  {
+    "id": 2901,
+    "heading": "repressione a La Spezia",
+    "created": "2001-07-17 19:36:45",
+    "linked_file": null,
+    "hugo": "2901-repressione-a-la-spezia",
+    "date": "2001-07-17",
+    "time": "19:36:45",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "19",
+    "minute": "36",
+    "second": "45"
+  },
+  {
+    "id": 2957,
+    "heading": "\"Bomb\" at Carlini stadium",
+    "created": "2001-07-17 19:46:36",
+    "linked_file": "2001/07/police_explosion_16th_july.rm",
+    "hugo": "2957-bomb-at-carlini-stadium",
+    "date": "2001-07-17",
+    "time": "19:46:36",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "19",
+    "minute": "46",
+    "second": "36"
+  },
+  {
+    "id": 2961,
+    "heading": "(en,it,de,fr,gr,pl) Important: International (Antinational) Genova Offensive ()",
+    "created": "2001-07-17 20:22:12",
+    "linked_file": null,
+    "hugo": "2961-enitdefrgrpl-important-international-antinational-genova-offensive-",
+    "date": "2001-07-17",
+    "time": "20:22:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "22",
+    "second": "12"
+  },
+  {
+    "id": 2962,
+    "heading": "(it) Comunicato 1 - Anarchici contro il G8 - marted A - 17/07/2001",
+    "created": "2001-07-17 20:23:40",
+    "linked_file": null,
+    "hugo": "2962-it-comunicato-1-anarchici-contro-il-g8-marted-a-17072001",
+    "date": "2001-07-17",
+    "time": "20:23:40",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "23",
+    "second": "40"
+  },
+  {
+    "id": 2964,
+    "heading": "it) nessun oggetto [EXCERPT]",
+    "created": "2001-07-17 20:26:12",
+    "linked_file": null,
+    "hugo": "2964-it-nessun-oggetto-excerpt",
+    "date": "2001-07-17",
+    "time": "20:26:12",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "26",
+    "second": "12"
+  },
+  {
+    "id": 2912,
+    "heading": "Globalise Resistance train to Genoa was stoped by French Transport Minister",
+    "created": "2001-07-17 20:27:04",
+    "linked_file": "2001/07/ednqez.txt",
+    "hugo": "2912-globalise-resistance-train-to-genoa-was-stoped-by-french-transport-minister",
+    "date": "2001-07-17",
+    "time": "20:27:04",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "27",
+    "second": "04"
+  },
+  {
+    "id": 2943,
+    "heading": "As from a nightmare",
+    "created": "2001-07-17 20:53:28",
+    "linked_file": null,
+    "hugo": "2943-as-from-a-nightmare",
+    "date": "2001-07-17",
+    "time": "20:53:28",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "20",
+    "minute": "53",
+    "second": "28"
+  },
+  {
+    "id": 2948,
+    "heading": "first impressions in genoa",
+    "created": "2001-07-17 22:57:49",
+    "linked_file": null,
+    "hugo": "2948-first-impressions-in-genoa",
+    "date": "2001-07-17",
+    "time": "22:57:49",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "22",
+    "minute": "57",
+    "second": "49"
+  },
+  {
+    "id": 2976,
+    "heading": "page 2 of tear gas instructions",
+    "created": "2001-07-17 23:08:45",
+    "linked_file": "2001/07/teargas4kids.jpg",
+    "hugo": "2976-page-2-of-tear-gas-instructions",
+    "date": "2001-07-17",
+    "time": "23:08:45",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "08",
+    "second": "45"
+  },
+  {
+    "id": 2980,
+    "heading": "La polizia al Carlini: aggiornamento",
+    "created": "2001-07-17 23:31:00",
+    "linked_file": null,
+    "hugo": "2980-la-polizia-al-carlini-aggiornamento",
+    "date": "2001-07-17",
+    "time": "23:31:00",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "31",
+    "second": "00"
+  },
+  {
+    "id": 2985,
+    "heading": "ATTAC",
+    "created": "2001-07-17 23:54:26",
+    "linked_file": "2001/07/attac.rm",
+    "hugo": "2985-attac",
+    "date": "2001-07-17",
+    "time": "23:54:26",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "54",
+    "second": "26"
+  },
+  {
+    "id": 2986,
+    "heading": "Polizia al Carlini/Police at Carlini Stadium/Polizei umzingelt  Carlini-Stadion",
+    "created": "2001-07-17 23:54:46",
+    "linked_file": null,
+    "hugo": "2986-polizia-al-carlinipolice-at-carlini-stadiumpolizei-umzingelt-carlinistadion",
+    "date": "2001-07-17",
+    "time": "23:54:46",
+    "year": "2001",
+    "month": "07",
+    "day": "17",
+    "hour": "23",
+    "minute": "54",
+    "second": "46"
+  },
+  {
+    "id": 2990,
+    "heading": "DIGOS al ciclamini",
+    "created": "2001-07-18 00:55:11",
+    "linked_file": null,
+    "hugo": "2990-digos-al-ciclamini",
+    "date": "2001-07-18",
+    "time": "00:55:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "00",
+    "minute": "55",
+    "second": "11"
+  },
+  {
+    "id": 2993,
+    "heading": "Clamoroso a Marassi!",
+    "created": "2001-07-18 01:20:51",
+    "linked_file": null,
+    "hugo": "2993-clamoroso-a-marassi",
+    "date": "2001-07-18",
+    "time": "01:20:51",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "20",
+    "second": "51"
+  },
+  {
+    "id": 2994,
+    "heading": "british activist held out by train cancellation",
+    "created": "2001-07-18 01:22:52",
+    "linked_file": null,
+    "hugo": "2994-british-activist-held-out-by-train-cancellation",
+    "date": "2001-07-18",
+    "time": "01:22:52",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "22",
+    "second": "52"
+  },
+  {
+    "id": 2996,
+    "heading": "(fr) (fr) Important: International (Antinational) Genova Offensive (en,it,de,gr,",
+    "created": "2001-07-18 01:45:28",
+    "linked_file": null,
+    "hugo": "2996-fr-fr-important-international-antinational-genova-offensive-enitdegr",
+    "date": "2001-07-18",
+    "time": "01:45:28",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "45",
+    "second": "28"
+  },
+  {
+    "id": 2997,
+    "heading": "our world is not for sale",
+    "created": "2001-07-18 01:59:47",
+    "linked_file": "2001/07/g8symb.jpg",
+    "hugo": "2997-our-world-is-not-for-sale",
+    "date": "2001-07-18",
+    "time": "01:59:47",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "01",
+    "minute": "59",
+    "second": "47"
+  },
+  {
+    "id": 3000,
+    "heading": "Informações de Génova (portugues)",
+    "created": "2001-07-18 02:23:06",
+    "linked_file": null,
+    "hugo": "3000-informacoes-de-genova-portugues",
+    "date": "2001-07-18",
+    "time": "02:23:06",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "02",
+    "minute": "23",
+    "second": "06"
+  },
+  {
+    "id": 2995,
+    "heading": "Police beat arrested activists in custody",
+    "created": "2001-07-18 02:36:13",
+    "linked_file": null,
+    "hugo": "2995-police-beat-arrested-activists-in-custody",
+    "date": "2001-07-18",
+    "time": "02:36:13",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "02",
+    "minute": "36",
+    "second": "13"
+  },
+  {
+    "id": 3003,
+    "heading": "attentato incendiario a milano-ansa",
+    "created": "2001-07-18 03:03:40",
+    "linked_file": null,
+    "hugo": "3003-attentato-incendiario-a-milanoansa",
+    "date": "2001-07-18",
+    "time": "03:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 3005,
+    "heading": "Rete dune anti globalizzazione",
+    "created": "2001-07-18 03:32:29",
+    "linked_file": "2001/07/izwvnd.txt",
+    "hugo": "3005-rete-dune-anti-globalizzazione",
+    "date": "2001-07-18",
+    "time": "03:32:29",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "32",
+    "second": "29"
+  },
+  {
+    "id": 3007,
+    "heading": "aggiornamento dal Carlini",
+    "created": "2001-07-18 03:47:35",
+    "linked_file": null,
+    "hugo": "3007-aggiornamento-dal-carlini",
+    "date": "2001-07-18",
+    "time": "03:47:35",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "47",
+    "second": "35"
+  },
+  {
+    "id": 3010,
+    "heading": "Police Explosion In genoa 16/07/01 Video",
+    "created": "2001-07-18 03:57:05",
+    "linked_file": null,
+    "hugo": "3010-police-explosion-in-genoa-160701-video",
+    "date": "2001-07-18",
+    "time": "03:57:05",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "03",
+    "minute": "57",
+    "second": "05"
+  },
+  {
+    "id": 3011,
+    "heading": "Roma: partito il treno disobbediente di R.A.G.E.",
+    "created": "2001-07-18 04:00:07",
+    "linked_file": null,
+    "hugo": "3011-roma-partito-il-treno-disobbediente-di-rage",
+    "date": "2001-07-18",
+    "time": "04:00:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "00",
+    "second": "07"
+  },
+  {
+    "id": 3021,
+    "heading": "Digos al Carlini (photo)",
+    "created": "2001-07-18 04:12:05",
+    "linked_file": "2001/07/carlini8.jpg",
+    "hugo": "3021-digos-al-carlini-photo",
+    "date": "2001-07-18",
+    "time": "04:12:05",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "12",
+    "second": "05"
+  },
+  {
+    "id": 2966,
+    "heading": "(en) irish anarchists ' (en) What is wrong with the G8  '",
+    "created": "2001-07-18 04:22:49",
+    "linked_file": null,
+    "hugo": "2966-en-irish-anarchists-en-what-is-wrong-with-the-g8-",
+    "date": "2001-07-18",
+    "time": "04:22:49",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "22",
+    "second": "49"
+  },
+  {
+    "id": 3023,
+    "heading": "corteo del sindacalismo di base",
+    "created": "2001-07-18 04:25:18",
+    "linked_file": null,
+    "hugo": "3023-corteo-del-sindacalismo-di-base",
+    "date": "2001-07-18",
+    "time": "04:25:18",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "04",
+    "minute": "25",
+    "second": "18"
+  },
+  {
+    "id": 2942,
+    "heading": "G8 - Repression of forigners",
+    "created": "2001-07-18 05:13:53",
+    "linked_file": null,
+    "hugo": "2942-g8-repression-of-forigners",
+    "date": "2001-07-18",
+    "time": "05:13:53",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "13",
+    "second": "53"
+  },
+  {
+    "id": 3026,
+    "heading": "busta incendiaria al TG4",
+    "created": "2001-07-18 05:20:46",
+    "linked_file": null,
+    "hugo": "3026-busta-incendiaria-al-tg4",
+    "date": "2001-07-18",
+    "time": "05:20:46",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "20",
+    "second": "46"
+  },
+  {
+    "id": 3032,
+    "heading": "polarization, attention and polvo di pietra",
+    "created": "2001-07-18 05:24:37",
+    "linked_file": null,
+    "hugo": "3032-polarization-attention-and-polvo-di-pietra",
+    "date": "2001-07-18",
+    "time": "05:24:37",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "24",
+    "second": "37"
+  },
+  {
+    "id": 3036,
+    "heading": "Cows & MadCows in Genova",
+    "created": "2001-07-18 05:34:39",
+    "linked_file": "2001/07/cows_madcows.jpg",
+    "hugo": "3036-cows-madcows-in-genova",
+    "date": "2001-07-18",
+    "time": "05:34:39",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "34",
+    "second": "39"
+  },
+  {
+    "id": 3038,
+    "heading": "Fermamo il G8",
+    "created": "2001-07-18 05:40:12",
+    "linked_file": "2001/07/fermamo_g8.jpg",
+    "hugo": "3038-fermamo-il-g8",
+    "date": "2001-07-18",
+    "time": "05:40:12",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "40",
+    "second": "12"
+  },
+  {
+    "id": 3040,
+    "heading": "exploding envelope at TG4",
+    "created": "2001-07-18 05:56:22",
+    "linked_file": null,
+    "hugo": "3040-exploding-envelope-at-tg4",
+    "date": "2001-07-18",
+    "time": "05:56:22",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "05",
+    "minute": "56",
+    "second": "22"
+  },
+  {
+    "id": 2991,
+    "heading": "GENOVA E' DAPPERTUTTO",
+    "created": "2001-07-18 06:04:20",
+    "linked_file": null,
+    "hugo": "2991-genova-e-dappertutto",
+    "date": "2001-07-18",
+    "time": "06:04:20",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "04",
+    "second": "20"
+  },
+  {
+    "id": 3043,
+    "heading": "Genova: German activist is threatened of being send to jail\n",
+    "created": "2001-07-18 06:12:28",
+    "linked_file": null,
+    "hugo": "3043-genova-german-activist-is-threatened-of-being-send-to-jail",
+    "date": "2001-07-18",
+    "time": "06:12:28",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "12",
+    "second": "28"
+  },
+  {
+    "id": 2822,
+    "heading": "Cresce la represssione per il G8",
+    "created": "2001-07-18 06:22:47",
+    "linked_file": null,
+    "hugo": "2822-cresce-la-represssione-per-il-g8",
+    "date": "2001-07-18",
+    "time": "06:22:47",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "22",
+    "second": "47"
+  },
+  {
+    "id": 3047,
+    "heading": "Benevento attacchinaggio fermato",
+    "created": "2001-07-18 06:26:40",
+    "linked_file": null,
+    "hugo": "3047-benevento-attacchinaggio-fermato",
+    "date": "2001-07-18",
+    "time": "06:26:40",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "26",
+    "second": "40"
+  },
+  {
+    "id": 3039,
+    "heading": "Porno mazzate sotto gli occhi di Benito",
+    "created": "2001-07-18 06:35:27",
+    "linked_file": null,
+    "hugo": "3039-porno-mazzate-sotto-gli-occhi-di-benito",
+    "date": "2001-07-18",
+    "time": "06:35:27",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "35",
+    "second": "27"
+  },
+  {
+    "id": 2989,
+    "heading": "Le facce da culo Diessine e verdi nel corteo del 21.",
+    "created": "2001-07-18 06:47:33",
+    "linked_file": null,
+    "hugo": "2989-le-facce-da-culo-diessine-e-verdi-nel-corteo-del-21",
+    "date": "2001-07-18",
+    "time": "06:47:33",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "06",
+    "minute": "47",
+    "second": "33"
+  },
+  {
+    "id": 3051,
+    "heading": "uomo e ambiente \"peace & ecology\"",
+    "created": "2001-07-18 07:18:32",
+    "linked_file": "2001/07/peace-ecology1.jpg",
+    "hugo": "3051-uomo-e-ambiente-peace-ecology",
+    "date": "2001-07-18",
+    "time": "07:18:32",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "07",
+    "minute": "18",
+    "second": "32"
+  },
+  {
+    "id": 3004,
+    "heading": "Perquisa al Campo Ciclamini/ Police raided Campo Ciclamini",
+    "created": "2001-07-18 07:29:52",
+    "linked_file": null,
+    "hugo": "3004-perquisa-al-campo-ciclamini-police-raided-campo-ciclamini",
+    "date": "2001-07-18",
+    "time": "07:29:52",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "07",
+    "minute": "29",
+    "second": "52"
+  },
+  {
+    "id": 3052,
+    "heading": "Tre compagni arrestati a Bergamo",
+    "created": "2001-07-18 07:38:09",
+    "linked_file": null,
+    "hugo": "3052-tre-compagni-arrestati-a-bergamo",
+    "date": "2001-07-18",
+    "time": "07:38:09",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "07",
+    "minute": "38",
+    "second": "09"
+  },
+  {
+    "id": 2381,
+    "heading": "Prossima Fermata Genova",
+    "created": "2001-07-18 08:06:01",
+    "linked_file": null,
+    "hugo": "2381-prossima-fermata-genova",
+    "date": "2001-07-18",
+    "time": "08:06:01",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "06",
+    "second": "01"
+  },
+  {
+    "id": 2387,
+    "heading": "IMC Center and Media Actions",
+    "created": "2001-07-18 08:08:17",
+    "linked_file": null,
+    "hugo": "2387-imc-center-and-media-actions",
+    "date": "2001-07-18",
+    "time": "08:08:17",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "08",
+    "second": "17"
+  },
+  {
+    "id": 3055,
+    "heading": "peace&ecology",
+    "created": "2001-07-18 08:20:42",
+    "linked_file": "2001/07/peace-ecology0.jpg",
+    "hugo": "3055-peaceecology",
+    "date": "2001-07-18",
+    "time": "08:20:42",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "20",
+    "second": "42"
+  },
+  {
+    "id": 3066,
+    "heading": "G8: FAILS THE WORLD'S CHILDREN",
+    "created": "2001-07-18 08:28:48",
+    "linked_file": null,
+    "hugo": "3066-g8-fails-the-worlds-children",
+    "date": "2001-07-18",
+    "time": "08:28:48",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "08",
+    "minute": "28",
+    "second": "48"
+  },
+  {
+    "id": 3054,
+    "heading": "What's wrong with the G8",
+    "created": "2001-07-18 09:12:41",
+    "linked_file": "2001/07/genoa_leaf.gif",
+    "hugo": "3054-whats-wrong-with-the-g8",
+    "date": "2001-07-18",
+    "time": "09:12:41",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "12",
+    "second": "41"
+  },
+  {
+    "id": 3056,
+    "heading": "bomba a Bologna",
+    "created": "2001-07-18 09:26:54",
+    "linked_file": null,
+    "hugo": "3056-bomba-a-bologna",
+    "date": "2001-07-18",
+    "time": "09:26:54",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "26",
+    "second": "54"
+  },
+  {
+    "id": 3074,
+    "heading": "genova.eventi.17",
+    "created": "2001-07-18 09:29:36",
+    "linked_file": null,
+    "hugo": "3074-genovaeventi17",
+    "date": "2001-07-18",
+    "time": "09:29:36",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "29",
+    "second": "36"
+  },
+  {
+    "id": 2911,
+    "heading": "teargas instructions for kids",
+    "created": "2001-07-18 09:46:43",
+    "linked_file": "2001/07/teargaslessons.jpg",
+    "hugo": "2911-teargas-instructions-for-kids",
+    "date": "2001-07-18",
+    "time": "09:46:43",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "46",
+    "second": "43"
+  },
+  {
+    "id": 3046,
+    "heading": "porno and a beating under the eyes of Benito (translation)",
+    "created": "2001-07-18 09:51:19",
+    "linked_file": null,
+    "hugo": "3046-porno-and-a-beating-under-the-eyes-of-benito-translation",
+    "date": "2001-07-18",
+    "time": "09:51:19",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "51",
+    "second": "19"
+  },
+  {
+    "id": 2860,
+    "heading": "G8: The situation at the greek borders",
+    "created": "2001-07-18 09:53:23",
+    "linked_file": "2001/07/8dswef.txt",
+    "hugo": "2860-g8-the-situation-at-the-greek-borders",
+    "date": "2001-07-18",
+    "time": "09:53:23",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "53",
+    "second": "23"
+  },
+  {
+    "id": 3030,
+    "heading": "Genova: Super Video in Action",
+    "created": "2001-07-18 09:56:50",
+    "linked_file": "2001/07/super_video_01.jpg",
+    "hugo": "3030-genova-super-video-in-action",
+    "date": "2001-07-18",
+    "time": "09:56:50",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "09",
+    "minute": "56",
+    "second": "50"
+  },
+  {
+    "id": 3097,
+    "heading": "Photos Genua Wednesday afternoon",
+    "created": "2001-07-18 11:22:07",
+    "linked_file": "2001/07/mittwoch.gif",
+    "hugo": "3097-photos-genua-wednesday-afternoon",
+    "date": "2001-07-18",
+    "time": "11:22:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "11",
+    "minute": "22",
+    "second": "07"
+  },
+  {
+    "id": 3102,
+    "heading": "13 Persons were arrested in Bologna",
+    "created": "2001-07-18 11:33:27",
+    "linked_file": null,
+    "hugo": "3102-13-persons-were-arrested-in-bologna",
+    "date": "2001-07-18",
+    "time": "11:33:27",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "11",
+    "minute": "33",
+    "second": "27"
+  },
+  {
+    "id": 3058,
+    "heading": "PERQUISITECI TUTTI!!!!",
+    "created": "2001-07-18 12:05:02",
+    "linked_file": null,
+    "hugo": "3058-perquisiteci-tutti",
+    "date": "2001-07-18",
+    "time": "12:05:02",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "05",
+    "second": "02"
+  },
+  {
+    "id": 3105,
+    "heading": "Catholic Priests, Nuns Join Protest   In Genoa.",
+    "created": "2001-07-18 12:20:47",
+    "linked_file": null,
+    "hugo": "3105-catholic-priests-nuns-join-protest-in-genoa",
+    "date": "2001-07-18",
+    "time": "12:20:47",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "20",
+    "second": "47"
+  },
+  {
+    "id": 3083,
+    "heading": "deportation of the arrested",
+    "created": "2001-07-18 12:26:58",
+    "linked_file": null,
+    "hugo": "3083-deportation-of-the-arrested",
+    "date": "2001-07-18",
+    "time": "12:26:58",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "26",
+    "second": "58"
+  },
+  {
+    "id": 3108,
+    "heading": "UN: 52% of Africans Live on less than $1 a day as G8 Aid Dwindles.",
+    "created": "2001-07-18 12:35:35",
+    "linked_file": null,
+    "hugo": "3108-un-52-of-africans-live-on-less-than-1-a-day-as-g8-aid-dwindles",
+    "date": "2001-07-18",
+    "time": "12:35:35",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "35",
+    "second": "35"
+  },
+  {
+    "id": 3065,
+    "heading": "Swedish Police to visit Genua",
+    "created": "2001-07-18 12:45:11",
+    "linked_file": null,
+    "hugo": "3065-swedish-police-to-visit-genua",
+    "date": "2001-07-18",
+    "time": "12:45:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "12",
+    "minute": "45",
+    "second": "11"
+  },
+  {
+    "id": 3112,
+    "heading": "Jose Bove in GENOVA",
+    "created": "2001-07-18 13:02:07",
+    "linked_file": "2001/07/bove_in_gonova__da_.jpg",
+    "hugo": "3112-jose-bove-in-genova",
+    "date": "2001-07-18",
+    "time": "13:02:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "02",
+    "second": "07"
+  },
+  {
+    "id": 2620,
+    "heading": "Calendario delle Mobilitazioni prima e durante Genova.",
+    "created": "2001-07-18 13:04:56",
+    "linked_file": null,
+    "hugo": "2620-calendario-delle-mobilitazioni-prima-e-durante-genova",
+    "date": "2001-07-18",
+    "time": "13:04:56",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "04",
+    "second": "56"
+  },
+  {
+    "id": 3114,
+    "heading": "si riparte",
+    "created": "2001-07-18 13:10:17",
+    "linked_file": null,
+    "hugo": "3114-si-riparte",
+    "date": "2001-07-18",
+    "time": "13:10:17",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "10",
+    "second": "17"
+  },
+  {
+    "id": 3101,
+    "heading": "Genova: Action of Inhabitants in the Red Zone",
+    "created": "2001-07-18 13:13:57",
+    "linked_file": null,
+    "hugo": "3101-genova-action-of-inhabitants-in-the-red-zone",
+    "date": "2001-07-18",
+    "time": "13:13:57",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "13",
+    "second": "57"
+  },
+  {
+    "id": 3069,
+    "heading": "Super video a Genova",
+    "created": "2001-07-18 13:20:15",
+    "linked_file": "2001/07/arrivo_genova.rm",
+    "hugo": "3069-super-video-a-genova",
+    "date": "2001-07-18",
+    "time": "13:20:15",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "20",
+    "second": "15"
+  },
+  {
+    "id": 3119,
+    "heading": "informazioni a Savona per i manifestanti",
+    "created": "2001-07-18 13:20:33",
+    "linked_file": null,
+    "hugo": "3119-informazioni-a-savona-per-i-manifestanti",
+    "date": "2001-07-18",
+    "time": "13:20:33",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "20",
+    "second": "33"
+  },
+  {
+    "id": 3091,
+    "heading": "All to Genoa (appeal by Italian Communists)",
+    "created": "2001-07-18 13:38:35",
+    "linked_file": null,
+    "hugo": "3091-all-to-genoa-appeal-by-italian-communists",
+    "date": "2001-07-18",
+    "time": "13:38:35",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "13",
+    "minute": "38",
+    "second": "35"
+  },
+  {
+    "id": 3109,
+    "heading": "Genoa Social Forum Condemns Bombs",
+    "created": "2001-07-18 14:13:04",
+    "linked_file": "2001/07/test.ra",
+    "hugo": "3109-genoa-social-forum-condemns-bombs",
+    "date": "2001-07-18",
+    "time": "14:13:04",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "13",
+    "second": "04"
+  },
+  {
+    "id": 3129,
+    "heading": "Voci globali contro il G8",
+    "created": "2001-07-18 14:32:08",
+    "linked_file": "2001/07/hebe.jpg.jpg",
+    "hugo": "3129-voci-globali-contro-il-g8",
+    "date": "2001-07-18",
+    "time": "14:32:08",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "32",
+    "second": "08"
+  },
+  {
+    "id": 3130,
+    "heading": "portate i cellulari a Genova",
+    "created": "2001-07-18 14:32:15",
+    "linked_file": null,
+    "hugo": "3130-portate-i-cellulari-a-genova",
+    "date": "2001-07-18",
+    "time": "14:32:15",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "32",
+    "second": "15"
+  },
+  {
+    "id": 3131,
+    "heading": "da Genova",
+    "created": "2001-07-18 14:37:11",
+    "linked_file": "2001/07/25.jpg",
+    "hugo": "3131-da-genova",
+    "date": "2001-07-18",
+    "time": "14:37:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "37",
+    "second": "11"
+  },
+  {
+    "id": 3088,
+    "heading": "DS e manifestazione del 21 (comunicato GSF)",
+    "created": "2001-07-18 14:39:06",
+    "linked_file": "2001/07/gwklby.txt",
+    "hugo": "3088-ds-e-manifestazione-del-21-comunicato-gsf",
+    "date": "2001-07-18",
+    "time": "14:39:06",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "14",
+    "minute": "39",
+    "second": "06"
+  },
+  {
+    "id": 3116,
+    "heading": "July 19th Report from Genova",
+    "created": "2001-07-18 15:18:42",
+    "linked_file": "2001/07/leanoq.txt",
+    "hugo": "3116-july-19th-report-from-genova",
+    "date": "2001-07-18",
+    "time": "15:18:42",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "18",
+    "second": "42"
+  },
+  {
+    "id": 3137,
+    "heading": "conferenza stampa gsf intervento di indymedia",
+    "created": "2001-07-18 15:31:30",
+    "linked_file": null,
+    "hugo": "3137-conferenza-stampa-gsf-intervento-di-indymedia",
+    "date": "2001-07-18",
+    "time": "15:31:30",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "31",
+    "second": "30"
+  },
+  {
+    "id": 3138,
+    "heading": "Antifascismo a Genova",
+    "created": "2001-07-18 15:36:05",
+    "linked_file": null,
+    "hugo": "3138-antifascismo-a-genova",
+    "date": "2001-07-18",
+    "time": "15:36:05",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "36",
+    "second": "05"
+  },
+  {
+    "id": 3139,
+    "heading": "intervento di indymedia alla conferenza stampa del gsf",
+    "created": "2001-07-18 15:39:11",
+    "linked_file": null,
+    "hugo": "3139-intervento-di-indymedia-alla-conferenza-stampa-del-gsf",
+    "date": "2001-07-18",
+    "time": "15:39:11",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "39",
+    "second": "11"
+  },
+  {
+    "id": 3140,
+    "heading": "conferenza stampa gsf intervento indymedia",
+    "created": "2001-07-18 15:45:08",
+    "linked_file": null,
+    "hugo": "3140-conferenza-stampa-gsf-intervento-indymedia",
+    "date": "2001-07-18",
+    "time": "15:45:08",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "15",
+    "minute": "45",
+    "second": "08"
+  },
+  {
+    "id": 3127,
+    "heading": "Also the nature against G8.",
+    "created": "2001-07-18 16:03:23",
+    "linked_file": null,
+    "hugo": "3127-also-the-nature-against-g8",
+    "date": "2001-07-18",
+    "time": "16:03:23",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "03",
+    "second": "23"
+  },
+  {
+    "id": 3122,
+    "heading": "non portate i cellulari a genova!",
+    "created": "2001-07-18 16:04:01",
+    "linked_file": null,
+    "hugo": "3122-non-portate-i-cellulari-a-genova",
+    "date": "2001-07-18",
+    "time": "16:04:01",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "04",
+    "second": "01"
+  },
+  {
+    "id": 3142,
+    "heading": "Rilasciati i 13 compagni bolognesi",
+    "created": "2001-07-18 16:22:43",
+    "linked_file": null,
+    "hugo": "3142-rilasciati-i-13-compagni-bolognesi",
+    "date": "2001-07-18",
+    "time": "16:22:43",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "22",
+    "second": "43"
+  },
+  {
+    "id": 3149,
+    "heading": "News from the W.O.M.B.L.E.S. campsfield brigade",
+    "created": "2001-07-18 16:28:53",
+    "linked_file": null,
+    "hugo": "3149-news-from-the-wombles-campsfield-brigade",
+    "date": "2001-07-18",
+    "time": "16:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 3057,
+    "heading": "situazione alla frontiera di Ventimiglia/Ventimiglia situation",
+    "created": "2001-07-18 16:30:19",
+    "linked_file": null,
+    "hugo": "3057-situazione-alla-frontiera-di-ventimigliaventimiglia-situation",
+    "date": "2001-07-18",
+    "time": "16:30:19",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "30",
+    "second": "19"
+  },
+  {
+    "id": 2972,
+    "heading": "hundreds of cops in Carlini Stadium / centinaia di sbirri al Carlini",
+    "created": "2001-07-18 16:44:14",
+    "linked_file": null,
+    "hugo": "2972-hundreds-of-cops-in-carlini-stadium-centinaia-di-sbirri-al-carlini",
+    "date": "2001-07-18",
+    "time": "16:44:14",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "16",
+    "minute": "44",
+    "second": "14"
+  },
+  {
+    "id": 3155,
+    "heading": "MANU CHAO plays in genova for thousands",
+    "created": "2001-07-18 17:04:07",
+    "linked_file": "2001/07/cubaflag.jpg",
+    "hugo": "3155-manu-chao-plays-in-genova-for-thousands",
+    "date": "2001-07-18",
+    "time": "17:04:07",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "17",
+    "minute": "04",
+    "second": "07"
+  },
+  {
+    "id": 3159,
+    "heading": "Critcal Mass Pic 1",
+    "created": "2001-07-18 17:09:22",
+    "linked_file": "2001/07/bike_wine.jpg",
+    "hugo": "3159-critcal-mass-pic-1",
+    "date": "2001-07-18",
+    "time": "17:09:22",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "17",
+    "minute": "09",
+    "second": "22"
+  },
+  {
+    "id": 3162,
+    "heading": "Free food at Manau Chao",
+    "created": "2001-07-18 17:14:25",
+    "linked_file": "2001/07/clandestino.jpg",
+    "hugo": "3162-free-food-at-manau-chao",
+    "date": "2001-07-18",
+    "time": "17:14:25",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "17",
+    "minute": "14",
+    "second": "25"
+  },
+  {
+    "id": 3071,
+    "heading": "PLEASE DISTANCE YOURSELF FROM VIOLENT PROTESTERS",
+    "created": "2001-07-18 18:03:10",
+    "linked_file": null,
+    "hugo": "3071-please-distance-yourself-from-violent-protesters",
+    "date": "2001-07-18",
+    "time": "18:03:10",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "18",
+    "minute": "03",
+    "second": "10"
+  },
+  {
+    "id": 3117,
+    "heading": "Video/Coverage on Dutch News Channel 16-18 jul",
+    "created": "2001-07-18 18:53:23",
+    "linked_file": null,
+    "hugo": "3117-videocoverage-on-dutch-news-channel-1618-jul",
+    "date": "2001-07-18",
+    "time": "18:53:23",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "18",
+    "minute": "53",
+    "second": "23"
+  },
+  {
+    "id": 3136,
+    "heading": "Ultime da Chiasso/Breaking news from Chiasso",
+    "created": "2001-07-18 19:05:19",
+    "linked_file": null,
+    "hugo": "3136-ultime-da-chiassobreaking-news-from-chiasso",
+    "date": "2001-07-18",
+    "time": "19:05:19",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "19",
+    "minute": "05",
+    "second": "19"
+  },
+  {
+    "id": 3175,
+    "heading": "Strikes hit Italy, 1000s of striking workers chant 'we are going to genoa '",
+    "created": "2001-07-18 20:25:56",
+    "linked_file": null,
+    "hugo": "3175-strikes-hit-italy-1000s-of-striking-workers-chant-we-are-going-to-genoa-",
+    "date": "2001-07-18",
+    "time": "20:25:56",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "25",
+    "second": "56"
+  },
+  {
+    "id": 3176,
+    "heading": "en) Summary of recent police searches in Italy",
+    "created": "2001-07-18 20:29:26",
+    "linked_file": null,
+    "hugo": "3176-en-summary-of-recent-police-searches-in-italy",
+    "date": "2001-07-18",
+    "time": "20:29:26",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "29",
+    "second": "26"
+  },
+  {
+    "id": 3177,
+    "heading": "it) Riassunto delle perquisizioni di questi giorni",
+    "created": "2001-07-18 20:31:09",
+    "linked_file": null,
+    "hugo": "3177-it-riassunto-delle-perquisizioni-di-questi-giorni",
+    "date": "2001-07-18",
+    "time": "20:31:09",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "31",
+    "second": "09"
+  },
+  {
+    "id": 3128,
+    "heading": "Forza Genoa!!!  Solidarity from Argentina",
+    "created": "2001-07-18 20:42:31",
+    "linked_file": null,
+    "hugo": "3128-forza-genoa-solidarity-from-argentina",
+    "date": "2001-07-18",
+    "time": "20:42:31",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "42",
+    "second": "31"
+  },
+  {
+    "id": 3179,
+    "heading": "Bologna-Milano",
+    "created": "2001-07-18 20:44:38",
+    "linked_file": "2001/07/boge.rm",
+    "hugo": "3179-bolognamilano",
+    "date": "2001-07-18",
+    "time": "20:44:38",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "44",
+    "second": "38"
+  },
+  {
+    "id": 3174,
+    "heading": "Canto anti zona rossa",
+    "created": "2001-07-18 20:48:58",
+    "linked_file": "2001/07/canto.rm",
+    "hugo": "3174-canto-anti-zona-rossa",
+    "date": "2001-07-18",
+    "time": "20:48:58",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "20",
+    "minute": "48",
+    "second": "58"
+  },
+  {
+    "id": 3072,
+    "heading": "NO to Violence, NO to Debt",
+    "created": "2001-07-18 21:34:16",
+    "linked_file": null,
+    "hugo": "3072-no-to-violence-no-to-debt",
+    "date": "2001-07-18",
+    "time": "21:34:16",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "21",
+    "minute": "34",
+    "second": "16"
+  },
+  {
+    "id": 3168,
+    "heading": "deported from genoa - human rights abuses at immigration",
+    "created": "2001-07-18 21:37:01",
+    "linked_file": null,
+    "hugo": "3168-deported-from-genoa-human-rights-abuses-at-immigration",
+    "date": "2001-07-18",
+    "time": "21:37:01",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "21",
+    "minute": "37",
+    "second": "01"
+  },
+  {
+    "id": 3185,
+    "heading": "melbourne solidarity",
+    "created": "2001-07-18 22:27:50",
+    "linked_file": null,
+    "hugo": "3185-melbourne-solidarity",
+    "date": "2001-07-18",
+    "time": "22:27:50",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "22",
+    "minute": "27",
+    "second": "50"
+  },
+  {
+    "id": 3192,
+    "heading": "Violent Crime rises in U.K. but Blair targets G8 protesters",
+    "created": "2001-07-18 23:08:54",
+    "linked_file": null,
+    "hugo": "3192-violent-crime-rises-in-uk-but-blair-targets-g8-protesters",
+    "date": "2001-07-18",
+    "time": "23:08:54",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "23",
+    "minute": "08",
+    "second": "54"
+  },
+  {
+    "id": 3147,
+    "heading": "A MESSAGE TO WORLD LEADERS",
+    "created": "2001-07-18 23:18:18",
+    "linked_file": "2001/07/mace6.jpg",
+    "hugo": "3147-a-message-to-world-leaders",
+    "date": "2001-07-18",
+    "time": "23:18:18",
+    "year": "2001",
+    "month": "07",
+    "day": "18",
+    "hour": "23",
+    "minute": "18",
+    "second": "18"
+  },
+  {
+    "id": 3180,
+    "heading": "Genoa on Minds of Protesters - la times",
+    "created": "2001-07-19 00:04:27",
+    "linked_file": null,
+    "hugo": "3180-genoa-on-minds-of-protesters-la-times",
+    "date": "2001-07-19",
+    "time": "00:04:27",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "00",
+    "minute": "04",
+    "second": "27"
+  },
+  {
+    "id": 3181,
+    "heading": "G8 - what & why",
+    "created": "2001-07-19 01:27:08",
+    "linked_file": null,
+    "hugo": "3181-g8-what-why",
+    "date": "2001-07-19",
+    "time": "01:27:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "01",
+    "minute": "27",
+    "second": "08"
+  },
+  {
+    "id": 3212,
+    "heading": "bbc corporate report",
+    "created": "2001-07-19 01:43:27",
+    "linked_file": null,
+    "hugo": "3212-bbc-corporate-report",
+    "date": "2001-07-19",
+    "time": "01:43:27",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "01",
+    "minute": "43",
+    "second": "27"
+  },
+  {
+    "id": 3203,
+    "heading": "concerto 20:00h",
+    "created": "2001-07-19 01:48:53",
+    "linked_file": "2001/07/liberta.rm",
+    "hugo": "3203-concerto-2000h",
+    "date": "2001-07-19",
+    "time": "01:48:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "01",
+    "minute": "48",
+    "second": "53"
+  },
+  {
+    "id": 3008,
+    "heading": "Occupazione di un'ambasciata svedese",
+    "created": "2001-07-19 03:06:08",
+    "linked_file": null,
+    "hugo": "3008-occupazione-di-unambasciata-svedese",
+    "date": "2001-07-19",
+    "time": "03:06:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "06",
+    "second": "08"
+  },
+  {
+    "id": 3216,
+    "heading": "Manu Chao, borders, and globalization",
+    "created": "2001-07-19 03:13:16",
+    "linked_file": null,
+    "hugo": "3216-manu-chao-borders-and-globalization",
+    "date": "2001-07-19",
+    "time": "03:13:16",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "13",
+    "second": "16"
+  },
+  {
+    "id": 3215,
+    "heading": "Manu Chao, borders, and globalization",
+    "created": "2001-07-19 03:29:20",
+    "linked_file": null,
+    "hugo": "3215-manu-chao-borders-and-globalization",
+    "date": "2001-07-19",
+    "time": "03:29:20",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "29",
+    "second": "20"
+  },
+  {
+    "id": 3209,
+    "heading": "joke on corporate media",
+    "created": "2001-07-19 03:35:06",
+    "linked_file": null,
+    "hugo": "3209-joke-on-corporate-media",
+    "date": "2001-07-19",
+    "time": "03:35:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "35",
+    "second": "06"
+  },
+  {
+    "id": 3227,
+    "heading": "WOMBLES arrive in Genoa!!!",
+    "created": "2001-07-19 03:53:11",
+    "linked_file": "2001/07/qhqwz8.txt",
+    "hugo": "3227-wombles-arrive-in-genoa",
+    "date": "2001-07-19",
+    "time": "03:53:11",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "53",
+    "second": "11"
+  },
+  {
+    "id": 3229,
+    "heading": "Come mai i \"disobbedienti\" hanno i loro attrezzi ?",
+    "created": "2001-07-19 03:57:44",
+    "linked_file": null,
+    "hugo": "3229-come-mai-i-disobbedienti-hanno-i-loro-attrezzi-",
+    "date": "2001-07-19",
+    "time": "03:57:44",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "03",
+    "minute": "57",
+    "second": "44"
+  },
+  {
+    "id": 3232,
+    "heading": "Fuerza Aerea Zapatista",
+    "created": "2001-07-19 04:44:40",
+    "linked_file": null,
+    "hugo": "3232-fuerza-aerea-zapatista",
+    "date": "2001-07-19",
+    "time": "04:44:40",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "04",
+    "minute": "44",
+    "second": "40"
+  },
+  {
+    "id": 3231,
+    "heading": "Czech Bus Stopped at Brenner Border",
+    "created": "2001-07-19 04:50:13",
+    "linked_file": null,
+    "hugo": "3231-czech-bus-stopped-at-brenner-border",
+    "date": "2001-07-19",
+    "time": "04:50:13",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "04",
+    "minute": "50",
+    "second": "13"
+  },
+  {
+    "id": 3238,
+    "heading": "Provocazioni nostrane",
+    "created": "2001-07-19 04:56:01",
+    "linked_file": null,
+    "hugo": "3238-provocazioni-nostrane",
+    "date": "2001-07-19",
+    "time": "04:56:01",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "04",
+    "minute": "56",
+    "second": "01"
+  },
+  {
+    "id": 3241,
+    "heading": "G8, anche il voto di Noam Chomsky per il referendum autogestito di Legambiente",
+    "created": "2001-07-19 05:25:25",
+    "linked_file": null,
+    "hugo": "3241-g8-anche-il-voto-di-noam-chomsky-per-il-referendum-autogestito-di-legambiente",
+    "date": "2001-07-19",
+    "time": "05:25:25",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "05",
+    "minute": "25",
+    "second": "25"
+  },
+  {
+    "id": 3183,
+    "heading": "Genova footage on video popup? (english)  att italy techies",
+    "created": "2001-07-19 05:38:15",
+    "linked_file": null,
+    "hugo": "3183-genova-footage-on-video-popup-english-att-italy-techies",
+    "date": "2001-07-19",
+    "time": "05:38:15",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "05",
+    "minute": "38",
+    "second": "15"
+  },
+  {
+    "id": 3248,
+    "heading": "genova.eventi.18",
+    "created": "2001-07-19 05:38:55",
+    "linked_file": null,
+    "hugo": "3248-genovaeventi18",
+    "date": "2001-07-19",
+    "time": "05:38:55",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "05",
+    "minute": "38",
+    "second": "55"
+  },
+  {
+    "id": 3255,
+    "heading": "GSF works/ lavoriGSF",
+    "created": "2001-07-19 06:22:45",
+    "linked_file": "2001/07/bovety9m6j.jpg",
+    "hugo": "3255-gsf-works-lavorigsf",
+    "date": "2001-07-19",
+    "time": "06:22:45",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "06",
+    "minute": "22",
+    "second": "45"
+  },
+  {
+    "id": 3226,
+    "heading": "Swedish Consulate occupied (translation from yesterday)",
+    "created": "2001-07-19 06:24:01",
+    "linked_file": null,
+    "hugo": "3226-swedish-consulate-occupied-translation-from-yesterday",
+    "date": "2001-07-19",
+    "time": "06:24:01",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "06",
+    "minute": "24",
+    "second": "01"
+  },
+  {
+    "id": 3260,
+    "heading": "I greci fermati ad Ancona! The Greeks blocked at Ancona!",
+    "created": "2001-07-19 06:58:06",
+    "linked_file": null,
+    "hugo": "3260-i-greci-fermati-ad-ancona-the-greeks-blocked-at-ancona",
+    "date": "2001-07-19",
+    "time": "06:58:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "06",
+    "minute": "58",
+    "second": "06"
+  },
+  {
+    "id": 3253,
+    "heading": "Arrivo dei fiorentini e pisani ... in musica",
+    "created": "2001-07-19 07:11:14",
+    "linked_file": "2001/07/arrivo_genovagklnrb.rm",
+    "hugo": "3253-arrivo-dei-fiorentini-e-pisani-in-musica",
+    "date": "2001-07-19",
+    "time": "07:11:14",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "11",
+    "second": "14"
+  },
+  {
+    "id": 3250,
+    "heading": "Background Information on the protest in Genoa",
+    "created": "2001-07-19 07:15:53",
+    "linked_file": null,
+    "hugo": "3250-background-information-on-the-protest-in-genoa",
+    "date": "2001-07-19",
+    "time": "07:15:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "15",
+    "second": "53"
+  },
+  {
+    "id": 3265,
+    "heading": "LA SETTIMA CHIAVE: COMUNICATO DELLE TUTE BIANCHE",
+    "created": "2001-07-19 07:20:02",
+    "linked_file": null,
+    "hugo": "3265-la-settima-chiave-comunicato-delle-tute-bianche",
+    "date": "2001-07-19",
+    "time": "07:20:02",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "20",
+    "second": "02"
+  },
+  {
+    "id": 3267,
+    "heading": "G8 Data Protection Fears",
+    "created": "2001-07-19 07:29:30",
+    "linked_file": null,
+    "hugo": "3267-g8-data-protection-fears",
+    "date": "2001-07-19",
+    "time": "07:29:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "29",
+    "second": "30"
+  },
+  {
+    "id": 3259,
+    "heading": "White Knights Say \"ENOUGH\" to G7",
+    "created": "2001-07-19 07:40:06",
+    "linked_file": null,
+    "hugo": "3259-white-knights-say-enough-to-g7",
+    "date": "2001-07-19",
+    "time": "07:40:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "40",
+    "second": "06"
+  },
+  {
+    "id": 3270,
+    "heading": "genua:polizia medoviale",
+    "created": "2001-07-19 07:55:35",
+    "linked_file": null,
+    "hugo": "3270-genuapolizia-medoviale",
+    "date": "2001-07-19",
+    "time": "07:55:35",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "07",
+    "minute": "55",
+    "second": "35"
+  },
+  {
+    "id": 3273,
+    "heading": "Global AIDS Alliance Challenges G8",
+    "created": "2001-07-19 08:17:36",
+    "linked_file": null,
+    "hugo": "3273-global-aids-alliance-challenges-g8",
+    "date": "2001-07-19",
+    "time": "08:17:36",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "17",
+    "second": "36"
+  },
+  {
+    "id": 3274,
+    "heading": "IS IMC OR GSF LEADERS PROMOTING STORMING OR VIOLENCE?",
+    "created": "2001-07-19 08:28:11",
+    "linked_file": "2001/07/g8c.gif",
+    "hugo": "3274-is-imc-or-gsf-leaders-promoting-storming-or-violence",
+    "date": "2001-07-19",
+    "time": "08:28:11",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "28",
+    "second": "11"
+  },
+  {
+    "id": 3272,
+    "heading": "CHIUSA LA STAZIONE DI BRIGNOLE",
+    "created": "2001-07-19 08:30:03",
+    "linked_file": null,
+    "hugo": "3272-chiusa-la-stazione-di-brignole",
+    "date": "2001-07-19",
+    "time": "08:30:03",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "30",
+    "second": "03"
+  },
+  {
+    "id": 3276,
+    "heading": "Programma Ufficiale Genoa Social Forum 19 luglio 2001",
+    "created": "2001-07-19 08:30:13",
+    "linked_file": null,
+    "hugo": "3276-programma-ufficiale-genoa-social-forum-19-luglio-2001",
+    "date": "2001-07-19",
+    "time": "08:30:13",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "30",
+    "second": "13"
+  },
+  {
+    "id": 3279,
+    "heading": "Multinationales, consulats et banques bloquées à Lausanne",
+    "created": "2001-07-19 08:59:39",
+    "linked_file": "2001/07/cdpg8h.txt",
+    "hugo": "3279-multinationales-consulats-et-banques-bloquees-a-lausanne",
+    "date": "2001-07-19",
+    "time": "08:59:39",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "08",
+    "minute": "59",
+    "second": "39"
+  },
+  {
+    "id": 3280,
+    "heading": "W.O.M.B.L.E.S. camp evicted near campsfield!! W.O.M.B.L.E.S. arrested!!",
+    "created": "2001-07-19 09:12:46",
+    "linked_file": null,
+    "hugo": "3280-wombles-camp-evicted-near-campsfield-wombles-arrested",
+    "date": "2001-07-19",
+    "time": "09:12:46",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "09",
+    "minute": "12",
+    "second": "46"
+  },
+  {
+    "id": 3240,
+    "heading": "RADIO GAP TRASMETTE IN FM!!!",
+    "created": "2001-07-19 09:16:07",
+    "linked_file": null,
+    "hugo": "3240-radio-gap-trasmette-in-fm",
+    "date": "2001-07-19",
+    "time": "09:16:07",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "09",
+    "minute": "16",
+    "second": "07"
+  },
+  {
+    "id": 2380,
+    "heading": "per l'autodeterminazione delle donne",
+    "created": "2001-07-19 09:31:58",
+    "linked_file": "2001/07/manifest_donne.jpg",
+    "hugo": "2380-per-lautodeterminazione-delle-donne",
+    "date": "2001-07-19",
+    "time": "09:31:58",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "09",
+    "minute": "31",
+    "second": "58"
+  },
+  {
+    "id": 3285,
+    "heading": "I suoni diversi del GSF",
+    "created": "2001-07-19 10:04:58",
+    "linked_file": null,
+    "hugo": "3285-i-suoni-diversi-del-gsf",
+    "date": "2001-07-19",
+    "time": "10:04:58",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "10",
+    "minute": "04",
+    "second": "58"
+  },
+  {
+    "id": 3278,
+    "heading": "LA DISOBBEDIENZA AUTORIZZATA",
+    "created": "2001-07-19 10:14:30",
+    "linked_file": null,
+    "hugo": "3278-la-disobbedienza-autorizzata",
+    "date": "2001-07-19",
+    "time": "10:14:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "10",
+    "minute": "14",
+    "second": "30"
+  },
+  {
+    "id": 2895,
+    "heading": "Cancellato il \"British Globalise Resistance train\"",
+    "created": "2001-07-19 11:08:32",
+    "linked_file": null,
+    "hugo": "2895-cancellato-il-british-globalise-resistance-train",
+    "date": "2001-07-19",
+    "time": "11:08:32",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "08",
+    "second": "32"
+  },
+  {
+    "id": 3293,
+    "heading": "news from the demo",
+    "created": "2001-07-19 11:14:15",
+    "linked_file": null,
+    "hugo": "3293-news-from-the-demo",
+    "date": "2001-07-19",
+    "time": "11:14:15",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "14",
+    "second": "15"
+  },
+  {
+    "id": 3198,
+    "heading": "Message from Global Village Tribunal in Genoa",
+    "created": "2001-07-19 11:14:30",
+    "linked_file": null,
+    "hugo": "3198-message-from-global-village-tribunal-in-genoa",
+    "date": "2001-07-19",
+    "time": "11:14:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "14",
+    "second": "30"
+  },
+  {
+    "id": 3195,
+    "heading": "Scarf, Hat, Supplies On Hand - Ready to Rock !",
+    "created": "2001-07-19 11:22:29",
+    "linked_file": null,
+    "hugo": "3195-scarf-hat-supplies-on-hand-ready-to-rock-",
+    "date": "2001-07-19",
+    "time": "11:22:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "22",
+    "second": "29"
+  },
+  {
+    "id": 3297,
+    "heading": "Appello per una convergenza delle lotte contro le politiche securitarie e la rep",
+    "created": "2001-07-19 11:26:32",
+    "linked_file": null,
+    "hugo": "3297-appello-per-una-convergenza-delle-lotte-contro-le-politiche-securitarie-e-la-rep",
+    "date": "2001-07-19",
+    "time": "11:26:32",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "26",
+    "second": "32"
+  },
+  {
+    "id": 3298,
+    "heading": "tensions in front of the police office / tensioni davanti alla Questura",
+    "created": "2001-07-19 11:41:46",
+    "linked_file": null,
+    "hugo": "3298-tensions-in-front-of-the-police-office-tensioni-davanti-alla-questura",
+    "date": "2001-07-19",
+    "time": "11:41:46",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "41",
+    "second": "46"
+  },
+  {
+    "id": 3299,
+    "heading": "HUELGA GENERAL EN ARGENTINA",
+    "created": "2001-07-19 11:42:17",
+    "linked_file": null,
+    "hugo": "3299-huelga-general-en-argentina",
+    "date": "2001-07-19",
+    "time": "11:42:17",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "42",
+    "second": "17"
+  },
+  {
+    "id": 3301,
+    "heading": "Solidarity Action in Toronto",
+    "created": "2001-07-19 11:46:51",
+    "linked_file": null,
+    "hugo": "3301-solidarity-action-in-toronto",
+    "date": "2001-07-19",
+    "time": "11:46:51",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "46",
+    "second": "51"
+  },
+  {
+    "id": 3302,
+    "heading": "IS IMC OR GSF LEADERS PROMOTING STORMING OR VIOLENCE?",
+    "created": "2001-07-19 11:49:49",
+    "linked_file": "2001/07/g8cqpvytr.gif",
+    "hugo": "3302-is-imc-or-gsf-leaders-promoting-storming-or-violence",
+    "date": "2001-07-19",
+    "time": "11:49:49",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "11",
+    "minute": "49",
+    "second": "49"
+  },
+  {
+    "id": 3306,
+    "heading": "Ottawa Solidarity Action",
+    "created": "2001-07-19 12:02:02",
+    "linked_file": null,
+    "hugo": "3306-ottawa-solidarity-action",
+    "date": "2001-07-19",
+    "time": "12:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 3287,
+    "heading": "Immigration march: Success!",
+    "created": "2001-07-19 12:04:10",
+    "linked_file": null,
+    "hugo": "3287-immigration-march-success",
+    "date": "2001-07-19",
+    "time": "12:04:10",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "04",
+    "second": "10"
+  },
+  {
+    "id": 3289,
+    "heading": "Genoa -- Afternoon before the storm?",
+    "created": "2001-07-19 12:06:13",
+    "linked_file": null,
+    "hugo": "3289-genoa-afternoon-before-the-storm",
+    "date": "2001-07-19",
+    "time": "12:06:13",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "06",
+    "second": "13"
+  },
+  {
+    "id": 3300,
+    "heading": "Pronta in São Paulo la manifestazione contro il G8",
+    "created": "2001-07-19 12:12:54",
+    "linked_file": null,
+    "hugo": "3300-pronta-in-sao-paulo-la-manifestazione-contro-il-g8",
+    "date": "2001-07-19",
+    "time": "12:12:54",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "12",
+    "second": "54"
+  },
+  {
+    "id": 3170,
+    "heading": "Friends, Romans. . . Lend me your ears",
+    "created": "2001-07-19 12:20:06",
+    "linked_file": null,
+    "hugo": "3170-friends-romans-lend-me-your-ears",
+    "date": "2001-07-19",
+    "time": "12:20:06",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "20",
+    "second": "06"
+  },
+  {
+    "id": 3317,
+    "heading": "World Bank On G8 (propaganda warning)",
+    "created": "2001-07-19 12:32:41",
+    "linked_file": null,
+    "hugo": "3317-world-bank-on-g8-propaganda-warning",
+    "date": "2001-07-19",
+    "time": "12:32:41",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "32",
+    "second": "41"
+  },
+  {
+    "id": 3304,
+    "heading": "CENSOR TEST",
+    "created": "2001-07-19 12:34:58",
+    "linked_file": null,
+    "hugo": "3304-censor-test",
+    "date": "2001-07-19",
+    "time": "12:34:58",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "34",
+    "second": "58"
+  },
+  {
+    "id": 3321,
+    "heading": "A message from Quebec",
+    "created": "2001-07-19 12:51:25",
+    "linked_file": null,
+    "hugo": "3321-a-message-from-quebec",
+    "date": "2001-07-19",
+    "time": "12:51:25",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "51",
+    "second": "25"
+  },
+  {
+    "id": 3323,
+    "heading": "HE STRATEGY OF TENSION: Then and Now.",
+    "created": "2001-07-19 12:54:50",
+    "linked_file": null,
+    "hugo": "3323-he-strategy-of-tension-then-and-now",
+    "date": "2001-07-19",
+    "time": "12:54:50",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "54",
+    "second": "50"
+  },
+  {
+    "id": 3324,
+    "heading": "Anti-G8 Carneval in Helsinki tomorrow",
+    "created": "2001-07-19 12:55:12",
+    "linked_file": null,
+    "hugo": "3324-antig8-carneval-in-helsinki-tomorrow",
+    "date": "2001-07-19",
+    "time": "12:55:12",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "55",
+    "second": "12"
+  },
+  {
+    "id": 3326,
+    "heading": "PublixTheatreCaravan J18+J19",
+    "created": "2001-07-19 12:58:59",
+    "linked_file": null,
+    "hugo": "3326-publixtheatrecaravan-j18+j19",
+    "date": "2001-07-19",
+    "time": "12:58:59",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "12",
+    "minute": "58",
+    "second": "59"
+  },
+  {
+    "id": 3327,
+    "heading": "Beyond maps and metaphors, Architecture",
+    "created": "2001-07-19 13:01:33",
+    "linked_file": null,
+    "hugo": "3327-beyond-maps-and-metaphors-architecture",
+    "date": "2001-07-19",
+    "time": "13:01:33",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "13",
+    "minute": "01",
+    "second": "33"
+  },
+  {
+    "id": 3330,
+    "heading": "no border no deportation",
+    "created": "2001-07-19 13:42:44",
+    "linked_file": "2001/07/nodeportation.jpg",
+    "hugo": "3330-no-border-no-deportation",
+    "date": "2001-07-19",
+    "time": "13:42:44",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "13",
+    "minute": "42",
+    "second": "44"
+  },
+  {
+    "id": 3157,
+    "heading": "Globalise Resistance Train",
+    "created": "2001-07-19 14:05:30",
+    "linked_file": null,
+    "hugo": "3157-globalise-resistance-train",
+    "date": "2001-07-19",
+    "time": "14:05:30",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "05",
+    "second": "30"
+  },
+  {
+    "id": 3309,
+    "heading": "GSF Press Release",
+    "created": "2001-07-19 14:21:42",
+    "linked_file": null,
+    "hugo": "3309-gsf-press-release",
+    "date": "2001-07-19",
+    "time": "14:21:42",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "21",
+    "second": "42"
+  },
+  {
+    "id": 3308,
+    "heading": "IS IMC OR GSF LEADERS PROMOTING STORMING OR VIOLENCE?",
+    "created": "2001-07-19 14:27:23",
+    "linked_file": null,
+    "hugo": "3308-is-imc-or-gsf-leaders-promoting-storming-or-violence",
+    "date": "2001-07-19",
+    "time": "14:27:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "27",
+    "second": "23"
+  },
+  {
+    "id": 3316,
+    "heading": "LA DISOBEDIENZA AUTORIZZATA",
+    "created": "2001-07-19 14:28:49",
+    "linked_file": null,
+    "hugo": "3316-la-disobedienza-autorizzata",
+    "date": "2001-07-19",
+    "time": "14:28:49",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "28",
+    "second": "49"
+  },
+  {
+    "id": 3325,
+    "heading": "Migrants demo (report and picture)",
+    "created": "2001-07-19 14:46:33",
+    "linked_file": "2001/07/demostart1.jpg",
+    "hugo": "3325-migrants-demo-report-and-picture",
+    "date": "2001-07-19",
+    "time": "14:46:33",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "46",
+    "second": "33"
+  },
+  {
+    "id": 3340,
+    "heading": "Bush Proposal Needs to be Applied Retroactively",
+    "created": "2001-07-19 14:49:38",
+    "linked_file": null,
+    "hugo": "3340-bush-proposal-needs-to-be-applied-retroactively",
+    "date": "2001-07-19",
+    "time": "14:49:38",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "14",
+    "minute": "49",
+    "second": "38"
+  },
+  {
+    "id": 3290,
+    "heading": "LATEST NEWS FRON ANCONA",
+    "created": "2001-07-19 15:12:32",
+    "linked_file": null,
+    "hugo": "3290-latest-news-fron-ancona",
+    "date": "2001-07-19",
+    "time": "15:12:32",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "15",
+    "minute": "12",
+    "second": "32"
+  },
+  {
+    "id": 3354,
+    "heading": "i greci rispediti a casa da ancona - greek ferry sent back from ancona",
+    "created": "2001-07-19 15:17:22",
+    "linked_file": null,
+    "hugo": "3354-i-greci-rispediti-a-casa-da-ancona-greek-ferry-sent-back-from-ancona",
+    "date": "2001-07-19",
+    "time": "15:17:22",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "15",
+    "minute": "17",
+    "second": "22"
+  },
+  {
+    "id": 3361,
+    "heading": "ANCONA: altro gruppo di greci partito per ge / other greek group gone to genoa",
+    "created": "2001-07-19 15:57:04",
+    "linked_file": "2001/07/g8anconaho.jpg",
+    "hugo": "3361-ancona-altro-gruppo-di-greci-partito-per-ge-other-greek-group-gone-to-genoa",
+    "date": "2001-07-19",
+    "time": "15:57:04",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "15",
+    "minute": "57",
+    "second": "04"
+  },
+  {
+    "id": 3362,
+    "heading": "Throat as monitoring any PoMo owls",
+    "created": "2001-07-19 16:13:47",
+    "linked_file": null,
+    "hugo": "3362-throat-as-monitoring-any-pomo-owls",
+    "date": "2001-07-19",
+    "time": "16:13:47",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "16",
+    "minute": "13",
+    "second": "47"
+  },
+  {
+    "id": 3365,
+    "heading": "Borders demonstration 19/07/701 dance against IMF",
+    "created": "2001-07-19 16:45:17",
+    "linked_file": null,
+    "hugo": "3365-borders-demonstration-1907701-dance-against-imf",
+    "date": "2001-07-19",
+    "time": "16:45:17",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "16",
+    "minute": "45",
+    "second": "17"
+  },
+  {
+    "id": 3358,
+    "heading": "Solidaridad con Genova en Buenos Aires-Argentina",
+    "created": "2001-07-19 16:50:50",
+    "linked_file": null,
+    "hugo": "3358-solidaridad-con-genova-en-buenos-airesargentina",
+    "date": "2001-07-19",
+    "time": "16:50:50",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "16",
+    "minute": "50",
+    "second": "50"
+  },
+  {
+    "id": 3370,
+    "heading": "Genes : Resume de la mobilisation de jeudi.",
+    "created": "2001-07-19 17:00:18",
+    "linked_file": null,
+    "hugo": "3370-genes-resume-de-la-mobilisation-de-jeudi",
+    "date": "2001-07-19",
+    "time": "17:00:18",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "00",
+    "second": "18"
+  },
+  {
+    "id": 3371,
+    "heading": "Greeks Ricorso alla Corte Europea",
+    "created": "2001-07-19 17:00:24",
+    "linked_file": null,
+    "hugo": "3371-greeks-ricorso-alla-corte-europea",
+    "date": "2001-07-19",
+    "time": "17:00:24",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "00",
+    "second": "24"
+  },
+  {
+    "id": 3369,
+    "heading": "Allagato il Carlini/ Carlini stadium flooded",
+    "created": "2001-07-19 17:05:38",
+    "linked_file": null,
+    "hugo": "3369-allagato-il-carlini-carlini-stadium-flooded",
+    "date": "2001-07-19",
+    "time": "17:05:38",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "05",
+    "second": "38"
+  },
+  {
+    "id": 3383,
+    "heading": "34 Austrian Activists denied entry",
+    "created": "2001-07-19 17:46:00",
+    "linked_file": null,
+    "hugo": "3383-34-austrian-activists-denied-entry",
+    "date": "2001-07-19",
+    "time": "17:46:00",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "46",
+    "second": "00"
+  },
+  {
+    "id": 2934,
+    "heading": "State Of The World Report",
+    "created": "2001-07-19 17:52:09",
+    "linked_file": "2001/07/unheli8bwuuo.jpg",
+    "hugo": "2934-state-of-the-world-report",
+    "date": "2001-07-19",
+    "time": "17:52:09",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "52",
+    "second": "09"
+  },
+  {
+    "id": 3388,
+    "heading": "Containers in via xx settembre e corso buenos aires it en",
+    "created": "2001-07-19 17:56:11",
+    "linked_file": null,
+    "hugo": "3388-containers-in-via-xx-settembre-e-corso-buenos-aires-it-en",
+    "date": "2001-07-19",
+    "time": "17:56:11",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "17",
+    "minute": "56",
+    "second": "11"
+  },
+  {
+    "id": 3384,
+    "heading": "Interview with Jose, an illegal Colombian immigrant",
+    "created": "2001-07-19 18:03:42",
+    "linked_file": null,
+    "hugo": "3384-interview-with-jose-an-illegal-colombian-immigrant",
+    "date": "2001-07-19",
+    "time": "18:03:42",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "03",
+    "second": "42"
+  },
+  {
+    "id": 3394,
+    "heading": "noborder.nonation.publixtheatrecaravan in genova",
+    "created": "2001-07-19 18:14:03",
+    "linked_file": "2001/07/publix1.jpg",
+    "hugo": "3394-nobordernonationpublixtheatrecaravan-in-genova",
+    "date": "2001-07-19",
+    "time": "18:14:03",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "14",
+    "second": "03"
+  },
+  {
+    "id": 3353,
+    "heading": "Solidarity From Canada",
+    "created": "2001-07-19 18:26:09",
+    "linked_file": null,
+    "hugo": "3353-solidarity-from-canada",
+    "date": "2001-07-19",
+    "time": "18:26:09",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "26",
+    "second": "09"
+  },
+  {
+    "id": 3400,
+    "heading": "t",
+    "created": "2001-07-19 18:28:53",
+    "linked_file": "2001/07/demostart100-thumb.jpg",
+    "hugo": "3400-t",
+    "date": "2001-07-19",
+    "time": "18:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 3360,
+    "heading": "Showdown in Genoa: Anti-capitalists vs. the state",
+    "created": "2001-07-19 18:29:24",
+    "linked_file": null,
+    "hugo": "3360-showdown-in-genoa-anticapitalists-vs-the-state",
+    "date": "2001-07-19",
+    "time": "18:29:24",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "29",
+    "second": "24"
+  },
+  {
+    "id": 3339,
+    "heading": "Residents solidarity in Genova (picture)",
+    "created": "2001-07-19 18:32:18",
+    "linked_file": "2001/07/che1.jpg",
+    "hugo": "3339-residents-solidarity-in-genova-picture",
+    "date": "2001-07-19",
+    "time": "18:32:18",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "32",
+    "second": "18"
+  },
+  {
+    "id": 3167,
+    "heading": "What is the G-8 and why does it matter?",
+    "created": "2001-07-19 18:36:29",
+    "linked_file": null,
+    "hugo": "3167-what-is-the-g8-and-why-does-it-matter",
+    "date": "2001-07-19",
+    "time": "18:36:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "36",
+    "second": "29"
+  },
+  {
+    "id": 2916,
+    "heading": "All to Genoa against the G8",
+    "created": "2001-07-19 18:37:08",
+    "linked_file": null,
+    "hugo": "2916-all-to-genoa-against-the-g8",
+    "date": "2001-07-19",
+    "time": "18:37:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "37",
+    "second": "08"
+  },
+  {
+    "id": 3305,
+    "heading": "IMC IS CENSORING POSTS NOW",
+    "created": "2001-07-19 18:50:55",
+    "linked_file": null,
+    "hugo": "3305-imc-is-censoring-posts-now",
+    "date": "2001-07-19",
+    "time": "18:50:55",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "50",
+    "second": "55"
+  },
+  {
+    "id": 2917,
+    "heading": "Smash the G8 - workers and youth unite!",
+    "created": "2001-07-19 18:55:23",
+    "linked_file": "2001/07/vignetta_g8.gif",
+    "hugo": "2917-smash-the-g8-workers-and-youth-unite",
+    "date": "2001-07-19",
+    "time": "18:55:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "18",
+    "minute": "55",
+    "second": "23"
+  },
+  {
+    "id": 3418,
+    "heading": "containers city",
+    "created": "2001-07-19 19:02:09",
+    "linked_file": null,
+    "hugo": "3418-containers-city",
+    "date": "2001-07-19",
+    "time": "19:02:09",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "02",
+    "second": "09"
+  },
+  {
+    "id": 3419,
+    "heading": "Berlusconi Offends Genoese Ladies with His Fascist Edict",
+    "created": "2001-07-19 19:06:08",
+    "linked_file": null,
+    "hugo": "3419-berlusconi-offends-genoese-ladies-with-his-fascist-edict",
+    "date": "2001-07-19",
+    "time": "19:06:08",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "06",
+    "second": "08"
+  },
+  {
+    "id": 3421,
+    "heading": "Comunicato 3 - Anarchici contro il G8 - giovedì 19/07/2001",
+    "created": "2001-07-19 19:18:41",
+    "linked_file": null,
+    "hugo": "3421-comunicato-3-anarchici-contro-il-g8-giovedi-19072001",
+    "date": "2001-07-19",
+    "time": "19:18:41",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "18",
+    "second": "41"
+  },
+  {
+    "id": 3424,
+    "heading": "conteiners",
+    "created": "2001-07-19 19:29:07",
+    "linked_file": null,
+    "hugo": "3424-conteiners",
+    "date": "2001-07-19",
+    "time": "19:29:07",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "29",
+    "second": "07"
+  },
+  {
+    "id": 3425,
+    "heading": "Massive Strike Paralyses Argentina - Disastrous Cuts.",
+    "created": "2001-07-19 19:29:12",
+    "linked_file": null,
+    "hugo": "3425-massive-strike-paralyses-argentina-disastrous-cuts",
+    "date": "2001-07-19",
+    "time": "19:29:12",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "29",
+    "second": "12"
+  },
+  {
+    "id": 3427,
+    "heading": "FIGHT  ON!  US  Attempts to Drive Through IG FARBEN DIET for Poor,  at Summit",
+    "created": "2001-07-19 19:51:23",
+    "linked_file": null,
+    "hugo": "3427-fight-on-us-attempts-to-drive-through-ig-farben-diet-for-poor-at-summit",
+    "date": "2001-07-19",
+    "time": "19:51:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "19",
+    "minute": "51",
+    "second": "23"
+  },
+  {
+    "id": 3431,
+    "heading": "italian e-commerce sites - what the h_ck !",
+    "created": "2001-07-19 20:26:29",
+    "linked_file": null,
+    "hugo": "3431-italian-ecommerce-sites-what-the-hck-",
+    "date": "2001-07-19",
+    "time": "20:26:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "26",
+    "second": "29"
+  },
+  {
+    "id": 3432,
+    "heading": "dealing with trauma post action",
+    "created": "2001-07-19 20:28:29",
+    "linked_file": null,
+    "hugo": "3432-dealing-with-trauma-post-action",
+    "date": "2001-07-19",
+    "time": "20:28:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "28",
+    "second": "29"
+  },
+  {
+    "id": 3283,
+    "heading": "la polizia carica ad ancona",
+    "created": "2001-07-19 20:31:43",
+    "linked_file": null,
+    "hugo": "3283-la-polizia-carica-ad-ancona",
+    "date": "2001-07-19",
+    "time": "20:31:43",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "31",
+    "second": "43"
+  },
+  {
+    "id": 3434,
+    "heading": "il programma di traduttore è ok/ translator program is ok",
+    "created": "2001-07-19 20:33:45",
+    "linked_file": null,
+    "hugo": "3434-il-programma-di-traduttore-e-ok-translator-program-is-ok",
+    "date": "2001-07-19",
+    "time": "20:33:45",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "33",
+    "second": "45"
+  },
+  {
+    "id": 3436,
+    "heading": "more photos",
+    "created": "2001-07-19 20:49:23",
+    "linked_file": null,
+    "hugo": "3436-more-photos",
+    "date": "2001-07-19",
+    "time": "20:49:23",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "20",
+    "minute": "49",
+    "second": "23"
+  },
+  {
+    "id": 3437,
+    "heading": "Protestors Laugh at G8 Security",
+    "created": "2001-07-19 21:17:53",
+    "linked_file": null,
+    "hugo": "3437-protestors-laugh-at-g8-security",
+    "date": "2001-07-19",
+    "time": "21:17:53",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "21",
+    "minute": "17",
+    "second": "53"
+  },
+  {
+    "id": 3251,
+    "heading": "genova: fachist's police stopt german aktivists",
+    "created": "2001-07-19 21:54:12",
+    "linked_file": null,
+    "hugo": "3251-genova-fachists-police-stopt-german-aktivists",
+    "date": "2001-07-19",
+    "time": "21:54:12",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "21",
+    "minute": "54",
+    "second": "12"
+  },
+  {
+    "id": 2419,
+    "heading": "Pocket-Guide First Aid",
+    "created": "2001-07-19 22:19:31",
+    "linked_file": null,
+    "hugo": "2419-pocketguide-first-aid",
+    "date": "2001-07-19",
+    "time": "22:19:31",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "22",
+    "minute": "19",
+    "second": "31"
+  },
+  {
+    "id": 3444,
+    "heading": "Wellington Solidarity anti-G8 Demonstration",
+    "created": "2001-07-19 22:26:10",
+    "linked_file": null,
+    "hugo": "3444-wellington-solidarity-antig8-demonstration",
+    "date": "2001-07-19",
+    "time": "22:26:10",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "22",
+    "minute": "26",
+    "second": "10"
+  },
+  {
+    "id": 3430,
+    "heading": " This is what Bush and his Business Backers Want to do With the Poor.",
+    "created": "2001-07-19 22:34:14",
+    "linked_file": null,
+    "hugo": "3430-this-is-what-bush-and-his-business-backers-want-to-do-with-the-poor",
+    "date": "2001-07-19",
+    "time": "22:34:14",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "22",
+    "minute": "34",
+    "second": "14"
+  },
+  {
+    "id": 3449,
+    "heading": "volnatino hate g-eight [it/en]",
+    "created": "2001-07-19 23:49:47",
+    "linked_file": null,
+    "hugo": "3449-volnatino-hate-geight-iten",
+    "date": "2001-07-19",
+    "time": "23:49:47",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "23",
+    "minute": "49",
+    "second": "47"
+  },
+  {
+    "id": 3347,
+    "heading": "more pictures from the noborder demonstration in genoa",
+    "created": "2001-07-19 23:53:51",
+    "linked_file": "2001/07/campsfield.jpg",
+    "hugo": "3347-more-pictures-from-the-noborder-demonstration-in-genoa",
+    "date": "2001-07-19",
+    "time": "23:53:51",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "23",
+    "minute": "53",
+    "second": "51"
+  },
+  {
+    "id": 3439,
+    "heading": "Question: Bush 700-member entourage",
+    "created": "2001-07-19 23:57:29",
+    "linked_file": null,
+    "hugo": "3439-question-bush-700member-entourage",
+    "date": "2001-07-19",
+    "time": "23:57:29",
+    "year": "2001",
+    "month": "07",
+    "day": "19",
+    "hour": "23",
+    "minute": "57",
+    "second": "29"
+  },
+  {
+    "id": 2809,
+    "heading": "A PROPOSAL TO WORLD ACTIVISTS",
+    "created": "2001-07-20 00:23:22",
+    "linked_file": "2001/07/headline2.jpg",
+    "hugo": "2809-a-proposal-to-world-activists",
+    "date": "2001-07-20",
+    "time": "00:23:22",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "23",
+    "second": "22"
+  },
+  {
+    "id": 3446,
+    "heading": "Solidarity demos in Norway",
+    "created": "2001-07-20 00:28:33",
+    "linked_file": null,
+    "hugo": "3446-solidarity-demos-in-norway",
+    "date": "2001-07-20",
+    "time": "00:28:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "28",
+    "second": "33"
+  },
+  {
+    "id": 3461,
+    "heading": "La polizia circonda il Centro Sociale Inmensa",
+    "created": "2001-07-20 00:32:38",
+    "linked_file": null,
+    "hugo": "3461-la-polizia-circonda-il-centro-sociale-inmensa",
+    "date": "2001-07-20",
+    "time": "00:32:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "32",
+    "second": "38"
+  },
+  {
+    "id": 3462,
+    "heading": "Solidarity demonstration in Athens",
+    "created": "2001-07-20 00:34:37",
+    "linked_file": null,
+    "hugo": "3462-solidarity-demonstration-in-athens",
+    "date": "2001-07-20",
+    "time": "00:34:37",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "34",
+    "second": "37"
+  },
+  {
+    "id": 3464,
+    "heading": "Police at Pinelli centre?? 0850hrs",
+    "created": "2001-07-20 00:44:57",
+    "linked_file": null,
+    "hugo": "3464-police-at-pinelli-centre-0850hrs",
+    "date": "2001-07-20",
+    "time": "00:44:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "44",
+    "second": "57"
+  },
+  {
+    "id": 3466,
+    "heading": "Anarchist area under siege / Area anarchica sotto assedio",
+    "created": "2001-07-20 00:51:05",
+    "linked_file": null,
+    "hugo": "3466-anarchist-area-under-siege-area-anarchica-sotto-assedio",
+    "date": "2001-07-20",
+    "time": "00:51:05",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "51",
+    "second": "05"
+  },
+  {
+    "id": 3467,
+    "heading": "Greci ad Ancona",
+    "created": "2001-07-20 00:54:35",
+    "linked_file": null,
+    "hugo": "3467-greci-ad-ancona",
+    "date": "2001-07-20",
+    "time": "00:54:35",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "54",
+    "second": "35"
+  },
+  {
+    "id": 3465,
+    "heading": "March in Athens outside Italian Embassy",
+    "created": "2001-07-20 00:57:21",
+    "linked_file": null,
+    "hugo": "3465-march-in-athens-outside-italian-embassy",
+    "date": "2001-07-20",
+    "time": "00:57:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "00",
+    "minute": "57",
+    "second": "21"
+  },
+  {
+    "id": 3474,
+    "heading": "Report From The Red Zone",
+    "created": "2001-07-20 01:15:46",
+    "linked_file": "2001/07/0719_rob_genoa.mp3",
+    "hugo": "3474-report-from-the-red-zone",
+    "date": "2001-07-20",
+    "time": "01:15:46",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "15",
+    "second": "46"
+  },
+  {
+    "id": 3457,
+    "heading": "Red zone extended overnight",
+    "created": "2001-07-20 01:16:52",
+    "linked_file": null,
+    "hugo": "3457-red-zone-extended-overnight",
+    "date": "2001-07-20",
+    "time": "01:16:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "16",
+    "second": "52"
+  },
+  {
+    "id": 3468,
+    "heading": "Ricorso contro l'Italia alla Corte Europea",
+    "created": "2001-07-20 01:19:54",
+    "linked_file": null,
+    "hugo": "3468-ricorso-contro-litalia-alla-corte-europea",
+    "date": "2001-07-20",
+    "time": "01:19:54",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "19",
+    "second": "54"
+  },
+  {
+    "id": 3477,
+    "heading": "polizia a quarto (ospedale psichiatrico)",
+    "created": "2001-07-20 01:29:02",
+    "linked_file": null,
+    "hugo": "3477-polizia-a-quarto-ospedale-psichiatrico",
+    "date": "2001-07-20",
+    "time": "01:29:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "29",
+    "second": "02"
+  },
+  {
+    "id": 3201,
+    "heading": "G7  Protest Completely Justified. More Protest Needed.",
+    "created": "2001-07-20 01:34:27",
+    "linked_file": null,
+    "hugo": "3201-g7-protest-completely-justified-more-protest-needed",
+    "date": "2001-07-20",
+    "time": "01:34:27",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "34",
+    "second": "27"
+  },
+  {
+    "id": 3399,
+    "heading": "Fermi, scontri e rimpatri ad Ancona / Stop, riots and backhome in Ancona",
+    "created": "2001-07-20 01:35:38",
+    "linked_file": null,
+    "hugo": "3399-fermi-scontri-e-rimpatri-ad-ancona-stop-riots-and-backhome-in-ancona",
+    "date": "2001-07-20",
+    "time": "01:35:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "35",
+    "second": "38"
+  },
+  {
+    "id": 3463,
+    "heading": "Polizia all'immensa / Police to the Inmensa",
+    "created": "2001-07-20 01:37:03",
+    "linked_file": null,
+    "hugo": "3463-polizia-allimmensa-police-to-the-inmensa",
+    "date": "2001-07-20",
+    "time": "01:37:03",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "37",
+    "second": "03"
+  },
+  {
+    "id": 3481,
+    "heading": "csa inmensa ore 9:45 ancora trattiamo",
+    "created": "2001-07-20 01:52:29",
+    "linked_file": null,
+    "hugo": "3481-csa-inmensa-ore-945-ancora-trattiamo",
+    "date": "2001-07-20",
+    "time": "01:52:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "01",
+    "minute": "52",
+    "second": "29"
+  },
+  {
+    "id": 3484,
+    "heading": "The WORLD CRUSADE",
+    "created": "2001-07-20 02:02:36",
+    "linked_file": null,
+    "hugo": "3484-the-world-crusade",
+    "date": "2001-07-20",
+    "time": "02:02:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "02",
+    "second": "36"
+  },
+  {
+    "id": 3219,
+    "heading": "BBC: Protestors Target O' So Phony Tony",
+    "created": "2001-07-20 02:06:57",
+    "linked_file": null,
+    "hugo": "3219-bbc-protestors-target-o-so-phony-tony",
+    "date": "2001-07-20",
+    "time": "02:06:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "06",
+    "second": "57"
+  },
+  {
+    "id": 3443,
+    "heading": "CENSOR TEST",
+    "created": "2001-07-20 02:22:32",
+    "linked_file": null,
+    "hugo": "3443-censor-test",
+    "date": "2001-07-20",
+    "time": "02:22:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "22",
+    "second": "32"
+  },
+  {
+    "id": 3487,
+    "heading": "J19 TheatreActions (Video)",
+    "created": "2001-07-20 02:24:24",
+    "linked_file": "2001/07/j19.rm",
+    "hugo": "3487-j19-theatreactions-video",
+    "date": "2001-07-20",
+    "time": "02:24:24",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "24",
+    "second": "24"
+  },
+  {
+    "id": 3488,
+    "heading": "Inmensa developments / sviluppi all'Inmensa",
+    "created": "2001-07-20 02:24:45",
+    "linked_file": null,
+    "hugo": "3488-inmensa-developments-sviluppi-allinmensa",
+    "date": "2001-07-20",
+    "time": "02:24:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "24",
+    "second": "45"
+  },
+  {
+    "id": 3489,
+    "heading": "GREEK PARLIAMENTARIANS STOPPED FROM ENTERING GENOVA",
+    "created": "2001-07-20 02:33:47",
+    "linked_file": null,
+    "hugo": "3489-greek-parliamentarians-stopped-from-entering-genova",
+    "date": "2001-07-20",
+    "time": "02:33:47",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "33",
+    "second": "47"
+  },
+  {
+    "id": 3485,
+    "heading": "GSF Press release 3.000 manifestanti sotto la pioggia ieri sera",
+    "created": "2001-07-20 02:38:25",
+    "linked_file": null,
+    "hugo": "3485-gsf-press-release-3000-manifestanti-sotto-la-pioggia-ieri-sera",
+    "date": "2001-07-20",
+    "time": "02:38:25",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "38",
+    "second": "25"
+  },
+  {
+    "id": 3492,
+    "heading": "Speaker on Refugee and Human Rights at the Immigration Demo (english, mp3)",
+    "created": "2001-07-20 02:42:47",
+    "linked_file": "2001/07/osaren.mp3",
+    "hugo": "3492-speaker-on-refugee-and-human-rights-at-the-immigration-demo-english-mp3",
+    "date": "2001-07-20",
+    "time": "02:42:47",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "02",
+    "minute": "42",
+    "second": "47"
+  },
+  {
+    "id": 3494,
+    "heading": "Global Village Tribunal",
+    "created": "2001-07-20 03:03:37",
+    "linked_file": null,
+    "hugo": "3494-global-village-tribunal",
+    "date": "2001-07-20",
+    "time": "03:03:37",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "03",
+    "second": "37"
+  },
+  {
+    "id": 3496,
+    "heading": "stories from the austrian border",
+    "created": "2001-07-20 03:06:31",
+    "linked_file": null,
+    "hugo": "3496-stories-from-the-austrian-border",
+    "date": "2001-07-20",
+    "time": "03:06:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "06",
+    "second": "31"
+  },
+  {
+    "id": 3495,
+    "heading": "Solidarity Demo in Finland",
+    "created": "2001-07-20 03:19:15",
+    "linked_file": null,
+    "hugo": "3495-solidarity-demo-in-finland",
+    "date": "2001-07-20",
+    "time": "03:19:15",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "19",
+    "second": "15"
+  },
+  {
+    "id": 3501,
+    "heading": "occupazione del consulato tedesco a Lugano",
+    "created": "2001-07-20 03:23:21",
+    "linked_file": null,
+    "hugo": "3501-occupazione-del-consulato-tedesco-a-lugano",
+    "date": "2001-07-20",
+    "time": "03:23:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "23",
+    "second": "21"
+  },
+  {
+    "id": 3502,
+    "heading": "Comunicato 4 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 03:39:52",
+    "linked_file": null,
+    "hugo": "3502-comunicato-4-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "03:39:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "03",
+    "minute": "39",
+    "second": "52"
+  },
+  {
+    "id": 3505,
+    "heading": "container",
+    "created": "2001-07-20 04:16:34",
+    "linked_file": "2001/07/container.tif",
+    "hugo": "3505-container",
+    "date": "2001-07-20",
+    "time": "04:16:34",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "16",
+    "second": "34"
+  },
+  {
+    "id": 3506,
+    "heading": "Prisoners in Göteborg (Sweden)",
+    "created": "2001-07-20 04:19:48",
+    "linked_file": null,
+    "hugo": "3506-prisoners-in-goteborg-sweden",
+    "date": "2001-07-20",
+    "time": "04:19:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "19",
+    "second": "48"
+  },
+  {
+    "id": 3497,
+    "heading": "PDF poster - Help inform others about indymedia coverage",
+    "created": "2001-07-20 04:23:15",
+    "linked_file": "2001/07/genoa_poster5ckbwj.gif",
+    "hugo": "3497-pdf-poster-help-inform-others-about-indymedia-coverage",
+    "date": "2001-07-20",
+    "time": "04:23:15",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "23",
+    "second": "15"
+  },
+  {
+    "id": 3504,
+    "heading": "Comunicato 5 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 04:23:18",
+    "linked_file": null,
+    "hugo": "3504-comunicato-5-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "04:23:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "23",
+    "second": "18"
+  },
+  {
+    "id": 3513,
+    "heading": "map",
+    "created": "2001-07-20 04:42:56",
+    "linked_file": "2001/07/map1230pm.jpg",
+    "hugo": "3513-map",
+    "date": "2001-07-20",
+    "time": "04:42:56",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "42",
+    "second": "56"
+  },
+  {
+    "id": 3190,
+    "heading": "Where are the Genoa G8 archives? Beyond one day?",
+    "created": "2001-07-20 04:54:13",
+    "linked_file": null,
+    "hugo": "3190-where-are-the-genoa-g8-archives-beyond-one-day",
+    "date": "2001-07-20",
+    "time": "04:54:13",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "04",
+    "minute": "54",
+    "second": "13"
+  },
+  {
+    "id": 3507,
+    "heading": "container-barricades",
+    "created": "2001-07-20 05:01:36",
+    "linked_file": "2001/07/contain.jpg",
+    "hugo": "3507-containerbarricades",
+    "date": "2001-07-20",
+    "time": "05:01:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "01",
+    "second": "36"
+  },
+  {
+    "id": 3516,
+    "heading": "Web cam in Genoa",
+    "created": "2001-07-20 05:02:08",
+    "linked_file": null,
+    "hugo": "3516-web-cam-in-genoa",
+    "date": "2001-07-20",
+    "time": "05:02:08",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "02",
+    "second": "08"
+  },
+  {
+    "id": 3519,
+    "heading": "demonstration starts at calini",
+    "created": "2001-07-20 05:19:19",
+    "linked_file": null,
+    "hugo": "3519-demonstration-starts-at-calini",
+    "date": "2001-07-20",
+    "time": "05:19:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "19",
+    "second": "19"
+  },
+  {
+    "id": 3523,
+    "heading": "polizia sgombera piazza tommaseo",
+    "created": "2001-07-20 05:35:58",
+    "linked_file": null,
+    "hugo": "3523-polizia-sgombera-piazza-tommaseo",
+    "date": "2001-07-20",
+    "time": "05:35:58",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "35",
+    "second": "58"
+  },
+  {
+    "id": 3539,
+    "heading": "MELBOURNE,AUSTRALIA SOLIDARITY (anche Domenica)",
+    "created": "2001-07-20 05:49:10",
+    "linked_file": null,
+    "hugo": "3539-melbourneaustralia-solidarity-anche-domenica",
+    "date": "2001-07-20",
+    "time": "05:49:10",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "49",
+    "second": "10"
+  },
+  {
+    "id": 3540,
+    "heading": "poster",
+    "created": "2001-07-20 05:49:10",
+    "linked_file": "2001/07/poster_g8.pdf",
+    "hugo": "3540-poster",
+    "date": "2001-07-20",
+    "time": "05:49:10",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "49",
+    "second": "10"
+  },
+  {
+    "id": 3522,
+    "heading": "infermiere picchiato da polizia",
+    "created": "2001-07-20 05:50:42",
+    "linked_file": null,
+    "hugo": "3522-infermiere-picchiato-da-polizia",
+    "date": "2001-07-20",
+    "time": "05:50:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "05",
+    "minute": "50",
+    "second": "42"
+  },
+  {
+    "id": 3546,
+    "heading": "map of the situation at 2.00 pm",
+    "created": "2001-07-20 06:08:06",
+    "linked_file": "2001/07/map200pm.jpg",
+    "hugo": "3546-map-of-the-situation-at-200-pm",
+    "date": "2001-07-20",
+    "time": "06:08:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "08",
+    "second": "06"
+  },
+  {
+    "id": 2933,
+    "heading": "Treni per Genova (e ritorno) dall'Italia",
+    "created": "2001-07-20 06:18:55",
+    "linked_file": null,
+    "hugo": "2933-treni-per-genova-e-ritorno-dallitalia",
+    "date": "2001-07-20",
+    "time": "06:18:55",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "18",
+    "second": "55"
+  },
+  {
+    "id": 3528,
+    "heading": "map at 1.00 pm",
+    "created": "2001-07-20 06:20:51",
+    "linked_file": "2001/07/map100pm.jpg",
+    "hugo": "3528-map-at-100-pm",
+    "date": "2001-07-20",
+    "time": "06:20:51",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "20",
+    "second": "51"
+  },
+  {
+    "id": 3547,
+    "heading": "G8",
+    "created": "2001-07-20 06:30:18",
+    "linked_file": null,
+    "hugo": "3547-g8",
+    "date": "2001-07-20",
+    "time": "06:30:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "30",
+    "second": "18"
+  },
+  {
+    "id": 3536,
+    "heading": "MELBOURNE,AUSTRALIA IN SOLIDARITY (Sabato)",
+    "created": "2001-07-20 06:33:34",
+    "linked_file": null,
+    "hugo": "3536-melbourneaustralia-in-solidarity-sabato",
+    "date": "2001-07-20",
+    "time": "06:33:34",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "33",
+    "second": "34"
+  },
+  {
+    "id": 3557,
+    "heading": "occupata l ambasciata tedesca a lugano svizzera",
+    "created": "2001-07-20 06:40:29",
+    "linked_file": null,
+    "hugo": "3557-occupata-l-ambasciata-tedesca-a-lugano-svizzera",
+    "date": "2001-07-20",
+    "time": "06:40:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "40",
+    "second": "29"
+  },
+  {
+    "id": 3517,
+    "heading": "Web Cam - Direct Link",
+    "created": "2001-07-20 06:45:06",
+    "linked_file": null,
+    "hugo": "3517-web-cam-direct-link",
+    "date": "2001-07-20",
+    "time": "06:45:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "45",
+    "second": "06"
+  },
+  {
+    "id": 3559,
+    "heading": "ancona: chieste dimissioni per questore e prefetto per greci rimpatriati",
+    "created": "2001-07-20 06:47:41",
+    "linked_file": null,
+    "hugo": "3559-ancona-chieste-dimissioni-per-questore-e-prefetto-per-greci-rimpatriati",
+    "date": "2001-07-20",
+    "time": "06:47:41",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "47",
+    "second": "41"
+  },
+  {
+    "id": 2871,
+    "heading": "Ultime sulla repressione",
+    "created": "2001-07-20 06:53:48",
+    "linked_file": null,
+    "hugo": "2871-ultime-sulla-repressione",
+    "date": "2001-07-20",
+    "time": "06:53:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "53",
+    "second": "48"
+  },
+  {
+    "id": 3569,
+    "heading": "poster2",
+    "created": "2001-07-20 06:55:28",
+    "linked_file": "2001/07/poster_g8b.pdf",
+    "hugo": "3569-poster2",
+    "date": "2001-07-20",
+    "time": "06:55:28",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "06",
+    "minute": "55",
+    "second": "28"
+  },
+  {
+    "id": 3577,
+    "heading": "black block e lacrimogeni",
+    "created": "2001-07-20 07:21:20",
+    "linked_file": null,
+    "hugo": "3577-black-block-e-lacrimogeni",
+    "date": "2001-07-20",
+    "time": "07:21:20",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "21",
+    "second": "20"
+  },
+  {
+    "id": 3565,
+    "heading": "\"venti\" di guerra (video)",
+    "created": "2001-07-20 07:31:43",
+    "linked_file": "2001/07/venti.rm",
+    "hugo": "3565-venti-di-guerra-video",
+    "date": "2001-07-20",
+    "time": "07:31:43",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "31",
+    "second": "43"
+  },
+  {
+    "id": 3574,
+    "heading": "map from 3.00 pm",
+    "created": "2001-07-20 07:32:08",
+    "linked_file": "2001/07/map300pm.jpg",
+    "hugo": "3574-map-from-300-pm",
+    "date": "2001-07-20",
+    "time": "07:32:08",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "32",
+    "second": "08"
+  },
+  {
+    "id": 2878,
+    "heading": "L'INVITO DEI DS ALLA MANIFESTAZIONE DEL 21",
+    "created": "2001-07-20 07:36:51",
+    "linked_file": null,
+    "hugo": "2878-linvito-dei-ds-alla-manifestazione-del-21",
+    "date": "2001-07-20",
+    "time": "07:36:51",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "36",
+    "second": "51"
+  },
+  {
+    "id": 3575,
+    "heading": "IMC Italy Video Channel",
+    "created": "2001-07-20 07:39:22",
+    "linked_file": "2001/07/imctvlqqvra.gif",
+    "hugo": "3575-imc-italy-video-channel",
+    "date": "2001-07-20",
+    "time": "07:39:22",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "39",
+    "second": "22"
+  },
+  {
+    "id": 3572,
+    "heading": "protester at fence",
+    "created": "2001-07-20 07:39:32",
+    "linked_file": "2001/07/interview.rm",
+    "hugo": "3572-protester-at-fence",
+    "date": "2001-07-20",
+    "time": "07:39:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "39",
+    "second": "32"
+  },
+  {
+    "id": 3586,
+    "heading": "Bombardamento dall'elicottero",
+    "created": "2001-07-20 07:43:44",
+    "linked_file": null,
+    "hugo": "3586-bombardamento-dallelicottero",
+    "date": "2001-07-20",
+    "time": "07:43:44",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "43",
+    "second": "44"
+  },
+  {
+    "id": 3579,
+    "heading": " In the summer of the protest",
+    "created": "2001-07-20 07:44:38",
+    "linked_file": null,
+    "hugo": "3579-in-the-summer-of-the-protest",
+    "date": "2001-07-20",
+    "time": "07:44:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "44",
+    "second": "38"
+  },
+  {
+    "id": 3405,
+    "heading": "Pink Silver March - Tactical Frivolity",
+    "created": "2001-07-20 07:57:05",
+    "linked_file": null,
+    "hugo": "3405-pink-silver-march-tactical-frivolity",
+    "date": "2001-07-20",
+    "time": "07:57:05",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "57",
+    "second": "05"
+  },
+  {
+    "id": 3535,
+    "heading": "IMC come organo di partito?",
+    "created": "2001-07-20 07:59:52",
+    "linked_file": null,
+    "hugo": "3535-imc-come-organo-di-partito",
+    "date": "2001-07-20",
+    "time": "07:59:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "07",
+    "minute": "59",
+    "second": "52"
+  },
+  {
+    "id": 3543,
+    "heading": "il cellulare è un'arma preziosa",
+    "created": "2001-07-20 08:12:29",
+    "linked_file": null,
+    "hugo": "3543-il-cellulare-e-unarma-preziosa",
+    "date": "2001-07-20",
+    "time": "08:12:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "12",
+    "second": "29"
+  },
+  {
+    "id": 3627,
+    "heading": "this is a revolution against capitalism",
+    "created": "2001-07-20 08:28:35",
+    "linked_file": null,
+    "hugo": "3627-this-is-a-revolution-against-capitalism",
+    "date": "2001-07-20",
+    "time": "08:28:35",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "28",
+    "second": "35"
+  },
+  {
+    "id": 3531,
+    "heading": "Non-violent action",
+    "created": "2001-07-20 08:30:48",
+    "linked_file": null,
+    "hugo": "3531-nonviolent-action",
+    "date": "2001-07-20",
+    "time": "08:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 3576,
+    "heading": "violata zona rossa",
+    "created": "2001-07-20 08:50:32",
+    "linked_file": null,
+    "hugo": "3576-violata-zona-rossa",
+    "date": "2001-07-20",
+    "time": "08:50:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "50",
+    "second": "32"
+  },
+  {
+    "id": 3643,
+    "heading": "From La Repubblica (sorry for the Altavista translation - no time)",
+    "created": "2001-07-20 08:51:25",
+    "linked_file": null,
+    "hugo": "3643-from-la-repubblica-sorry-for-the-altavista-translation-no-time",
+    "date": "2001-07-20",
+    "time": "08:51:25",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "51",
+    "second": "25"
+  },
+  {
+    "id": 3655,
+    "heading": "URGENTE BISOGNO DI AVVOCATI... II LAWYERS NEEDED...",
+    "created": "2001-07-20 08:54:32",
+    "linked_file": null,
+    "hugo": "3655-urgente-bisogno-di-avvocati-ii-lawyers-needed",
+    "date": "2001-07-20",
+    "time": "08:54:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "54",
+    "second": "32"
+  },
+  {
+    "id": 3640,
+    "heading": "cariche e pestaggi",
+    "created": "2001-07-20 08:58:36",
+    "linked_file": "2001/07/cariche_e_pestaggi.rm",
+    "hugo": "3640-cariche-e-pestaggi",
+    "date": "2001-07-20",
+    "time": "08:58:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "08",
+    "minute": "58",
+    "second": "36"
+  },
+  {
+    "id": 3668,
+    "heading": "G8: PROTESTE; CORTEO DISOBBEDIENTI, INCIDENTI A BRIGNOLE",
+    "created": "2001-07-20 09:09:21",
+    "linked_file": null,
+    "hugo": "3668-g8-proteste-corteo-disobbedienti-incidenti-a-brignole",
+    "date": "2001-07-20",
+    "time": "09:09:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "09",
+    "second": "21"
+  },
+  {
+    "id": 3639,
+    "heading": "Carabinieri disguised as anarchists in Genoa",
+    "created": "2001-07-20 09:29:36",
+    "linked_file": null,
+    "hugo": "3639-carabinieri-disguised-as-anarchists-in-genoa",
+    "date": "2001-07-20",
+    "time": "09:29:36",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "29",
+    "second": "36"
+  },
+  {
+    "id": 3564,
+    "heading": "genoa is burning",
+    "created": "2001-07-20 09:30:31",
+    "linked_file": "2001/07/genova7.jpg",
+    "hugo": "3564-genoa-is-burning",
+    "date": "2001-07-20",
+    "time": "09:30:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "30",
+    "second": "31"
+  },
+  {
+    "id": 3636,
+    "heading": "Carabinieri disguised as anarchists in Genoa",
+    "created": "2001-07-20 09:48:42",
+    "linked_file": null,
+    "hugo": "3636-carabinieri-disguised-as-anarchists-in-genoa",
+    "date": "2001-07-20",
+    "time": "09:48:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "48",
+    "second": "42"
+  },
+  {
+    "id": 3662,
+    "heading": "Web Cam Live",
+    "created": "2001-07-20 09:55:52",
+    "linked_file": null,
+    "hugo": "3662-web-cam-live",
+    "date": "2001-07-20",
+    "time": "09:55:52",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "55",
+    "second": "52"
+  },
+  {
+    "id": 3663,
+    "heading": "Comunicato 6 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 09:58:45",
+    "linked_file": null,
+    "hugo": "3663-comunicato-6-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "09:58:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "09",
+    "minute": "58",
+    "second": "45"
+  },
+  {
+    "id": 3661,
+    "heading": "arresti",
+    "created": "2001-07-20 10:02:28",
+    "linked_file": null,
+    "hugo": "3661-arresti",
+    "date": "2001-07-20",
+    "time": "10:02:28",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "02",
+    "second": "28"
+  },
+  {
+    "id": 3695,
+    "heading": "repubblica",
+    "created": "2001-07-20 10:05:27",
+    "linked_file": null,
+    "hugo": "3695-repubblica",
+    "date": "2001-07-20",
+    "time": "10:05:27",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "05",
+    "second": "27"
+  },
+  {
+    "id": 3329,
+    "heading": "Migrants demo picture",
+    "created": "2001-07-20 10:08:42",
+    "linked_file": "2001/07/greens1.jpg",
+    "hugo": "3329-migrants-demo-picture",
+    "date": "2001-07-20",
+    "time": "10:08:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "08",
+    "second": "42"
+  },
+  {
+    "id": 3716,
+    "heading": "Polizia brutality on Ya Basta",
+    "created": "2001-07-20 10:10:32",
+    "linked_file": "2001/07/polizia_brutality_on_ya_basta.rm",
+    "hugo": "3716-polizia-brutality-on-ya-basta",
+    "date": "2001-07-20",
+    "time": "10:10:32",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "10",
+    "second": "32"
+  },
+  {
+    "id": 3720,
+    "heading": "Demonstrant shot in head by police-bastards!!!!",
+    "created": "2001-07-20 10:12:12",
+    "linked_file": null,
+    "hugo": "3720-demonstrant-shot-in-head-by-policebastards",
+    "date": "2001-07-20",
+    "time": "10:12:12",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "12",
+    "second": "12"
+  },
+  {
+    "id": 3683,
+    "heading": "Agnoletto ha chiesto di abbandonare la piazza per evitare scontri piu' gravi",
+    "created": "2001-07-20 10:12:57",
+    "linked_file": null,
+    "hugo": "3683-agnoletto-ha-chiesto-di-abbandonare-la-piazza-per-evitare-scontri-piu-gravi",
+    "date": "2001-07-20",
+    "time": "10:12:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "12",
+    "second": "57"
+  },
+  {
+    "id": 3725,
+    "heading": "jesus cristh",
+    "created": "2001-07-20 10:16:47",
+    "linked_file": null,
+    "hugo": "3725-jesus-cristh",
+    "date": "2001-07-20",
+    "time": "10:16:47",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "16",
+    "second": "47"
+  },
+  {
+    "id": 3710,
+    "heading": "Latest News from Genova",
+    "created": "2001-07-20 10:20:45",
+    "linked_file": null,
+    "hugo": "3710-latest-news-from-genova",
+    "date": "2001-07-20",
+    "time": "10:20:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "20",
+    "second": "45"
+  },
+  {
+    "id": 3702,
+    "heading": "After Police Attack, Protestors Fight Back",
+    "created": "2001-07-20 10:27:46",
+    "linked_file": "2001/07/caribinierigk0fh4.mov",
+    "hugo": "3702-after-police-attack-protestors-fight-back",
+    "date": "2001-07-20",
+    "time": "10:27:46",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "27",
+    "second": "46"
+  },
+  {
+    "id": 3735,
+    "heading": "Ucciso un manifestante, un altro è ferito gravemente",
+    "created": "2001-07-20 10:27:50",
+    "linked_file": null,
+    "hugo": "3735-ucciso-un-manifestante-un-altro-e-ferito-gravemente",
+    "date": "2001-07-20",
+    "time": "10:27:50",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "27",
+    "second": "50"
+  },
+  {
+    "id": 3739,
+    "heading": "Reuters: Police Say Protester is Dead",
+    "created": "2001-07-20 10:33:02",
+    "linked_file": null,
+    "hugo": "3739-reuters-police-say-protester-is-dead",
+    "date": "2001-07-20",
+    "time": "10:33:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "33",
+    "second": "02"
+  },
+  {
+    "id": 3728,
+    "heading": "netstrike",
+    "created": "2001-07-20 10:33:39",
+    "linked_file": null,
+    "hugo": "3728-netstrike",
+    "date": "2001-07-20",
+    "time": "10:33:39",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "33",
+    "second": "39"
+  },
+  {
+    "id": 3744,
+    "heading": "Dimostrante morto, cordone polizia isola zona",
+    "created": "2001-07-20 10:35:30",
+    "linked_file": null,
+    "hugo": "3744-dimostrante-morto-cordone-polizia-isola-zona",
+    "date": "2001-07-20",
+    "time": "10:35:30",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "35",
+    "second": "30"
+  },
+  {
+    "id": 3727,
+    "heading": "Details about shots at Demonstrant",
+    "created": "2001-07-20 10:38:29",
+    "linked_file": null,
+    "hugo": "3727-details-about-shots-at-demonstrant",
+    "date": "2001-07-20",
+    "time": "10:38:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "38",
+    "second": "29"
+  },
+  {
+    "id": 3677,
+    "heading": "Further testimonies on fake blackblocsters in Genoa",
+    "created": "2001-07-20 10:50:02",
+    "linked_file": null,
+    "hugo": "3677-further-testimonies-on-fake-blackblocsters-in-genoa",
+    "date": "2001-07-20",
+    "time": "10:50:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "50",
+    "second": "02"
+  },
+  {
+    "id": 3755,
+    "heading": "tutti  liberi i 10 tedeschi che avevano occupato il consolato tedesco a lugano",
+    "created": "2001-07-20 10:50:35",
+    "linked_file": null,
+    "hugo": "3755-tutti-liberi-i-10-tedeschi-che-avevano-occupato-il-consolato-tedesco-a-lugano",
+    "date": "2001-07-20",
+    "time": "10:50:35",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "50",
+    "second": "35"
+  },
+  {
+    "id": 3621,
+    "heading": "Emilio Fede al TG4 delle 16",
+    "created": "2001-07-20 10:51:11",
+    "linked_file": null,
+    "hugo": "3621-emilio-fede-al-tg4-delle-16",
+    "date": "2001-07-20",
+    "time": "10:51:11",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "51",
+    "second": "11"
+  },
+  {
+    "id": 3154,
+    "heading": "Programma completo del 19, 20, 21",
+    "created": "2001-07-20 10:59:33",
+    "linked_file": null,
+    "hugo": "3154-programma-completo-del-19-20-21",
+    "date": "2001-07-20",
+    "time": "10:59:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "10",
+    "minute": "59",
+    "second": "33"
+  },
+  {
+    "id": 3745,
+    "heading": "Protestor shot dead",
+    "created": "2001-07-20 11:18:15",
+    "linked_file": null,
+    "hugo": "3745-protestor-shot-dead",
+    "date": "2001-07-20",
+    "time": "11:18:15",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "18",
+    "second": "15"
+  },
+  {
+    "id": 3787,
+    "heading": "rastrellamenti",
+    "created": "2001-07-20 11:28:54",
+    "linked_file": null,
+    "hugo": "3787-rastrellamenti",
+    "date": "2001-07-20",
+    "time": "11:28:54",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "28",
+    "second": "54"
+  },
+  {
+    "id": 3690,
+    "heading": "Genova: ragazzo in fin di vita",
+    "created": "2001-07-20 11:29:38",
+    "linked_file": null,
+    "hugo": "3690-genova-ragazzo-in-fin-di-vita",
+    "date": "2001-07-20",
+    "time": "11:29:38",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "29",
+    "second": "38"
+  },
+  {
+    "id": 3705,
+    "heading": "Reuters: Protester Shot in Head, Run Over",
+    "created": "2001-07-20 11:33:45",
+    "linked_file": null,
+    "hugo": "3705-reuters-protester-shot-in-head-run-over",
+    "date": "2001-07-20",
+    "time": "11:33:45",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "33",
+    "second": "45"
+  },
+  {
+    "id": 3578,
+    "heading": "Protest Pics",
+    "created": "2001-07-20 11:35:19",
+    "linked_file": "2001/07/genua_fr_popup_big_brand_r.jpg",
+    "hugo": "3578-protest-pics",
+    "date": "2001-07-20",
+    "time": "11:35:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "35",
+    "second": "19"
+  },
+  {
+    "id": 3681,
+    "heading": "The Party is Over in Genoa Today",
+    "created": "2001-07-20 11:52:06",
+    "linked_file": null,
+    "hugo": "3681-the-party-is-over-in-genoa-today",
+    "date": "2001-07-20",
+    "time": "11:52:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "11",
+    "minute": "52",
+    "second": "06"
+  },
+  {
+    "id": 3783,
+    "heading": "Comunicato 7 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 12:10:18",
+    "linked_file": null,
+    "hugo": "3783-comunicato-7-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "12:10:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "10",
+    "second": "18"
+  },
+  {
+    "id": 3797,
+    "heading": "Policebrutality against press. Police try to prevent free coverage.",
+    "created": "2001-07-20 12:13:42",
+    "linked_file": null,
+    "hugo": "3797-policebrutality-against-press-police-try-to-prevent-free-coverage",
+    "date": "2001-07-20",
+    "time": "12:13:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "13",
+    "second": "42"
+  },
+  {
+    "id": 3736,
+    "heading": "Demonstrant Dead!!!!!!!!!!!!!!!",
+    "created": "2001-07-20 12:19:56",
+    "linked_file": null,
+    "hugo": "3736-demonstrant-dead",
+    "date": "2001-07-20",
+    "time": "12:19:56",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "19",
+    "second": "56"
+  },
+  {
+    "id": 3761,
+    "heading": "IN VIEW OF THE SITUATION IN GENOVA: STRENGTHENING THE UNITED NATIONS ASSEMBLY",
+    "created": "2001-07-20 12:21:33",
+    "linked_file": null,
+    "hugo": "3761-in-view-of-the-situation-in-genova-strengthening-the-united-nations-assembly",
+    "date": "2001-07-20",
+    "time": "12:21:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "21",
+    "second": "33"
+  },
+  {
+    "id": 3769,
+    "heading": "we support our fighters / sosteniamo i nostri combattenti",
+    "created": "2001-07-20 12:41:48",
+    "linked_file": null,
+    "hugo": "3769-we-support-our-fighters-sosteniamo-i-nostri-combattenti",
+    "date": "2001-07-20",
+    "time": "12:41:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "41",
+    "second": "48"
+  },
+  {
+    "id": 3832,
+    "heading": "Morto a genova ragazzo",
+    "created": "2001-07-20 12:47:42",
+    "linked_file": null,
+    "hugo": "3832-morto-a-genova-ragazzo",
+    "date": "2001-07-20",
+    "time": "12:47:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "47",
+    "second": "42"
+  },
+  {
+    "id": 3839,
+    "heading": "support demostration in Buenos Aires",
+    "created": "2001-07-20 12:49:16",
+    "linked_file": null,
+    "hugo": "3839-support-demostration-in-buenos-aires",
+    "date": "2001-07-20",
+    "time": "12:49:16",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "49",
+    "second": "16"
+  },
+  {
+    "id": 3873,
+    "heading": "Tear Gas Buster",
+    "created": "2001-07-20 12:58:56",
+    "linked_file": null,
+    "hugo": "3873-tear-gas-buster",
+    "date": "2001-07-20",
+    "time": "12:58:56",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "58",
+    "second": "56"
+  },
+  {
+    "id": 3746,
+    "heading": "una vetrina non vale quanto una vita !!!!!!",
+    "created": "2001-07-20 12:59:33",
+    "linked_file": null,
+    "hugo": "3746-una-vetrina-non-vale-quanto-una-vita-",
+    "date": "2001-07-20",
+    "time": "12:59:33",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "12",
+    "minute": "59",
+    "second": "33"
+  },
+  {
+    "id": 3886,
+    "heading": "act of support",
+    "created": "2001-07-20 13:05:08",
+    "linked_file": null,
+    "hugo": "3886-act-of-support",
+    "date": "2001-07-20",
+    "time": "13:05:08",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "05",
+    "second": "08"
+  },
+  {
+    "id": 3664,
+    "heading": "riots in genua",
+    "created": "2001-07-20 13:06:21",
+    "linked_file": "2001/07/demo.jpg",
+    "hugo": "3664-riots-in-genua",
+    "date": "2001-07-20",
+    "time": "13:06:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "06",
+    "second": "21"
+  },
+  {
+    "id": 3891,
+    "heading": "Ya Basta march attacked by Carabinieri",
+    "created": "2001-07-20 13:16:50",
+    "linked_file": "2001/07/yabastaattack.jpg",
+    "hugo": "3891-ya-basta-march-attacked-by-carabinieri",
+    "date": "2001-07-20",
+    "time": "13:16:50",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "16",
+    "second": "50"
+  },
+  {
+    "id": 3892,
+    "heading": "Carabinieri criticised",
+    "created": "2001-07-20 13:22:57",
+    "linked_file": "2001/07/copcar.jpg",
+    "hugo": "3892-carabinieri-criticised",
+    "date": "2001-07-20",
+    "time": "13:22:57",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "22",
+    "second": "57"
+  },
+  {
+    "id": 3905,
+    "heading": "Comunicato 8 - Anarchici contro il G8 - Venerdì 20/07/2001",
+    "created": "2001-07-20 13:33:26",
+    "linked_file": null,
+    "hugo": "3905-comunicato-8-anarchici-contro-il-g8-venerdi-20072001",
+    "date": "2001-07-20",
+    "time": "13:33:26",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "33",
+    "second": "26"
+  },
+  {
+    "id": 3811,
+    "heading": "austrian tv announced second death",
+    "created": "2001-07-20 13:49:03",
+    "linked_file": null,
+    "hugo": "3811-austrian-tv-announced-second-death",
+    "date": "2001-07-20",
+    "time": "13:49:03",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "13",
+    "minute": "49",
+    "second": "03"
+  },
+  {
+    "id": 3932,
+    "heading": "Police advance, stepping over the dead body",
+    "created": "2001-07-20 14:06:48",
+    "linked_file": "2001/07/afterkilling.jpg.jpg",
+    "hugo": "3932-police-advance-stepping-over-the-dead-body",
+    "date": "2001-07-20",
+    "time": "14:06:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "14",
+    "minute": "06",
+    "second": "48"
+  },
+  {
+    "id": 3730,
+    "heading": "Uomini contro uomini",
+    "created": "2001-07-20 14:21:37",
+    "linked_file": "2001/07/1032759.jpg",
+    "hugo": "3730-uomini-contro-uomini",
+    "date": "2001-07-20",
+    "time": "14:21:37",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "14",
+    "minute": "21",
+    "second": "37"
+  },
+  {
+    "id": 3851,
+    "heading": "il tipo a cui viene punatat la pistola è quello morto!!!!",
+    "created": "2001-07-20 14:44:09",
+    "linked_file": null,
+    "hugo": "3851-il-tipo-a-cui-viene-punatat-la-pistola-e-quello-morto",
+    "date": "2001-07-20",
+    "time": "14:44:09",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "14",
+    "minute": "44",
+    "second": "09"
+  },
+  {
+    "id": 3899,
+    "heading": "Protester shot in self-defense by Italian Police Forces",
+    "created": "2001-07-20 15:05:28",
+    "linked_file": null,
+    "hugo": "3899-protester-shot-in-selfdefense-by-italian-police-forces",
+    "date": "2001-07-20",
+    "time": "15:05:28",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "05",
+    "second": "28"
+  },
+  {
+    "id": 3988,
+    "heading": "Mai +",
+    "created": "2001-07-20 15:11:29",
+    "linked_file": null,
+    "hugo": "3988-mai-+",
+    "date": "2001-07-20",
+    "time": "15:11:29",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "11",
+    "second": "29"
+  },
+  {
+    "id": 3762,
+    "heading": "polizia ferisce pacifisti",
+    "created": "2001-07-20 15:23:17",
+    "linked_file": "2001/07/brutaler_polizeiuebergriff.rm",
+    "hugo": "3762-polizia-ferisce-pacifisti",
+    "date": "2001-07-20",
+    "time": "15:23:17",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "23",
+    "second": "17"
+  },
+  {
+    "id": 4018,
+    "heading": "death",
+    "created": "2001-07-20 15:41:02",
+    "linked_file": "2001/07/manifestante1p.jpg",
+    "hugo": "4018-death",
+    "date": "2001-07-20",
+    "time": "15:41:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "41",
+    "second": "02"
+  },
+  {
+    "id": 3766,
+    "heading": "Violence is good",
+    "created": "2001-07-20 15:42:31",
+    "linked_file": null,
+    "hugo": "3766-violence-is-good",
+    "date": "2001-07-20",
+    "time": "15:42:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "42",
+    "second": "31"
+  },
+  {
+    "id": 3291,
+    "heading": "150-200 greeks sent home / 150-200 greci a casa!",
+    "created": "2001-07-20 15:46:55",
+    "linked_file": null,
+    "hugo": "3291-150200-greeks-sent-home-150200-greci-a-casa",
+    "date": "2001-07-20",
+    "time": "15:46:55",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "46",
+    "second": "55"
+  },
+  {
+    "id": 4028,
+    "heading": "Genova, 20.07.01: In the morning at the red zone",
+    "created": "2001-07-20 15:46:58",
+    "linked_file": "2001/07/redzone_02.jpg",
+    "hugo": "4028-genova-200701-in-the-morning-at-the-red-zone",
+    "date": "2001-07-20",
+    "time": "15:46:58",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "46",
+    "second": "58"
+  },
+  {
+    "id": 4033,
+    "heading": "Genova 20.07.01: Pink March [picture report 01]",
+    "created": "2001-07-20 15:49:20",
+    "linked_file": "2001/07/pink_04.jpg",
+    "hugo": "4033-genova-200701-pink-march-picture-report-01",
+    "date": "2001-07-20",
+    "time": "15:49:20",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "49",
+    "second": "20"
+  },
+  {
+    "id": 4043,
+    "heading": "PRESIDIO A PONTE GARIBALDI A ROMA - ORE 23 DEL 20 LUGLIO",
+    "created": "2001-07-20 15:57:19",
+    "linked_file": null,
+    "hugo": "4043-presidio-a-ponte-garibaldi-a-roma-ore-23-del-20-luglio",
+    "date": "2001-07-20",
+    "time": "15:57:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "57",
+    "second": "19"
+  },
+  {
+    "id": 4052,
+    "heading": "Genova 20.07.01: Pink March [picture report 02]",
+    "created": "2001-07-20 15:59:14",
+    "linked_file": "2001/07/pink_08.jpg",
+    "hugo": "4052-genova-200701-pink-march-picture-report-02",
+    "date": "2001-07-20",
+    "time": "15:59:14",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "15",
+    "minute": "59",
+    "second": "14"
+  },
+  {
+    "id": 4062,
+    "heading": "Tutte Bianchi march and around[picture report 01]",
+    "created": "2001-07-20 16:19:51",
+    "linked_file": "2001/07/tutii_04.jpg",
+    "hugo": "4062-tutte-bianchi-march-and-aroundpicture-report-01",
+    "date": "2001-07-20",
+    "time": "16:19:51",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "19",
+    "second": "51"
+  },
+  {
+    "id": 4077,
+    "heading": "Tutte Bianchi march and around[picture report 02]",
+    "created": "2001-07-20 16:32:31",
+    "linked_file": "2001/07/tutii_07.jpg",
+    "hugo": "4077-tutte-bianchi-march-and-aroundpicture-report-02",
+    "date": "2001-07-20",
+    "time": "16:32:31",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "32",
+    "second": "31"
+  },
+  {
+    "id": 4085,
+    "heading": "Tutte Bianchi march and around[picture report 03]",
+    "created": "2001-07-20 16:38:21",
+    "linked_file": "2001/07/tutii_11.jpg",
+    "hugo": "4085-tutte-bianchi-march-and-aroundpicture-report-03",
+    "date": "2001-07-20",
+    "time": "16:38:21",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "38",
+    "second": "21"
+  },
+  {
+    "id": 3759,
+    "heading": "we_are_winning",
+    "created": "2001-07-20 16:40:48",
+    "linked_file": "2001/07/we_are_winning.rm",
+    "hugo": "3759-wearewinning",
+    "date": "2001-07-20",
+    "time": "16:40:48",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "40",
+    "second": "48"
+  },
+  {
+    "id": 4013,
+    "heading": "Death in Genoa: testimony of the photographer [audio]",
+    "created": "2001-07-20 16:43:22",
+    "linked_file": "2001/07/devin.rm",
+    "hugo": "4013-death-in-genoa-testimony-of-the-photographer-audio",
+    "date": "2001-07-20",
+    "time": "16:43:22",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "43",
+    "second": "22"
+  },
+  {
+    "id": 4093,
+    "heading": "Berlin: Demonstration at italian embassy",
+    "created": "2001-07-20 16:53:18",
+    "linked_file": null,
+    "hugo": "4093-berlin-demonstration-at-italian-embassy",
+    "date": "2001-07-20",
+    "time": "16:53:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "53",
+    "second": "18"
+  },
+  {
+    "id": 4100,
+    "heading": "Tutte Bianchi march and around[picture report 04]",
+    "created": "2001-07-20 16:55:06",
+    "linked_file": "2001/07/tutii_12.jpg",
+    "hugo": "4100-tutte-bianchi-march-and-aroundpicture-report-04",
+    "date": "2001-07-20",
+    "time": "16:55:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "55",
+    "second": "06"
+  },
+  {
+    "id": 4078,
+    "heading": "genova webcams are all under maintenance?!?!?!?!?",
+    "created": "2001-07-20 16:55:59",
+    "linked_file": null,
+    "hugo": "4078-genova-webcams-are-all-under-maintenance",
+    "date": "2001-07-20",
+    "time": "16:55:59",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "16",
+    "minute": "55",
+    "second": "59"
+  },
+  {
+    "id": 4106,
+    "heading": "pressconference of eyewitnesses of death shooting",
+    "created": "2001-07-20 17:02:02",
+    "linked_file": null,
+    "hugo": "4106-pressconference-of-eyewitnesses-of-death-shooting",
+    "date": "2001-07-20",
+    "time": "17:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "17",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 3802,
+    "heading": "Police car running over a corpse",
+    "created": "2001-07-20 17:14:26",
+    "linked_file": "2001/07/macchina2.jpg",
+    "hugo": "3802-police-car-running-over-a-corpse",
+    "date": "2001-07-20",
+    "time": "17:14:26",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "17",
+    "minute": "14",
+    "second": "26"
+  },
+  {
+    "id": 4115,
+    "heading": "Solidarity Protests",
+    "created": "2001-07-20 17:31:19",
+    "linked_file": null,
+    "hugo": "4115-solidarity-protests",
+    "date": "2001-07-20",
+    "time": "17:31:19",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "17",
+    "minute": "31",
+    "second": "19"
+  },
+  {
+    "id": 4012,
+    "heading": "the CNN spin - video clip - disinfo101",
+    "created": "2001-07-20 18:08:07",
+    "linked_file": null,
+    "hugo": "4012-the-cnn-spin-video-clip-disinfo101",
+    "date": "2001-07-20",
+    "time": "18:08:07",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "08",
+    "second": "07"
+  },
+  {
+    "id": 4169,
+    "heading": "it, ca, fr, en ) genoa multilingual reports check here regularly",
+    "created": "2001-07-20 18:23:16",
+    "linked_file": null,
+    "hugo": "4169-it-ca-fr-en-genoa-multilingual-reports-check-here-regularly",
+    "date": "2001-07-20",
+    "time": "18:23:16",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "23",
+    "second": "16"
+  },
+  {
+    "id": 4163,
+    "heading": "murder sequence 2",
+    "created": "2001-07-20 18:28:42",
+    "linked_file": null,
+    "hugo": "4163-murder-sequence-2",
+    "date": "2001-07-20",
+    "time": "18:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 4181,
+    "heading": "G8: incidenti in piazza Manin",
+    "created": "2001-07-20 18:31:10",
+    "linked_file": null,
+    "hugo": "4181-g8-incidenti-in-piazza-manin",
+    "date": "2001-07-20",
+    "time": "18:31:10",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "31",
+    "second": "10"
+  },
+  {
+    "id": 4182,
+    "heading": "en,ca,it,fr) anarchist newswire multilijngual genoa stories",
+    "created": "2001-07-20 18:31:24",
+    "linked_file": null,
+    "hugo": "4182-encaitfr-anarchist-newswire-multilijngual-genoa-stories",
+    "date": "2001-07-20",
+    "time": "18:31:24",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "31",
+    "second": "24"
+  },
+  {
+    "id": 4020,
+    "heading": "Bus of autrian students union beein beeing blocked at german border",
+    "created": "2001-07-20 18:34:49",
+    "linked_file": null,
+    "hugo": "4020-bus-of-autrian-students-union-beein-beeing-blocked-at-german-border",
+    "date": "2001-07-20",
+    "time": "18:34:49",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "34",
+    "second": "49"
+  },
+  {
+    "id": 4116,
+    "heading": "Swedish TV: Cops kicked protester",
+    "created": "2001-07-20 18:44:20",
+    "linked_file": null,
+    "hugo": "4116-swedish-tv-cops-kicked-protester",
+    "date": "2001-07-20",
+    "time": "18:44:20",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "18",
+    "minute": "44",
+    "second": "20"
+  },
+  {
+    "id": 4124,
+    "heading": "La legittima difesa è una bugia!!",
+    "created": "2001-07-20 19:17:49",
+    "linked_file": null,
+    "hugo": "4124-la-legittima-difesa-e-una-bugia",
+    "date": "2001-07-20",
+    "time": "19:17:49",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "19",
+    "minute": "17",
+    "second": "49"
+  },
+  {
+    "id": 4210,
+    "heading": "PROTESTA POR LA BRUTAL REPRESIÓN EN GÉNOVA manifestaciones en Madrid y Barcelona",
+    "created": "2001-07-20 19:25:46",
+    "linked_file": null,
+    "hugo": "4210-protesta-por-la-brutal-represi-n-en-g-nova-manifestaci-nes-en-madrid-y-bacelona",
+    "date": "2001-07-20",
+    "time": "19:25:46",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "19",
+    "minute": "25",
+    "second": "46"
+  },
+  {
+    "id": 4198,
+    "heading": "Solidarity: Toronto, Canada",
+    "created": "2001-07-20 19:50:43",
+    "linked_file": null,
+    "hugo": "4198-solidarity-toronto-canada",
+    "date": "2001-07-20",
+    "time": "19:50:43",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "19",
+    "minute": "50",
+    "second": "43"
+  },
+  {
+    "id": 4231,
+    "heading": "Presidio e corteo di solidarita a Colonia (Germania)",
+    "created": "2001-07-20 20:06:06",
+    "linked_file": null,
+    "hugo": "4231-presidio-e-corteo-di-solidarita-a-colonia-germania",
+    "date": "2001-07-20",
+    "time": "20:06:06",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "20",
+    "minute": "06",
+    "second": "06"
+  },
+  {
+    "id": 4234,
+    "heading": "Manifestacion en Argentina en contra de la represion en Genova",
+    "created": "2001-07-20 20:16:18",
+    "linked_file": null,
+    "hugo": "4234-manifestacion-en-argentina-en-contra-de-la-represion-en-genova",
+    "date": "2001-07-20",
+    "time": "20:16:18",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "20",
+    "minute": "16",
+    "second": "18"
+  },
+  {
+    "id": 4179,
+    "heading": "soon we'll have the name...",
+    "created": "2001-07-20 20:31:40",
+    "linked_file": null,
+    "hugo": "4179-soon-well-have-the-name",
+    "date": "2001-07-20",
+    "time": "20:31:40",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "20",
+    "minute": "31",
+    "second": "40"
+  },
+  {
+    "id": 4257,
+    "heading": "THE VOICE OF THE PEOPLE MUST BE HEARD NOW",
+    "created": "2001-07-20 21:38:04",
+    "linked_file": "2001/07/algiersprotestpijf6n.jpg",
+    "hugo": "4257-the-voice-of-the-people-must-be-heard-now",
+    "date": "2001-07-20",
+    "time": "21:38:04",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "21",
+    "minute": "38",
+    "second": "04"
+  },
+  {
+    "id": 4165,
+    "heading": "en) pictures, articles / pictures from anarchist and corporate press",
+    "created": "2001-07-20 22:51:04",
+    "linked_file": null,
+    "hugo": "4165-en-pictures-articles-pictures-from-anarchist-and-corporate-press",
+    "date": "2001-07-20",
+    "time": "22:51:04",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "22",
+    "minute": "51",
+    "second": "04"
+  },
+  {
+    "id": 4312,
+    "heading": "solidarity from melbourne activists",
+    "created": "2001-07-20 23:33:39",
+    "linked_file": null,
+    "hugo": "4312-solidarity-from-melbourne-activists",
+    "date": "2001-07-20",
+    "time": "23:33:39",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "23",
+    "minute": "33",
+    "second": "39"
+  },
+  {
+    "id": 3264,
+    "heading": "czech/austrian bus held on austrian border for 3 hours",
+    "created": "2001-07-20 23:54:03",
+    "linked_file": null,
+    "hugo": "3264-czechaustrian-bus-held-on-austrian-border-for-3-hours",
+    "date": "2001-07-20",
+    "time": "23:54:03",
+    "year": "2001",
+    "month": "07",
+    "day": "20",
+    "hour": "23",
+    "minute": "54",
+    "second": "03"
+  },
+  {
+    "id": 4203,
+    "heading": "how bad means can spoil good reasons",
+    "created": "2001-07-21 00:06:55",
+    "linked_file": null,
+    "hugo": "4203-how-bad-means-can-spoil-good-reasons",
+    "date": "2001-07-21",
+    "time": "00:06:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "00",
+    "minute": "06",
+    "second": "55"
+  },
+  {
+    "id": 4325,
+    "heading": "600 march against G8 in Finland",
+    "created": "2001-07-21 00:19:36",
+    "linked_file": null,
+    "hugo": "4325-600-march-against-g8-in-finland",
+    "date": "2001-07-21",
+    "time": "00:19:36",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "00",
+    "minute": "19",
+    "second": "36"
+  },
+  {
+    "id": 4321,
+    "heading": "Condolences. Slay the beast.",
+    "created": "2001-07-21 01:17:06",
+    "linked_file": null,
+    "hugo": "4321-condolences-slay-the-beast",
+    "date": "2001-07-21",
+    "time": "01:17:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "17",
+    "second": "06"
+  },
+  {
+    "id": 4368,
+    "heading": "life and death",
+    "created": "2001-07-21 01:33:56",
+    "linked_file": "2001/07/dscf0091.jpg",
+    "hugo": "4368-life-and-death",
+    "date": "2001-07-21",
+    "time": "01:33:56",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "33",
+    "second": "56"
+  },
+  {
+    "id": 4314,
+    "heading": "italy imc to be raided ?",
+    "created": "2001-07-21 01:40:50",
+    "linked_file": null,
+    "hugo": "4314-italy-imc-to-be-raided-",
+    "date": "2001-07-21",
+    "time": "01:40:50",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "40",
+    "second": "50"
+  },
+  {
+    "id": 4379,
+    "heading": "corteo disobbedienti ore 17 e 30 circa",
+    "created": "2001-07-21 01:45:32",
+    "linked_file": "2001/07/corteo_disobbedienti.rm",
+    "hugo": "4379-corteo-disobbedienti-ore-17-e-30-circa",
+    "date": "2001-07-21",
+    "time": "01:45:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "45",
+    "second": "32"
+  },
+  {
+    "id": 3937,
+    "heading": "lo sparo",
+    "created": "2001-07-21 01:55:23",
+    "linked_file": "2001/07/5_p.jpg",
+    "hugo": "3937-lo-sparo",
+    "date": "2001-07-21",
+    "time": "01:55:23",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "01",
+    "minute": "55",
+    "second": "23"
+  },
+  {
+    "id": 4346,
+    "heading": "Globalize Revolution!",
+    "created": "2001-07-21 02:06:26",
+    "linked_file": null,
+    "hugo": "4346-globalize-revolution",
+    "date": "2001-07-21",
+    "time": "02:06:26",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "06",
+    "second": "26"
+  },
+  {
+    "id": 3868,
+    "heading": "YOU ARE KILLERS WORLD LEADERS",
+    "created": "2001-07-21 02:08:07",
+    "linked_file": "2001/07/eubush.jpg",
+    "hugo": "3868-you-are-killers-world-leaders",
+    "date": "2001-07-21",
+    "time": "02:08:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "08",
+    "second": "07"
+  },
+  {
+    "id": 4406,
+    "heading": "more",
+    "created": "2001-07-21 02:13:39",
+    "linked_file": "2001/07/dscf0132.jpg",
+    "hugo": "4406-more",
+    "date": "2001-07-21",
+    "time": "02:13:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "13",
+    "second": "39"
+  },
+  {
+    "id": 4275,
+    "heading": "reuters: Bush to promote biotechnology at Genoa G8",
+    "created": "2001-07-21 02:15:28",
+    "linked_file": null,
+    "hugo": "4275-reuters-bush-to-promote-biotechnology-at-genoa-g8",
+    "date": "2001-07-21",
+    "time": "02:15:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "15",
+    "second": "28"
+  },
+  {
+    "id": 4399,
+    "heading": "G8 - demonstration in Finland (friday)",
+    "created": "2001-07-21 02:50:14",
+    "linked_file": "2001/07/bandis.jpg",
+    "hugo": "4399-g8-demonstration-in-finland-friday",
+    "date": "2001-07-21",
+    "time": "02:50:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "50",
+    "second": "14"
+  },
+  {
+    "id": 4267,
+    "heading": "Globalization and Alternatives FAQ",
+    "created": "2001-07-21 02:52:49",
+    "linked_file": null,
+    "hugo": "4267-globalization-and-alternatives-faq",
+    "date": "2001-07-21",
+    "time": "02:52:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "52",
+    "second": "49"
+  },
+  {
+    "id": 4338,
+    "heading": "When People are Angry they Fight",
+    "created": "2001-07-21 02:54:31",
+    "linked_file": null,
+    "hugo": "4338-when-people-are-angry-they-fight",
+    "date": "2001-07-21",
+    "time": "02:54:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "54",
+    "second": "31"
+  },
+  {
+    "id": 4436,
+    "heading": "Berkeley Solidarity Demo Against G8",
+    "created": "2001-07-21 02:55:18",
+    "linked_file": "2001/07/sfg8solidarity.jpg",
+    "hugo": "4436-berkeley-solidarity-demo-against-g8",
+    "date": "2001-07-21",
+    "time": "02:55:18",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "02",
+    "minute": "55",
+    "second": "18"
+  },
+  {
+    "id": 4330,
+    "heading": "voilence makes u smaller",
+    "created": "2001-07-21 03:07:22",
+    "linked_file": null,
+    "hugo": "4330-voilence-makes-u-smaller",
+    "date": "2001-07-21",
+    "time": "03:07:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "07",
+    "second": "22"
+  },
+  {
+    "id": 4170,
+    "heading": "1 more death in the Anti-capitalist struggle",
+    "created": "2001-07-21 03:25:44",
+    "linked_file": "2001/07/hxnlni.txt",
+    "hugo": "4170-1-more-death-in-the-anticapitalist-struggle",
+    "date": "2001-07-21",
+    "time": "03:25:44",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "25",
+    "second": "44"
+  },
+  {
+    "id": 4089,
+    "heading": "We have the license plate of cop killer",
+    "created": "2001-07-21 03:32:43",
+    "linked_file": null,
+    "hugo": "4089-we-have-the-license-plate-of-cop-killer",
+    "date": "2001-07-21",
+    "time": "03:32:43",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "32",
+    "second": "43"
+  },
+  {
+    "id": 4444,
+    "heading": "front page suggested translation",
+    "created": "2001-07-21 03:43:00",
+    "linked_file": null,
+    "hugo": "4444-front-page-suggested-translation",
+    "date": "2001-07-21",
+    "time": "03:43:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "43",
+    "second": "00"
+  },
+  {
+    "id": 4495,
+    "heading": "una storia vera",
+    "created": "2001-07-21 03:51:16",
+    "linked_file": "2001/07/accertamenticsgfjx.doc",
+    "hugo": "4495-una-storia-vera",
+    "date": "2001-07-21",
+    "time": "03:51:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "51",
+    "second": "16"
+  },
+  {
+    "id": 4503,
+    "heading": "la giustizia",
+    "created": "2001-07-21 03:57:39",
+    "linked_file": null,
+    "hugo": "4503-la-giustizia",
+    "date": "2001-07-21",
+    "time": "03:57:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "03",
+    "minute": "57",
+    "second": "39"
+  },
+  {
+    "id": 4508,
+    "heading": "11:48",
+    "created": "2001-07-21 04:00:59",
+    "linked_file": null,
+    "hugo": "4508-1148",
+    "date": "2001-07-21",
+    "time": "04:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 4509,
+    "heading": "IERI VEN 20 CONCETRAMENTO a ROMA",
+    "created": "2001-07-21 04:02:34",
+    "linked_file": "2001/07/conc.doc",
+    "hugo": "4509-ieri-ven-20-concetramento-a-roma",
+    "date": "2001-07-21",
+    "time": "04:02:34",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "02",
+    "second": "34"
+  },
+  {
+    "id": 4355,
+    "heading": "G-8 Summit NOT CANCELLED",
+    "created": "2001-07-21 04:04:29",
+    "linked_file": null,
+    "hugo": "4355-g8-summit-not-cancelled",
+    "date": "2001-07-21",
+    "time": "04:04:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "04",
+    "second": "29"
+  },
+  {
+    "id": 3938,
+    "heading": "I Carabinieri vanno sciolto",
+    "created": "2001-07-21 04:07:27",
+    "linked_file": null,
+    "hugo": "3938-i-carabinieri-vanno-sciolto",
+    "date": "2001-07-21",
+    "time": "04:07:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "07",
+    "second": "27"
+  },
+  {
+    "id": 3554,
+    "heading": "spara",
+    "created": "2001-07-21 04:09:58",
+    "linked_file": "2001/07/untitled.jpg",
+    "hugo": "3554-spara",
+    "date": "2001-07-21",
+    "time": "04:09:58",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "09",
+    "second": "58"
+  },
+  {
+    "id": 4446,
+    "heading": "Ok no violence but organise to act if under attack from the police.",
+    "created": "2001-07-21 04:13:31",
+    "linked_file": null,
+    "hugo": "4446-ok-no-violence-but-organise-to-act-if-under-attack-from-the-police",
+    "date": "2001-07-21",
+    "time": "04:13:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "13",
+    "second": "31"
+  },
+  {
+    "id": 4527,
+    "heading": "message of solidarity from Melbourne, Australia",
+    "created": "2001-07-21 04:17:48",
+    "linked_file": null,
+    "hugo": "4527-message-of-solidarity-from-melbourne-australia",
+    "date": "2001-07-21",
+    "time": "04:17:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "17",
+    "second": "48"
+  },
+  {
+    "id": 4023,
+    "heading": "austrian bus with activists stopped and controlled in germany",
+    "created": "2001-07-21 04:29:37",
+    "linked_file": null,
+    "hugo": "4023-austrian-bus-with-activists-stopped-and-controlled-in-germany",
+    "date": "2001-07-21",
+    "time": "04:29:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "29",
+    "second": "37"
+  },
+  {
+    "id": 4247,
+    "heading": "blcack_bloch",
+    "created": "2001-07-21 04:29:53",
+    "linked_file": "2001/07/blackbloc.jpg",
+    "hugo": "4247-blcackbloch",
+    "date": "2001-07-21",
+    "time": "04:29:53",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "29",
+    "second": "53"
+  },
+  {
+    "id": 4484,
+    "heading": "Pacifism as Pathology...Viva el blogue negro!! Viva Tute Bianche!!",
+    "created": "2001-07-21 04:45:41",
+    "linked_file": null,
+    "hugo": "4484-pacifism-as-pathologyviva-el-blogue-negro-viva-tute-bianche",
+    "date": "2001-07-21",
+    "time": "04:45:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "45",
+    "second": "41"
+  },
+  {
+    "id": 4561,
+    "heading": "Roma: protesta contro l'assassinio a Genova",
+    "created": "2001-07-21 04:46:28",
+    "linked_file": null,
+    "hugo": "4561-roma-protesta-contro-lassassinio-a-genova",
+    "date": "2001-07-21",
+    "time": "04:46:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "46",
+    "second": "28"
+  },
+  {
+    "id": 3997,
+    "heading": "Why him?",
+    "created": "2001-07-21 04:46:43",
+    "linked_file": null,
+    "hugo": "3997-why-him",
+    "date": "2001-07-21",
+    "time": "04:46:43",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "46",
+    "second": "43"
+  },
+  {
+    "id": 4535,
+    "heading": "Bus of austrian Students Union now held at Italian Border",
+    "created": "2001-07-21 04:59:03",
+    "linked_file": null,
+    "hugo": "4535-bus-of-austrian-students-union-now-held-at-italian-border",
+    "date": "2001-07-21",
+    "time": "04:59:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "04",
+    "minute": "59",
+    "second": "03"
+  },
+  {
+    "id": 4578,
+    "heading": "Netstrike",
+    "created": "2001-07-21 05:34:48",
+    "linked_file": null,
+    "hugo": "4578-netstrike",
+    "date": "2001-07-21",
+    "time": "05:34:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "34",
+    "second": "48"
+  },
+  {
+    "id": 4524,
+    "heading": "austrian bus stopped at brenner now for 5 hours and people interrogated",
+    "created": "2001-07-21 05:40:54",
+    "linked_file": null,
+    "hugo": "4524-austrian-bus-stopped-at-brenner-now-for-5-hours-and-people-interrogated",
+    "date": "2001-07-21",
+    "time": "05:40:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "40",
+    "second": "54"
+  },
+  {
+    "id": 4572,
+    "heading": "demonstrations in germany last night",
+    "created": "2001-07-21 05:45:23",
+    "linked_file": null,
+    "hugo": "4572-demonstrations-in-germany-last-night",
+    "date": "2001-07-21",
+    "time": "05:45:23",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "45",
+    "second": "23"
+  },
+  {
+    "id": 4558,
+    "heading": "Roma: protesta contro l'assassinio a Genova",
+    "created": "2001-07-21 05:48:28",
+    "linked_file": null,
+    "hugo": "4558-roma-protesta-contro-lassassinio-a-genova",
+    "date": "2001-07-21",
+    "time": "05:48:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "48",
+    "second": "28"
+  },
+  {
+    "id": 4597,
+    "heading": "Corporate media watch. IMC inside the red zone!",
+    "created": "2001-07-21 05:52:48",
+    "linked_file": null,
+    "hugo": "4597-corporate-media-watch-imc-inside-the-red-zone",
+    "date": "2001-07-21",
+    "time": "05:52:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "52",
+    "second": "48"
+  },
+  {
+    "id": 4574,
+    "heading": "pena di morte",
+    "created": "2001-07-21 05:55:44",
+    "linked_file": "2001/07/assassini2.jpg",
+    "hugo": "4574-pena-di-morte",
+    "date": "2001-07-21",
+    "time": "05:55:44",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "05",
+    "minute": "55",
+    "second": "44"
+  },
+  {
+    "id": 4465,
+    "heading": "ANARCHISTS? (TRASLATION)",
+    "created": "2001-07-21 06:05:27",
+    "linked_file": null,
+    "hugo": "4465-anarchists-traslation",
+    "date": "2001-07-21",
+    "time": "06:05:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "05",
+    "second": "27"
+  },
+  {
+    "id": 4608,
+    "heading": "The Divide and Rule Tactics  of Mr Greed",
+    "created": "2001-07-21 06:13:35",
+    "linked_file": null,
+    "hugo": "4608-the-divide-and-rule-tactics-of-mr-greed",
+    "date": "2001-07-21",
+    "time": "06:13:35",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "13",
+    "second": "35"
+  },
+  {
+    "id": 4613,
+    "heading": "re: how bad means can spoil good reasons",
+    "created": "2001-07-21 06:18:09",
+    "linked_file": null,
+    "hugo": "4613-re-how-bad-means-can-spoil-good-reasons",
+    "date": "2001-07-21",
+    "time": "06:18:09",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "18",
+    "second": "09"
+  },
+  {
+    "id": 4633,
+    "heading": "presidio a napoli",
+    "created": "2001-07-21 06:19:06",
+    "linked_file": null,
+    "hugo": "4633-presidio-a-napoli",
+    "date": "2001-07-21",
+    "time": "06:19:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "19",
+    "second": "06"
+  },
+  {
+    "id": 4551,
+    "heading": "Pink + Silver March at Red Zone Fence Friday 20th",
+    "created": "2001-07-21 06:23:10",
+    "linked_file": "2001/07/pinkfence.jpg",
+    "hugo": "4551-pink-+-silver-march-at-red-zone-fence-friday-20th",
+    "date": "2001-07-21",
+    "time": "06:23:10",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "23",
+    "second": "10"
+  },
+  {
+    "id": 4621,
+    "heading": "netstrike against  genoa-g8.it",
+    "created": "2001-07-21 06:23:49",
+    "linked_file": null,
+    "hugo": "4621-netstrike-against-genoag8it",
+    "date": "2001-07-21",
+    "time": "06:23:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "23",
+    "second": "49"
+  },
+  {
+    "id": 4469,
+    "heading": "Carabinieri infiltrati",
+    "created": "2001-07-21 06:28:00",
+    "linked_file": null,
+    "hugo": "4469-carabinieri-infiltrati",
+    "date": "2001-07-21",
+    "time": "06:28:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "28",
+    "second": "00"
+  },
+  {
+    "id": 4623,
+    "heading": "Protesta ieri a Bologna. Appuntamento oggi ore 17.00",
+    "created": "2001-07-21 06:30:46",
+    "linked_file": null,
+    "hugo": "4623-protesta-ieri-a-bologna-appuntamento-oggi-ore-1700",
+    "date": "2001-07-21",
+    "time": "06:30:46",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "30",
+    "second": "46"
+  },
+  {
+    "id": 4658,
+    "heading": "Sit-In In ROME",
+    "created": "2001-07-21 06:48:47",
+    "linked_file": null,
+    "hugo": "4658-sitin-in-rome",
+    "date": "2001-07-21",
+    "time": "06:48:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "06",
+    "minute": "48",
+    "second": "47"
+  },
+  {
+    "id": 4653,
+    "heading": "action of solidarity in salzburg/austria + demo",
+    "created": "2001-07-21 07:00:39",
+    "linked_file": null,
+    "hugo": "4653-action-of-solidarity-in-salzburgaustria-+-demo",
+    "date": "2001-07-21",
+    "time": "07:00:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "00",
+    "second": "39"
+  },
+  {
+    "id": 4675,
+    "heading": "Plaza Kennedy 3 pm",
+    "created": "2001-07-21 07:04:45",
+    "linked_file": "2001/07/external-041.jpg",
+    "hugo": "4675-plaza-kennedy-3-pm",
+    "date": "2001-07-21",
+    "time": "07:04:45",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "04",
+    "second": "45"
+  },
+  {
+    "id": 4590,
+    "heading": "Solidarity protests in Norway",
+    "created": "2001-07-21 07:15:07",
+    "linked_file": null,
+    "hugo": "4590-solidarity-protests-in-norway",
+    "date": "2001-07-21",
+    "time": "07:15:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "15",
+    "second": "07"
+  },
+  {
+    "id": 4687,
+    "heading": "Netstrike",
+    "created": "2001-07-21 07:17:47",
+    "linked_file": null,
+    "hugo": "4687-netstrike",
+    "date": "2001-07-21",
+    "time": "07:17:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "17",
+    "second": "47"
+  },
+  {
+    "id": 4693,
+    "heading": "Piazza Kennedy 3 pm (better picture)",
+    "created": "2001-07-21 07:21:42",
+    "linked_file": "2001/07/piazza_kennedy_03.jpg",
+    "hugo": "4693-piazza-kennedy-3-pm-better-picture",
+    "date": "2001-07-21",
+    "time": "07:21:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "21",
+    "second": "42"
+  },
+  {
+    "id": 4695,
+    "heading": "P.za Kennedy Pic 1.",
+    "created": "2001-07-21 07:23:55",
+    "linked_file": "2001/07/tear_gas_in_conver_ctr.jpg",
+    "hugo": "4695-pza-kennedy-pic-1",
+    "date": "2001-07-21",
+    "time": "07:23:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "23",
+    "second": "55"
+  },
+  {
+    "id": 4696,
+    "heading": "P.za Kennedy pic 2",
+    "created": "2001-07-21 07:27:21",
+    "linked_file": "2001/07/starting_to_march_despite_of_tear_gas.jpg",
+    "hugo": "4696-pza-kennedy-pic-2",
+    "date": "2001-07-21",
+    "time": "07:27:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "27",
+    "second": "21"
+  },
+  {
+    "id": 4701,
+    "heading": "posters-flyers",
+    "created": "2001-07-21 07:27:37",
+    "linked_file": "2001/07/poster_g8c.pdf",
+    "hugo": "4701-postersflyers",
+    "date": "2001-07-21",
+    "time": "07:27:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "27",
+    "second": "37"
+  },
+  {
+    "id": 4661,
+    "heading": "Sono 200Mila",
+    "created": "2001-07-21 07:46:46",
+    "linked_file": null,
+    "hugo": "4661-sono-200mila",
+    "date": "2001-07-21",
+    "time": "07:46:46",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "46",
+    "second": "46"
+  },
+  {
+    "id": 4647,
+    "heading": "Police attacking main march at Kennedy with GAS!!",
+    "created": "2001-07-21 07:59:13",
+    "linked_file": null,
+    "hugo": "4647-police-attacking-main-march-at-kennedy-with-gas",
+    "date": "2001-07-21",
+    "time": "07:59:13",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "07",
+    "minute": "59",
+    "second": "13"
+  },
+  {
+    "id": 4691,
+    "heading": "BIG VICTORY",
+    "created": "2001-07-21 08:08:45",
+    "linked_file": null,
+    "hugo": "4691-big-victory",
+    "date": "2001-07-21",
+    "time": "08:08:45",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "08",
+    "second": "45"
+  },
+  {
+    "id": 4686,
+    "heading": "Stanno partendeo le cariiche a piazza Kennedy",
+    "created": "2001-07-21 08:11:14",
+    "linked_file": null,
+    "hugo": "4686-stanno-partendeo-le-cariiche-a-piazza-kennedy",
+    "date": "2001-07-21",
+    "time": "08:11:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "11",
+    "second": "14"
+  },
+  {
+    "id": 4747,
+    "heading": "Carlo",
+    "created": "2001-07-21 08:15:55",
+    "linked_file": "2001/07/carlo.jpg",
+    "hugo": "4747-carlo",
+    "date": "2001-07-21",
+    "time": "08:15:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "15",
+    "second": "55"
+  },
+  {
+    "id": 4594,
+    "heading": "Vigliacchi assassini!",
+    "created": "2001-07-21 08:17:52",
+    "linked_file": null,
+    "hugo": "4594-vigliacchi-assassini",
+    "date": "2001-07-21",
+    "time": "08:17:52",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "17",
+    "second": "52"
+  },
+  {
+    "id": 4751,
+    "heading": "Roma: davanti palazzo chigi sabato 21 ore 17",
+    "created": "2001-07-21 08:18:16",
+    "linked_file": null,
+    "hugo": "4751-roma-davanti-palazzo-chigi-sabato-21-ore-17",
+    "date": "2001-07-21",
+    "time": "08:18:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "18",
+    "second": "16"
+  },
+  {
+    "id": 4651,
+    "heading": "who gives violence gets violence",
+    "created": "2001-07-21 08:19:07",
+    "linked_file": null,
+    "hugo": "4651-who-gives-violence-gets-violence",
+    "date": "2001-07-21",
+    "time": "08:19:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "19",
+    "second": "07"
+  },
+  {
+    "id": 3915,
+    "heading": "hanno visto la polizia sparare",
+    "created": "2001-07-21 08:26:33",
+    "linked_file": "2001/07/hanno_visto_sparare_la_polizia.rm",
+    "hugo": "3915-hanno-visto-la-polizia-sparare",
+    "date": "2001-07-21",
+    "time": "08:26:33",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "26",
+    "second": "33"
+  },
+  {
+    "id": 4778,
+    "heading": "Reclaim the Streets in Turku, Finland on 11.8",
+    "created": "2001-07-21 08:38:04",
+    "linked_file": null,
+    "hugo": "4778-reclaim-the-streets-in-turku-finland-on-118",
+    "date": "2001-07-21",
+    "time": "08:38:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "38",
+    "second": "04"
+  },
+  {
+    "id": 4620,
+    "heading": "Idiots!",
+    "created": "2001-07-21 08:42:03",
+    "linked_file": null,
+    "hugo": "4620-idiots",
+    "date": "2001-07-21",
+    "time": "08:42:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "42",
+    "second": "03"
+  },
+  {
+    "id": 4034,
+    "heading": "solidarity-action in linz",
+    "created": "2001-07-21 08:44:36",
+    "linked_file": "2001/07/landstr.jpg",
+    "hugo": "4034-solidarityaction-in-linz",
+    "date": "2001-07-21",
+    "time": "08:44:36",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "44",
+    "second": "36"
+  },
+  {
+    "id": 4706,
+    "heading": "Officer charged with murder after G8 death",
+    "created": "2001-07-21 08:54:08",
+    "linked_file": null,
+    "hugo": "4706-officer-charged-with-murder-after-g8-death",
+    "date": "2001-07-21",
+    "time": "08:54:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "08",
+    "minute": "54",
+    "second": "08"
+  },
+  {
+    "id": 4729,
+    "heading": "il nome dell'assassino",
+    "created": "2001-07-21 09:08:19",
+    "linked_file": null,
+    "hugo": "4729-il-nome-dellassassino",
+    "date": "2001-07-21",
+    "time": "09:08:19",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "08",
+    "second": "19"
+  },
+  {
+    "id": 4749,
+    "heading": "Genova Manifestation Gassed and Surrounded",
+    "created": "2001-07-21 09:09:21",
+    "linked_file": null,
+    "hugo": "4749-genova-manifestation-gassed-and-surrounded",
+    "date": "2001-07-21",
+    "time": "09:09:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "09",
+    "second": "21"
+  },
+  {
+    "id": 4821,
+    "heading": "COMUNICATO 9 -ANARCHICI CONTRO IL G8 - SABATO 21/07/2001",
+    "created": "2001-07-21 09:09:44",
+    "linked_file": null,
+    "hugo": "4821-comunicato-9-anarchici-contro-il-g8-sabato-21072001",
+    "date": "2001-07-21",
+    "time": "09:09:44",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "09",
+    "second": "44"
+  },
+  {
+    "id": 4822,
+    "heading": "newswire on betazine.org",
+    "created": "2001-07-21 09:09:46",
+    "linked_file": null,
+    "hugo": "4822-newswire-on-betazineorg",
+    "date": "2001-07-21",
+    "time": "09:09:46",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "09",
+    "second": "46"
+  },
+  {
+    "id": 4825,
+    "heading": "Lacrimogeni sul corteo",
+    "created": "2001-07-21 09:12:00",
+    "linked_file": null,
+    "hugo": "4825-lacrimogeni-sul-corteo",
+    "date": "2001-07-21",
+    "time": "09:12:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "12",
+    "second": "00"
+  },
+  {
+    "id": 4794,
+    "heading": "Lacrimogeni per chiunque",
+    "created": "2001-07-21 09:15:38",
+    "linked_file": "2001/07/primimomenti.rm",
+    "hugo": "4794-lacrimogeni-per-chiunque",
+    "date": "2001-07-21",
+    "time": "09:15:38",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "15",
+    "second": "38"
+  },
+  {
+    "id": 4836,
+    "heading": "g8 Assemblea Cittadina  a Roma",
+    "created": "2001-07-21 09:20:41",
+    "linked_file": null,
+    "hugo": "4836-g8-assemblea-cittadina-a-roma",
+    "date": "2001-07-21",
+    "time": "09:20:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "20",
+    "second": "41"
+  },
+  {
+    "id": 4849,
+    "heading": "Sympathy demo in Oslo, Norway",
+    "created": "2001-07-21 09:29:29",
+    "linked_file": null,
+    "hugo": "4849-sympathy-demo-in-oslo-norway",
+    "date": "2001-07-21",
+    "time": "09:29:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "29",
+    "second": "29"
+  },
+  {
+    "id": 4748,
+    "heading": "VIOLENT AND NON-VIOLENT PROTESTERS DIVIDE",
+    "created": "2001-07-21 09:36:03",
+    "linked_file": "2001/07/g8w.jpg",
+    "hugo": "4748-violent-and-nonviolent-protesters-divide",
+    "date": "2001-07-21",
+    "time": "09:36:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "36",
+    "second": "03"
+  },
+  {
+    "id": 3243,
+    "heading": "Genova Stop G8 18.07 [picture report]",
+    "created": "2001-07-21 09:36:32",
+    "linked_file": null,
+    "hugo": "3243-genova-stop-g8-1807-picture-report",
+    "date": "2001-07-21",
+    "time": "09:36:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "36",
+    "second": "32"
+  },
+  {
+    "id": 4861,
+    "heading": "Genova Solidarity in Finland",
+    "created": "2001-07-21 09:38:42",
+    "linked_file": "2001/07/bandisjyyj8u.jpg",
+    "hugo": "4861-genova-solidarity-in-finland",
+    "date": "2001-07-21",
+    "time": "09:38:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "38",
+    "second": "42"
+  },
+  {
+    "id": 4865,
+    "heading": "Genova Solidarity in Finland",
+    "created": "2001-07-21 09:38:47",
+    "linked_file": "2001/07/dieing3.jpg",
+    "hugo": "4865-genova-solidarity-in-finland",
+    "date": "2001-07-21",
+    "time": "09:38:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "38",
+    "second": "47"
+  },
+  {
+    "id": 4872,
+    "heading": "Cop Charged with Murder of G8 Protester",
+    "created": "2001-07-21 09:45:41",
+    "linked_file": null,
+    "hugo": "4872-cop-charged-with-murder-of-g8-protester",
+    "date": "2001-07-21",
+    "time": "09:45:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "45",
+    "second": "41"
+  },
+  {
+    "id": 4709,
+    "heading": "stop killing our children: PIC",
+    "created": "2001-07-21 09:48:55",
+    "linked_file": "2001/07/stop_killing_our_children93dzbn.jpg",
+    "hugo": "4709-stop-killing-our-children-pic",
+    "date": "2001-07-21",
+    "time": "09:48:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "48",
+    "second": "55"
+  },
+  {
+    "id": 4772,
+    "heading": "Altro che autodifesa...",
+    "created": "2001-07-21 09:52:32",
+    "linked_file": null,
+    "hugo": "4772-altro-che-autodifesa",
+    "date": "2001-07-21",
+    "time": "09:52:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "52",
+    "second": "32"
+  },
+  {
+    "id": 4586,
+    "heading": "g8 assasino",
+    "created": "2001-07-21 09:55:41",
+    "linked_file": null,
+    "hugo": "4586-g8-assasino",
+    "date": "2001-07-21",
+    "time": "09:55:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "55",
+    "second": "41"
+  },
+  {
+    "id": 4882,
+    "heading": "G8 - gli scontri",
+    "created": "2001-07-21 09:57:18",
+    "linked_file": "2001/07/copia.jpg",
+    "hugo": "4882-g8-gli-scontri",
+    "date": "2001-07-21",
+    "time": "09:57:18",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "09",
+    "minute": "57",
+    "second": "18"
+  },
+  {
+    "id": 4888,
+    "heading": "G8 - gli scontri (seconda parte)",
+    "created": "2001-07-21 10:03:05",
+    "linked_file": "2001/07/copia_2kbhd6m.jpg",
+    "hugo": "4888-g8-gli-scontri-seconda-parte",
+    "date": "2001-07-21",
+    "time": "10:03:05",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "03",
+    "second": "05"
+  },
+  {
+    "id": 4890,
+    "heading": "At lilliput peaceniks challange the black block",
+    "created": "2001-07-21 10:05:08",
+    "linked_file": null,
+    "hugo": "4890-at-lilliput-peaceniks-challange-the-black-block",
+    "date": "2001-07-21",
+    "time": "10:05:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "05",
+    "second": "08"
+  },
+  {
+    "id": 4759,
+    "heading": "Time to talk tactics as CAFOD pulls out of debt march",
+    "created": "2001-07-21 10:14:20",
+    "linked_file": null,
+    "hugo": "4759-time-to-talk-tactics-as-cafod-pulls-out-of-debt-march",
+    "date": "2001-07-21",
+    "time": "10:14:20",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "14",
+    "second": "20"
+  },
+  {
+    "id": 4835,
+    "heading": "Police provoke violence",
+    "created": "2001-07-21 10:19:48",
+    "linked_file": "2001/07/gogjzm.txt",
+    "hugo": "4835-police-provoke-violence",
+    "date": "2001-07-21",
+    "time": "10:19:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "19",
+    "second": "48"
+  },
+  {
+    "id": 4791,
+    "heading": "Indymedia mistake",
+    "created": "2001-07-21 10:22:55",
+    "linked_file": null,
+    "hugo": "4791-indymedia-mistake",
+    "date": "2001-07-21",
+    "time": "10:22:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "22",
+    "second": "55"
+  },
+  {
+    "id": 4907,
+    "heading": "To Hank Smith and those who can't see.",
+    "created": "2001-07-21 10:24:36",
+    "linked_file": null,
+    "hugo": "4907-to-hank-smith-and-those-who-cant-see",
+    "date": "2001-07-21",
+    "time": "10:24:36",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "24",
+    "second": "36"
+  },
+  {
+    "id": 4753,
+    "heading": "Watch out for \"villi\"",
+    "created": "2001-07-21 10:27:48",
+    "linked_file": null,
+    "hugo": "4753-watch-out-for-villi",
+    "date": "2001-07-21",
+    "time": "10:27:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "27",
+    "second": "48"
+  },
+  {
+    "id": 4885,
+    "heading": "Big guns on the street",
+    "created": "2001-07-21 10:28:04",
+    "linked_file": "2001/07/gun22.jpg",
+    "hugo": "4885-big-guns-on-the-street",
+    "date": "2001-07-21",
+    "time": "10:28:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "28",
+    "second": "04"
+  },
+  {
+    "id": 4788,
+    "heading": "Lacrimoggeni per chiunque",
+    "created": "2001-07-21 10:38:49",
+    "linked_file": null,
+    "hugo": "4788-lacrimoggeni-per-chiunque",
+    "date": "2001-07-21",
+    "time": "10:38:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "38",
+    "second": "49"
+  },
+  {
+    "id": 4932,
+    "heading": "Comunicato stampa Netstrike",
+    "created": "2001-07-21 10:40:24",
+    "linked_file": null,
+    "hugo": "4932-comunicato-stampa-netstrike",
+    "date": "2001-07-21",
+    "time": "10:40:24",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "40",
+    "second": "24"
+  },
+  {
+    "id": 4866,
+    "heading": "demonstration in vienna, austria",
+    "created": "2001-07-21 10:42:26",
+    "linked_file": null,
+    "hugo": "4866-demonstration-in-vienna-austria",
+    "date": "2001-07-21",
+    "time": "10:42:26",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "42",
+    "second": "26"
+  },
+  {
+    "id": 4705,
+    "heading": "protest against the shootings:PIC",
+    "created": "2001-07-21 10:47:54",
+    "linked_file": "2001/07/against_killings_at_g8.jpg",
+    "hugo": "4705-protest-against-the-shootingspic",
+    "date": "2001-07-21",
+    "time": "10:47:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "47",
+    "second": "54"
+  },
+  {
+    "id": 4848,
+    "heading": "bus hold on italian/austrian border since hours",
+    "created": "2001-07-21 10:49:31",
+    "linked_file": null,
+    "hugo": "4848-bus-hold-on-italianaustrian-border-since-hours",
+    "date": "2001-07-21",
+    "time": "10:49:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "49",
+    "second": "31"
+  },
+  {
+    "id": 4963,
+    "heading": "P.za Kennedy Bank: pic 3",
+    "created": "2001-07-21 10:59:51",
+    "linked_file": "2001/07/bank-trashed.jpg",
+    "hugo": "4963-pza-kennedy-bank-pic-3",
+    "date": "2001-07-21",
+    "time": "10:59:51",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "10",
+    "minute": "59",
+    "second": "51"
+  },
+  {
+    "id": 4950,
+    "heading": "P.za kennedy - moving off: Pic 2",
+    "created": "2001-07-21 11:04:21",
+    "linked_file": "2001/07/car-wreck.jpg",
+    "hugo": "4950-pza-kennedy-moving-off-pic-2",
+    "date": "2001-07-21",
+    "time": "11:04:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "04",
+    "second": "21"
+  },
+  {
+    "id": 4978,
+    "heading": "WATER FINISHED AT CARLINI !!",
+    "created": "2001-07-21 11:26:22",
+    "linked_file": null,
+    "hugo": "4978-water-finished-at-carlini-",
+    "date": "2001-07-21",
+    "time": "11:26:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "26",
+    "second": "22"
+  },
+  {
+    "id": 4818,
+    "heading": "letter to an \"anarchist\" friend",
+    "created": "2001-07-21 11:34:33",
+    "linked_file": null,
+    "hugo": "4818-letter-to-an-anarchist-friend",
+    "date": "2001-07-21",
+    "time": "11:34:33",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "34",
+    "second": "33"
+  },
+  {
+    "id": 4860,
+    "heading": "ASESINOS!!!",
+    "created": "2001-07-21 11:36:52",
+    "linked_file": "2001/07/poli2.gif.gif",
+    "hugo": "4860-asesinos",
+    "date": "2001-07-21",
+    "time": "11:36:52",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "36",
+    "second": "52"
+  },
+  {
+    "id": 4883,
+    "heading": "Buy your pizzas here",
+    "created": "2001-07-21 11:42:14",
+    "linked_file": null,
+    "hugo": "4883-buy-your-pizzas-here",
+    "date": "2001-07-21",
+    "time": "11:42:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "42",
+    "second": "14"
+  },
+  {
+    "id": 4989,
+    "heading": "RI:Evoluzione",
+    "created": "2001-07-21 11:43:49",
+    "linked_file": null,
+    "hugo": "4989-rievoluzione",
+    "date": "2001-07-21",
+    "time": "11:43:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "43",
+    "second": "49"
+  },
+  {
+    "id": 4707,
+    "heading": "Recent killings at protests",
+    "created": "2001-07-21 11:48:37",
+    "linked_file": "2001/07/recent_killings_at_protests.jpg",
+    "hugo": "4707-recent-killings-at-protests",
+    "date": "2001-07-21",
+    "time": "11:48:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "48",
+    "second": "37"
+  },
+  {
+    "id": 4998,
+    "heading": "Poem about violence (German)",
+    "created": "2001-07-21 11:52:39",
+    "linked_file": null,
+    "hugo": "4998-poem-about-violence-german",
+    "date": "2001-07-21",
+    "time": "11:52:39",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "11",
+    "minute": "52",
+    "second": "39"
+  },
+  {
+    "id": 5014,
+    "heading": "http://www.disobey.ca/murder.html",
+    "created": "2001-07-21 12:07:08",
+    "linked_file": "2001/07/image5.jpg",
+    "hugo": "5014-httpwwwdisobeycamurderhtml",
+    "date": "2001-07-21",
+    "time": "12:07:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "07",
+    "second": "08"
+  },
+  {
+    "id": 4902,
+    "heading": "Ancora cariche indiscriminate - una testimonianza",
+    "created": "2001-07-21 12:14:06",
+    "linked_file": null,
+    "hugo": "4902-ancora-cariche-indiscriminate-una-testimonianza",
+    "date": "2001-07-21",
+    "time": "12:14:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "14",
+    "second": "06"
+  },
+  {
+    "id": 4922,
+    "heading": "Demonstratie in Amsterdam/ demonstration in Amsterdam",
+    "created": "2001-07-21 12:14:14",
+    "linked_file": null,
+    "hugo": "4922-demonstratie-in-amsterdam-demonstration-in-amsterdam",
+    "date": "2001-07-21",
+    "time": "12:14:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "14",
+    "second": "14"
+  },
+  {
+    "id": 3743,
+    "heading": "In Solidarity: From Washington DC",
+    "created": "2001-07-21 12:26:23",
+    "linked_file": "2001/07/dscn4034-parwashmon2.jpg",
+    "hugo": "3743-in-solidarity-from-washington-dc",
+    "date": "2001-07-21",
+    "time": "12:26:23",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "26",
+    "second": "23"
+  },
+  {
+    "id": 5048,
+    "heading": "demo in barcelona. genoa solidarity",
+    "created": "2001-07-21 12:42:50",
+    "linked_file": "2001/07/itaind1xvet3y.jpg",
+    "hugo": "5048-demo-in-barcelona-genoa-solidarity",
+    "date": "2001-07-21",
+    "time": "12:42:50",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "42",
+    "second": "50"
+  },
+  {
+    "id": 5054,
+    "heading": "demo in barcelona. genoa solidarity",
+    "created": "2001-07-21 12:43:06",
+    "linked_file": "2001/07/itaind4.jpg",
+    "hugo": "5054-demo-in-barcelona-genoa-solidarity",
+    "date": "2001-07-21",
+    "time": "12:43:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "43",
+    "second": "06"
+  },
+  {
+    "id": 4930,
+    "heading": "Autopsia di Carlo",
+    "created": "2001-07-21 12:46:51",
+    "linked_file": null,
+    "hugo": "4930-autopsia-di-carlo",
+    "date": "2001-07-21",
+    "time": "12:46:51",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "46",
+    "second": "51"
+  },
+  {
+    "id": 4671,
+    "heading": "You will want to see this complete series of photos.",
+    "created": "2001-07-21 12:50:28",
+    "linked_file": null,
+    "hugo": "4671-you-will-want-to-see-this-complete-series-of-photos",
+    "date": "2001-07-21",
+    "time": "12:50:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "50",
+    "second": "28"
+  },
+  {
+    "id": 5044,
+    "heading": "solidarity in austria",
+    "created": "2001-07-21 12:57:55",
+    "linked_file": null,
+    "hugo": "5044-solidarity-in-austria",
+    "date": "2001-07-21",
+    "time": "12:57:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "12",
+    "minute": "57",
+    "second": "55"
+  },
+  {
+    "id": 5072,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 13:00:27",
+    "linked_file": null,
+    "hugo": "5072-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "13:00:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "00",
+    "second": "27"
+  },
+  {
+    "id": 5073,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 13:00:55",
+    "linked_file": null,
+    "hugo": "5073-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "13:00:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "00",
+    "second": "55"
+  },
+  {
+    "id": 5075,
+    "heading": "handout for solidarity-actions available!",
+    "created": "2001-07-21 13:01:24",
+    "linked_file": null,
+    "hugo": "5075-handout-for-solidarityactions-available",
+    "date": "2001-07-21",
+    "time": "13:01:24",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "01",
+    "second": "24"
+  },
+  {
+    "id": 5005,
+    "heading": "Germany: Solidarity-Demonstrations for the protesters",
+    "created": "2001-07-21 13:05:59",
+    "linked_file": null,
+    "hugo": "5005-germany-solidaritydemonstrations-for-the-protesters",
+    "date": "2001-07-21",
+    "time": "13:05:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "05",
+    "second": "59"
+  },
+  {
+    "id": 4990,
+    "heading": "wondering....",
+    "created": "2001-07-21 13:13:49",
+    "linked_file": null,
+    "hugo": "4990-wondering",
+    "date": "2001-07-21",
+    "time": "13:13:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "13",
+    "second": "49"
+  },
+  {
+    "id": 4921,
+    "heading": "Legittima difesa ?",
+    "created": "2001-07-21 13:13:58",
+    "linked_file": null,
+    "hugo": "4921-legittima-difesa-",
+    "date": "2001-07-21",
+    "time": "13:13:58",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "13",
+    "second": "58"
+  },
+  {
+    "id": 5093,
+    "heading": "Flashpoints Radio interview w Global Exchange's Kevin Danaher in Genoa",
+    "created": "2001-07-21 13:19:57",
+    "linked_file": null,
+    "hugo": "5093-flashpoints-radio-interview-w-global-exchanges-kevin-danaher-in-genoa",
+    "date": "2001-07-21",
+    "time": "13:19:57",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "19",
+    "second": "57"
+  },
+  {
+    "id": 4340,
+    "heading": "Fuck The Black Bloc",
+    "created": "2001-07-21 13:21:59",
+    "linked_file": null,
+    "hugo": "4340-fuck-the-black-bloc",
+    "date": "2001-07-21",
+    "time": "13:21:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "21",
+    "second": "59"
+  },
+  {
+    "id": 5096,
+    "heading": "The Holographic Tech-Body",
+    "created": "2001-07-21 13:21:59",
+    "linked_file": null,
+    "hugo": "5096-the-holographic-techbody",
+    "date": "2001-07-21",
+    "time": "13:21:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "21",
+    "second": "59"
+  },
+  {
+    "id": 5102,
+    "heading": "targets for solidarity demos",
+    "created": "2001-07-21 13:31:11",
+    "linked_file": null,
+    "hugo": "5102-targets-for-solidarity-demos",
+    "date": "2001-07-21",
+    "time": "13:31:11",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "13",
+    "minute": "31",
+    "second": "11"
+  },
+  {
+    "id": 5130,
+    "heading": "tre arresti in pizzeria sotto il media center",
+    "created": "2001-07-21 14:03:47",
+    "linked_file": null,
+    "hugo": "5130-tre-arresti-in-pizzeria-sotto-il-media-center",
+    "date": "2001-07-21",
+    "time": "14:03:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "03",
+    "second": "47"
+  },
+  {
+    "id": 5126,
+    "heading": "l'impero colpisce ancora",
+    "created": "2001-07-21 14:20:40",
+    "linked_file": null,
+    "hugo": "5126-limpero-colpisce-ancora",
+    "date": "2001-07-21",
+    "time": "14:20:40",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "20",
+    "second": "40"
+  },
+  {
+    "id": 5153,
+    "heading": "Solidarity in Switzerland",
+    "created": "2001-07-21 14:28:03",
+    "linked_file": null,
+    "hugo": "5153-solidarity-in-switzerland",
+    "date": "2001-07-21",
+    "time": "14:28:03",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "28",
+    "second": "03"
+  },
+  {
+    "id": 5147,
+    "heading": "CGT Must Call General Strike",
+    "created": "2001-07-21 14:30:16",
+    "linked_file": "2001/07/italgenstr.txt",
+    "hugo": "5147-cgt-must-call-general-strike",
+    "date": "2001-07-21",
+    "time": "14:30:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "30",
+    "second": "16"
+  },
+  {
+    "id": 5152,
+    "heading": "Why I Hate Global Capitalism",
+    "created": "2001-07-21 14:50:27",
+    "linked_file": null,
+    "hugo": "5152-why-i-hate-global-capitalism",
+    "date": "2001-07-21",
+    "time": "14:50:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "50",
+    "second": "27"
+  },
+  {
+    "id": 4993,
+    "heading": "The cop who shot Carlo",
+    "created": "2001-07-21 14:52:25",
+    "linked_file": null,
+    "hugo": "4993-the-cop-who-shot-carlo",
+    "date": "2001-07-21",
+    "time": "14:52:25",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "52",
+    "second": "25"
+  },
+  {
+    "id": 5160,
+    "heading": "Questions anout recent deaths in Genova from Córdoba - Argentina",
+    "created": "2001-07-21 14:54:28",
+    "linked_file": null,
+    "hugo": "5160-questions-anout-recent-deaths-in-genova-from-cordoba-argentina",
+    "date": "2001-07-21",
+    "time": "14:54:28",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "54",
+    "second": "28"
+  },
+  {
+    "id": 3392,
+    "heading": "July 19th report",
+    "created": "2001-07-21 14:54:31",
+    "linked_file": "2001/07/sws1uh.txt",
+    "hugo": "3392-july-19th-report",
+    "date": "2001-07-21",
+    "time": "14:54:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "54",
+    "second": "31"
+  },
+  {
+    "id": 5110,
+    "heading": "Birthdata of Carlo Giuliani",
+    "created": "2001-07-21 14:59:27",
+    "linked_file": null,
+    "hugo": "5110-birthdata-of-carlo-giuliani",
+    "date": "2001-07-21",
+    "time": "14:59:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "14",
+    "minute": "59",
+    "second": "27"
+  },
+  {
+    "id": 5074,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 15:14:24",
+    "linked_file": null,
+    "hugo": "5074-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "15:14:24",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "14",
+    "second": "24"
+  },
+  {
+    "id": 5206,
+    "heading": "poetas en todo el mundo",
+    "created": "2001-07-21 15:27:42",
+    "linked_file": null,
+    "hugo": "5206-poetas-en-todo-el-mundo",
+    "date": "2001-07-21",
+    "time": "15:27:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "27",
+    "second": "42"
+  },
+  {
+    "id": 5137,
+    "heading": "makaya 1/2",
+    "created": "2001-07-21 15:31:15",
+    "linked_file": null,
+    "hugo": "5137-makaya-12",
+    "date": "2001-07-21",
+    "time": "15:31:15",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "31",
+    "second": "15"
+  },
+  {
+    "id": 5207,
+    "heading": "\"Love Festivals of Hooterville - Just for You!\"",
+    "created": "2001-07-21 15:31:54",
+    "linked_file": null,
+    "hugo": "5207-love-festivals-of-hooterville-just-for-you",
+    "date": "2001-07-21",
+    "time": "15:31:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "31",
+    "second": "54"
+  },
+  {
+    "id": 5212,
+    "heading": "Pacifism as Pathology(Part 2)...Unity in Struggle",
+    "created": "2001-07-21 15:33:47",
+    "linked_file": null,
+    "hugo": "5212-pacifism-as-pathologypart-2unity-in-struggle",
+    "date": "2001-07-21",
+    "time": "15:33:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "33",
+    "second": "47"
+  },
+  {
+    "id": 5221,
+    "heading": "teresa mattei conferenza stampa GSF",
+    "created": "2001-07-21 15:50:49",
+    "linked_file": "2001/07/conferenza_stampa_gsf.rm",
+    "hugo": "5221-teresa-mattei-conferenza-stampa-gsf",
+    "date": "2001-07-21",
+    "time": "15:50:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "15",
+    "minute": "50",
+    "second": "49"
+  },
+  {
+    "id": 5202,
+    "heading": "Rest In Peace",
+    "created": "2001-07-21 16:01:31",
+    "linked_file": null,
+    "hugo": "5202-rest-in-peace",
+    "date": "2001-07-21",
+    "time": "16:01:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "01",
+    "second": "31"
+  },
+  {
+    "id": 5229,
+    "heading": "SIAMO ASSEDIATI DALLE GUARDIE",
+    "created": "2001-07-21 16:02:32",
+    "linked_file": null,
+    "hugo": "5229-siamo-assediati-dalle-guardie",
+    "date": "2001-07-21",
+    "time": "16:02:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "02",
+    "second": "32"
+  },
+  {
+    "id": 5128,
+    "heading": "police arrested people near mediacentre",
+    "created": "2001-07-21 16:05:47",
+    "linked_file": null,
+    "hugo": "5128-police-arrested-people-near-mediacentre",
+    "date": "2001-07-21",
+    "time": "16:05:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "05",
+    "second": "47"
+  },
+  {
+    "id": 4992,
+    "heading": "\"World Leaders\" fall for AIDS scam",
+    "created": "2001-07-21 16:08:17",
+    "linked_file": null,
+    "hugo": "4992-world-leaders-fall-for-aids-scam",
+    "date": "2001-07-21",
+    "time": "16:08:17",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "08",
+    "second": "17"
+  },
+  {
+    "id": 5187,
+    "heading": "Solidarity march in Montreal.",
+    "created": "2001-07-21 16:14:48",
+    "linked_file": "2001/07/march_0.jpg",
+    "hugo": "5187-solidarity-march-in-montreal",
+    "date": "2001-07-21",
+    "time": "16:14:48",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "14",
+    "second": "48"
+  },
+  {
+    "id": 5248,
+    "heading": "Series of English Language Radio Reports on radio4all.net",
+    "created": "2001-07-21 16:16:12",
+    "linked_file": null,
+    "hugo": "5248-series-of-english-language-radio-reports-on-radio4allnet",
+    "date": "2001-07-21",
+    "time": "16:16:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "16",
+    "second": "12"
+  },
+  {
+    "id": 4895,
+    "heading": "Understanding Violence",
+    "created": "2001-07-21 16:17:06",
+    "linked_file": null,
+    "hugo": "4895-understanding-violence",
+    "date": "2001-07-21",
+    "time": "16:17:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "17",
+    "second": "06"
+  },
+  {
+    "id": 5252,
+    "heading": "IRRUZIONE DELL POLIZIA AL CENTRO STAMPA",
+    "created": "2001-07-21 16:20:04",
+    "linked_file": null,
+    "hugo": "5252-irruzione-dell-polizia-al-centro-stampa",
+    "date": "2001-07-21",
+    "time": "16:20:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "20",
+    "second": "04"
+  },
+  {
+    "id": 5258,
+    "heading": "G8: DISINNESCATO PACCO BOMBA; Al centro Leoncavallo di Milano",
+    "created": "2001-07-21 16:25:02",
+    "linked_file": null,
+    "hugo": "5258-g8-disinnescato-pacco-bomba-al-centro-leoncavallo-di-milano",
+    "date": "2001-07-21",
+    "time": "16:25:02",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "25",
+    "second": "02"
+  },
+  {
+    "id": 5169,
+    "heading": "\"How Foolish Are You?\"",
+    "created": "2001-07-21 16:37:12",
+    "linked_file": null,
+    "hugo": "5169-how-foolish-are-you",
+    "date": "2001-07-21",
+    "time": "16:37:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "37",
+    "second": "12"
+  },
+  {
+    "id": 5254,
+    "heading": "Police inside Indymedia and RadioGap",
+    "created": "2001-07-21 16:42:38",
+    "linked_file": null,
+    "hugo": "5254-police-inside-indymedia-and-radiogap",
+    "date": "2001-07-21",
+    "time": "16:42:38",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "42",
+    "second": "38"
+  },
+  {
+    "id": 5215,
+    "heading": "Information on our Dead Comrades",
+    "created": "2001-07-21 16:55:10",
+    "linked_file": null,
+    "hugo": "5215-information-on-our-dead-comrades",
+    "date": "2001-07-21",
+    "time": "16:55:10",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "55",
+    "second": "10"
+  },
+  {
+    "id": 5276,
+    "heading": "Police, indymedia and radiogap",
+    "created": "2001-07-21 16:55:56",
+    "linked_file": null,
+    "hugo": "5276-police-indymedia-and-radiogap",
+    "date": "2001-07-21",
+    "time": "16:55:56",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "55",
+    "second": "56"
+  },
+  {
+    "id": 4792,
+    "heading": "testimonianza anonima omicidio Carlo",
+    "created": "2001-07-21 16:57:59",
+    "linked_file": null,
+    "hugo": "4792-testimonianza-anonima-omicidio-carlo",
+    "date": "2001-07-21",
+    "time": "16:57:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "57",
+    "second": "59"
+  },
+  {
+    "id": 5260,
+    "heading": "carabinieri start entering school centre !",
+    "created": "2001-07-21 16:58:53",
+    "linked_file": "2001/07/o32nlz.txt",
+    "hugo": "5260-carabinieri-start-entering-school-centre-",
+    "date": "2001-07-21",
+    "time": "16:58:53",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "16",
+    "minute": "58",
+    "second": "53"
+  },
+  {
+    "id": 5277,
+    "heading": "GSF HQ raided",
+    "created": "2001-07-21 17:01:02",
+    "linked_file": null,
+    "hugo": "5277-gsf-hq-raided",
+    "date": "2001-07-21",
+    "time": "17:01:02",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "01",
+    "second": "02"
+  },
+  {
+    "id": 5219,
+    "heading": "july 21st .... impressions of the riot aftermath",
+    "created": "2001-07-21 17:04:59",
+    "linked_file": "2001/07/yrfva3.txt",
+    "hugo": "5219-july-21st-impressions-of-the-riot-aftermath",
+    "date": "2001-07-21",
+    "time": "17:04:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "04",
+    "second": "59"
+  },
+  {
+    "id": 5289,
+    "heading": "POLICE RAIDED GSF AND IMC center in via Cesare battisti in genoa",
+    "created": "2001-07-21 17:05:14",
+    "linked_file": null,
+    "hugo": "5289-police-raided-gsf-and-imc-center-in-via-cesare-battisti-in-genoa",
+    "date": "2001-07-21",
+    "time": "17:05:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "05",
+    "second": "14"
+  },
+  {
+    "id": 5273,
+    "heading": "media center: voices under siege",
+    "created": "2001-07-21 17:07:13",
+    "linked_file": null,
+    "hugo": "5273-media-center-voices-under-siege",
+    "date": "2001-07-21",
+    "time": "17:07:13",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "07",
+    "second": "13"
+  },
+  {
+    "id": 5306,
+    "heading": "police beat up people opposite imc",
+    "created": "2001-07-21 17:19:54",
+    "linked_file": null,
+    "hugo": "5306-police-beat-up-people-opposite-imc",
+    "date": "2001-07-21",
+    "time": "17:19:54",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "19",
+    "second": "54"
+  },
+  {
+    "id": 5322,
+    "heading": "news from police in mediacenter",
+    "created": "2001-07-21 17:23:42",
+    "linked_file": null,
+    "hugo": "5322-news-from-police-in-mediacenter",
+    "date": "2001-07-21",
+    "time": "17:23:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "23",
+    "second": "42"
+  },
+  {
+    "id": 4889,
+    "heading": "G8 - gli scontri (terza parte)",
+    "created": "2001-07-21 17:35:10",
+    "linked_file": "2001/07/copia_1.jpg",
+    "hugo": "4889-g8-gli-scontri-terza-parte",
+    "date": "2001-07-21",
+    "time": "17:35:10",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "35",
+    "second": "10"
+  },
+  {
+    "id": 5320,
+    "heading": "io testimone oggi",
+    "created": "2001-07-21 17:35:40",
+    "linked_file": null,
+    "hugo": "5320-io-testimone-oggi",
+    "date": "2001-07-21",
+    "time": "17:35:40",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "35",
+    "second": "40"
+  },
+  {
+    "id": 5295,
+    "heading": "RIOT POLICE ENTRA SFONDANDO NELL' INDYMEDIA CENTER",
+    "created": "2001-07-21 17:40:26",
+    "linked_file": null,
+    "hugo": "5295-riot-police-entra-sfondando-nell-indymedia-center",
+    "date": "2001-07-21",
+    "time": "17:40:26",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "40",
+    "second": "26"
+  },
+  {
+    "id": 5178,
+    "heading": "The Ruling Elite Never Get It",
+    "created": "2001-07-21 17:41:09",
+    "linked_file": null,
+    "hugo": "5178-the-ruling-elite-never-get-it",
+    "date": "2001-07-21",
+    "time": "17:41:09",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "41",
+    "second": "09"
+  },
+  {
+    "id": 5233,
+    "heading": "cabinerai outside IMCUK",
+    "created": "2001-07-21 17:48:12",
+    "linked_file": null,
+    "hugo": "5233-cabinerai-outside-imcuk",
+    "date": "2001-07-21",
+    "time": "17:48:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "48",
+    "second": "12"
+  },
+  {
+    "id": 5251,
+    "heading": "Carabbinieri masked as Black Block",
+    "created": "2001-07-21 17:58:07",
+    "linked_file": null,
+    "hugo": "5251-carabbinieri-masked-as-black-block",
+    "date": "2001-07-21",
+    "time": "17:58:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "17",
+    "minute": "58",
+    "second": "07"
+  },
+  {
+    "id": 5362,
+    "heading": "Call to CGT for General Strike in Italy with World Strike to follow",
+    "created": "2001-07-21 18:07:15",
+    "linked_file": null,
+    "hugo": "5362-call-to-cgt-for-general-strike-in-italy-with-world-strike-to-follow",
+    "date": "2001-07-21",
+    "time": "18:07:15",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "07",
+    "second": "15"
+  },
+  {
+    "id": 5241,
+    "heading": "per i NERI",
+    "created": "2001-07-21 18:08:25",
+    "linked_file": null,
+    "hugo": "5241-per-i-neri",
+    "date": "2001-07-21",
+    "time": "18:08:25",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "08",
+    "second": "25"
+  },
+  {
+    "id": 5323,
+    "heading": "La polizia ha fatto irruzione nella sede del GSF e di Indymedia in via Cesare Ba",
+    "created": "2001-07-21 18:21:07",
+    "linked_file": null,
+    "hugo": "5323-la-polizia-ha-fatto-irruzione-nella-sede-del-gsf-e-di-indymedia-in-via-cesare-ba",
+    "date": "2001-07-21",
+    "time": "18:21:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "21",
+    "second": "07"
+  },
+  {
+    "id": 5388,
+    "heading": "radio gap sopravvive",
+    "created": "2001-07-21 18:29:21",
+    "linked_file": null,
+    "hugo": "5388-radio-gap-sopravvive",
+    "date": "2001-07-21",
+    "time": "18:29:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "29",
+    "second": "21"
+  },
+  {
+    "id": 5291,
+    "heading": "Don't Throw The Radicals Overboard - Toss The Police",
+    "created": "2001-07-21 18:30:07",
+    "linked_file": null,
+    "hugo": "5291-dont-throw-the-radicals-overboard-toss-the-police",
+    "date": "2001-07-21",
+    "time": "18:30:07",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "30",
+    "second": "07"
+  },
+  {
+    "id": 5379,
+    "heading": "irruzione della polizia al media center di ge",
+    "created": "2001-07-21 18:36:47",
+    "linked_file": null,
+    "hugo": "5379-irruzione-della-polizia-al-media-center-di-ge",
+    "date": "2001-07-21",
+    "time": "18:36:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "36",
+    "second": "47"
+  },
+  {
+    "id": 5238,
+    "heading": "polizia a radio gap",
+    "created": "2001-07-21 18:41:11",
+    "linked_file": null,
+    "hugo": "5238-polizia-a-radio-gap",
+    "date": "2001-07-21",
+    "time": "18:41:11",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "41",
+    "second": "11"
+  },
+  {
+    "id": 5324,
+    "heading": "Be Assured: The Whole World Is Watching Genoa",
+    "created": "2001-07-21 18:45:22",
+    "linked_file": null,
+    "hugo": "5324-be-assured-the-whole-world-is-watching-genoa",
+    "date": "2001-07-21",
+    "time": "18:45:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "45",
+    "second": "22"
+  },
+  {
+    "id": 5312,
+    "heading": "mediacenter",
+    "created": "2001-07-21 18:45:29",
+    "linked_file": null,
+    "hugo": "5312-mediacenter",
+    "date": "2001-07-21",
+    "time": "18:45:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "45",
+    "second": "29"
+  },
+  {
+    "id": 5396,
+    "heading": "Calmer at the IMC",
+    "created": "2001-07-21 18:46:58",
+    "linked_file": null,
+    "hugo": "5396-calmer-at-the-imc",
+    "date": "2001-07-21",
+    "time": "18:46:58",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "18",
+    "minute": "46",
+    "second": "58"
+  },
+  {
+    "id": 3328,
+    "heading": "Pink fairy at migrants demo (picture)",
+    "created": "2001-07-21 19:00:53",
+    "linked_file": "2001/07/fairy1.jpg",
+    "hugo": "3328-pink-fairy-at-migrants-demo-picture",
+    "date": "2001-07-21",
+    "time": "19:00:53",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "00",
+    "second": "53"
+  },
+  {
+    "id": 5421,
+    "heading": "CASARINI DIMETTITI",
+    "created": "2001-07-21 19:02:11",
+    "linked_file": null,
+    "hugo": "5421-casarini-dimettiti",
+    "date": "2001-07-21",
+    "time": "19:02:11",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "02",
+    "second": "11"
+  },
+  {
+    "id": 5391,
+    "heading": "photos of BB infiltration",
+    "created": "2001-07-21 19:02:32",
+    "linked_file": null,
+    "hugo": "5391-photos-of-bb-infiltration",
+    "date": "2001-07-21",
+    "time": "19:02:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "02",
+    "second": "32"
+  },
+  {
+    "id": 5318,
+    "heading": "Confermo",
+    "created": "2001-07-21 19:06:13",
+    "linked_file": null,
+    "hugo": "5318-confermo",
+    "date": "2001-07-21",
+    "time": "19:06:13",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "06",
+    "second": "13"
+  },
+  {
+    "id": 5375,
+    "heading": "What's happening???",
+    "created": "2001-07-21 19:16:37",
+    "linked_file": null,
+    "hugo": "5375-whats-happening",
+    "date": "2001-07-21",
+    "time": "19:16:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "16",
+    "second": "37"
+  },
+  {
+    "id": 5321,
+    "heading": "police left indymedia centre",
+    "created": "2001-07-21 19:22:40",
+    "linked_file": null,
+    "hugo": "5321-police-left-indymedia-centre",
+    "date": "2001-07-21",
+    "time": "19:22:40",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "22",
+    "second": "40"
+  },
+  {
+    "id": 5364,
+    "heading": "State Of The World Report",
+    "created": "2001-07-21 19:23:02",
+    "linked_file": "2001/07/israel8.jpg",
+    "hugo": "5364-state-of-the-world-report",
+    "date": "2001-07-21",
+    "time": "19:23:02",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "23",
+    "second": "02"
+  },
+  {
+    "id": 5417,
+    "heading": "A  gift for you with thanks to you all for your courage",
+    "created": "2001-07-21 19:26:00",
+    "linked_file": null,
+    "hugo": "5417-a-gift-for-you-with-thanks-to-you-all-for-your-courage",
+    "date": "2001-07-21",
+    "time": "19:26:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "26",
+    "second": "00"
+  },
+  {
+    "id": 5438,
+    "heading": "DOMENICA 22 DAVANTI ALLE QUESTURE",
+    "created": "2001-07-21 19:27:57",
+    "linked_file": null,
+    "hugo": "5438-domenica-22-davanti-alle-questure",
+    "date": "2001-07-21",
+    "time": "19:27:57",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "27",
+    "second": "57"
+  },
+  {
+    "id": 2868,
+    "heading": "tension increasing in Genova",
+    "created": "2001-07-21 19:29:37",
+    "linked_file": null,
+    "hugo": "2868-tension-increasing-in-genova",
+    "date": "2001-07-21",
+    "time": "19:29:37",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "29",
+    "second": "37"
+  },
+  {
+    "id": 5444,
+    "heading": "so what?",
+    "created": "2001-07-21 19:34:25",
+    "linked_file": null,
+    "hugo": "5444-so-what",
+    "date": "2001-07-21",
+    "time": "19:34:25",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "34",
+    "second": "25"
+  },
+  {
+    "id": 5335,
+    "heading": "RADIO GAP GOTTA LIVE RADIO GAP WILL NEVER DIE",
+    "created": "2001-07-21 19:41:42",
+    "linked_file": null,
+    "hugo": "5335-radio-gap-gotta-live-radio-gap-will-never-die",
+    "date": "2001-07-21",
+    "time": "19:41:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "41",
+    "second": "42"
+  },
+  {
+    "id": 5242,
+    "heading": "\"La Republica\" reports that few dressed as Black Bloc are Cabiniari",
+    "created": "2001-07-21 19:45:06",
+    "linked_file": null,
+    "hugo": "5242-la-republica-reports-that-few-dressed-as-black-bloc-are-cabiniari",
+    "date": "2001-07-21",
+    "time": "19:45:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "45",
+    "second": "06"
+  },
+  {
+    "id": 5265,
+    "heading": "Police invade IMC italy - irc log",
+    "created": "2001-07-21 19:46:27",
+    "linked_file": "2001/07/invasion.txt",
+    "hugo": "5265-police-invade-imc-italy-irc-log",
+    "date": "2001-07-21",
+    "time": "19:46:27",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "46",
+    "second": "27"
+  },
+  {
+    "id": 5309,
+    "heading": "Casarini rovina delle tute bianke",
+    "created": "2001-07-21 19:50:30",
+    "linked_file": null,
+    "hugo": "5309-casarini-rovina-delle-tute-bianke",
+    "date": "2001-07-21",
+    "time": "19:50:30",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "50",
+    "second": "30"
+  },
+  {
+    "id": 5052,
+    "heading": "demo in barcelona. genoa solidarity",
+    "created": "2001-07-21 19:52:29",
+    "linked_file": "2001/07/itaind3.jpg",
+    "hugo": "5052-demo-in-barcelona-genoa-solidarity",
+    "date": "2001-07-21",
+    "time": "19:52:29",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "19",
+    "minute": "52",
+    "second": "29"
+  },
+  {
+    "id": 5431,
+    "heading": "bbc teletext on the raid on the indymedia building",
+    "created": "2001-07-21 20:01:14",
+    "linked_file": null,
+    "hugo": "5431-bbc-teletext-on-the-raid-on-the-indymedia-building",
+    "date": "2001-07-21",
+    "time": "20:01:14",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "01",
+    "second": "14"
+  },
+  {
+    "id": 5426,
+    "heading": "Request for coverage: What happend to the UPS-truck driver woman?",
+    "created": "2001-07-21 20:11:22",
+    "linked_file": null,
+    "hugo": "5426-request-for-coverage-what-happend-to-the-upstruck-driver-woman",
+    "date": "2001-07-21",
+    "time": "20:11:22",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "11",
+    "second": "22"
+  },
+  {
+    "id": 5112,
+    "heading": "State terror in Genoa --maybe final moment of indymedia",
+    "created": "2001-07-21 20:18:32",
+    "linked_file": null,
+    "hugo": "5112-state-terror-in-genoa-maybe-final-moment-of-indymedia",
+    "date": "2001-07-21",
+    "time": "20:18:32",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "18",
+    "second": "32"
+  },
+  {
+    "id": 5462,
+    "heading": "translation......",
+    "created": "2001-07-21 20:23:15",
+    "linked_file": null,
+    "hugo": "5462-translation",
+    "date": "2001-07-21",
+    "time": "20:23:15",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "23",
+    "second": "15"
+  },
+  {
+    "id": 5482,
+    "heading": "CHAMADO ANTICAPITALISTA",
+    "created": "2001-07-21 20:25:55",
+    "linked_file": null,
+    "hugo": "5482-chamado-anticapitalista",
+    "date": "2001-07-21",
+    "time": "20:25:55",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "25",
+    "second": "55"
+  },
+  {
+    "id": 5475,
+    "heading": "Report on BBC",
+    "created": "2001-07-21 20:50:31",
+    "linked_file": null,
+    "hugo": "5475-report-on-bbc",
+    "date": "2001-07-21",
+    "time": "20:50:31",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "20",
+    "minute": "50",
+    "second": "31"
+  },
+  {
+    "id": 5507,
+    "heading": "Solidarity Demonstration in Toronto, Canada",
+    "created": "2001-07-21 21:12:12",
+    "linked_file": null,
+    "hugo": "5507-solidarity-demonstration-in-toronto-canada",
+    "date": "2001-07-21",
+    "time": "21:12:12",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "21",
+    "minute": "12",
+    "second": "12"
+  },
+  {
+    "id": 5479,
+    "heading": "A CONFIRMATION",
+    "created": "2001-07-21 21:22:49",
+    "linked_file": null,
+    "hugo": "5479-a-confirmation",
+    "date": "2001-07-21",
+    "time": "21:22:49",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "21",
+    "minute": "22",
+    "second": "49"
+  },
+  {
+    "id": 5488,
+    "heading": "RAID on the indymedia center",
+    "created": "2001-07-21 21:39:41",
+    "linked_file": null,
+    "hugo": "5488-raid-on-the-indymedia-center",
+    "date": "2001-07-21",
+    "time": "21:39:41",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "21",
+    "minute": "39",
+    "second": "41"
+  },
+  {
+    "id": 5533,
+    "heading": "GENOA SOLIDARITY DEMO IN MONTREAL",
+    "created": "2001-07-21 22:12:21",
+    "linked_file": "2001/07/march_1_montreal.jpg",
+    "hugo": "5533-genoa-solidarity-demo-in-montreal",
+    "date": "2001-07-21",
+    "time": "22:12:21",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "12",
+    "second": "21"
+  },
+  {
+    "id": 5535,
+    "heading": "Genoa. Many eyewitness reports of police raid of Italy Indymedia Center - GSF.",
+    "created": "2001-07-21 22:14:34",
+    "linked_file": null,
+    "hugo": "5535-genoa-many-eyewitness-reports-of-police-raid-of-italy-indymedia-center-gsf",
+    "date": "2001-07-21",
+    "time": "22:14:34",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "14",
+    "second": "34"
+  },
+  {
+    "id": 5537,
+    "heading": "you are not alone",
+    "created": "2001-07-21 22:14:47",
+    "linked_file": null,
+    "hugo": "5537-you-are-not-alone",
+    "date": "2001-07-21",
+    "time": "22:14:47",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "14",
+    "second": "47"
+  },
+  {
+    "id": 5547,
+    "heading": "Gothenburg repression story, part I",
+    "created": "2001-07-21 22:43:59",
+    "linked_file": null,
+    "hugo": "5547-gothenburg-repression-story-part-i",
+    "date": "2001-07-21",
+    "time": "22:43:59",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "43",
+    "second": "59"
+  },
+  {
+    "id": 5439,
+    "heading": "Flashpoints Radio interview w Global Exchange's Kevin Danaher in Genoa",
+    "created": "2001-07-21 22:44:20",
+    "linked_file": null,
+    "hugo": "5439-flashpoints-radio-interview-w-global-exchanges-kevin-danaher-in-genoa",
+    "date": "2001-07-21",
+    "time": "22:44:20",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "22",
+    "minute": "44",
+    "second": "20"
+  },
+  {
+    "id": 5203,
+    "heading": "Blame Your Comrades, Not the G8",
+    "created": "2001-07-21 23:06:42",
+    "linked_file": null,
+    "hugo": "5203-blame-your-comrades-not-the-g8",
+    "date": "2001-07-21",
+    "time": "23:06:42",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "06",
+    "second": "42"
+  },
+  {
+    "id": 5325,
+    "heading": "Situation at the IMC",
+    "created": "2001-07-21 23:29:04",
+    "linked_file": null,
+    "hugo": "5325-situation-at-the-imc",
+    "date": "2001-07-21",
+    "time": "23:29:04",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "29",
+    "second": "04"
+  },
+  {
+    "id": 5569,
+    "heading": "Solidarity in LA",
+    "created": "2001-07-21 23:30:08",
+    "linked_file": null,
+    "hugo": "5569-solidarity-in-la",
+    "date": "2001-07-21",
+    "time": "23:30:08",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "30",
+    "second": "08"
+  },
+  {
+    "id": 5546,
+    "heading": "The Law of the Jungle",
+    "created": "2001-07-21 23:37:01",
+    "linked_file": null,
+    "hugo": "5546-the-law-of-the-jungle",
+    "date": "2001-07-21",
+    "time": "23:37:01",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "37",
+    "second": "01"
+  },
+  {
+    "id": 5548,
+    "heading": "Gothenburg repression story, part II",
+    "created": "2001-07-21 23:44:00",
+    "linked_file": null,
+    "hugo": "5548-gothenburg-repression-story-part-ii",
+    "date": "2001-07-21",
+    "time": "23:44:00",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "44",
+    "second": "00"
+  },
+  {
+    "id": 5483,
+    "heading": "Change the website login/pass",
+    "created": "2001-07-21 23:45:16",
+    "linked_file": null,
+    "hugo": "5483-change-the-website-loginpass",
+    "date": "2001-07-21",
+    "time": "23:45:16",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "45",
+    "second": "16"
+  },
+  {
+    "id": 5466,
+    "heading": "Italian Police Continue In Their Efforts  To Deepen Divisions",
+    "created": "2001-07-21 23:49:05",
+    "linked_file": null,
+    "hugo": "5466-italian-police-continue-in-their-efforts-to-deepen-divisions",
+    "date": "2001-07-21",
+    "time": "23:49:05",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "49",
+    "second": "05"
+  },
+  {
+    "id": 5410,
+    "heading": "Pacifism?",
+    "created": "2001-07-21 23:54:06",
+    "linked_file": null,
+    "hugo": "5410-pacifism",
+    "date": "2001-07-21",
+    "time": "23:54:06",
+    "year": "2001",
+    "month": "07",
+    "day": "21",
+    "hour": "23",
+    "minute": "54",
+    "second": "06"
+  },
+  {
+    "id": 5485,
+    "heading": "A CONFIRMATION",
+    "created": "2001-07-22 00:17:03",
+    "linked_file": null,
+    "hugo": "5485-a-confirmation",
+    "date": "2001-07-22",
+    "time": "00:17:03",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "17",
+    "second": "03"
+  },
+  {
+    "id": 5603,
+    "heading": "A tuttti gli avvocati",
+    "created": "2001-07-22 00:29:19",
+    "linked_file": null,
+    "hugo": "5603-a-tuttti-gli-avvocati",
+    "date": "2001-07-22",
+    "time": "00:29:19",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "29",
+    "second": "19"
+  },
+  {
+    "id": 5568,
+    "heading": "Very confused about everything and everyone.",
+    "created": "2001-07-22 00:43:03",
+    "linked_file": null,
+    "hugo": "5568-very-confused-about-everything-and-everyone",
+    "date": "2001-07-22",
+    "time": "00:43:03",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "43",
+    "second": "03"
+  },
+  {
+    "id": 5619,
+    "heading": "solidarity in MELBOURNE",
+    "created": "2001-07-22 00:47:02",
+    "linked_file": null,
+    "hugo": "5619-solidarity-in-melbourne",
+    "date": "2001-07-22",
+    "time": "00:47:02",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "00",
+    "minute": "47",
+    "second": "02"
+  },
+  {
+    "id": 5564,
+    "heading": "Eyewitness report on znet",
+    "created": "2001-07-22 01:07:39",
+    "linked_file": null,
+    "hugo": "5564-eyewitness-report-on-znet",
+    "date": "2001-07-22",
+    "time": "01:07:39",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "01",
+    "minute": "07",
+    "second": "39"
+  },
+  {
+    "id": 5581,
+    "heading": "Three Cheers for IMC Italy",
+    "created": "2001-07-22 01:09:20",
+    "linked_file": null,
+    "hugo": "5581-three-cheers-for-imc-italy",
+    "date": "2001-07-22",
+    "time": "01:09:20",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "01",
+    "minute": "09",
+    "second": "20"
+  },
+  {
+    "id": 5487,
+    "heading": "Call to CGT for General Strike in Italy with World Strike to follow \n",
+    "created": "2001-07-22 01:54:53",
+    "linked_file": null,
+    "hugo": "5487-call-to-cgt-for-general-strike-in-italy-with-world-strike-to-follow",
+    "date": "2001-07-22",
+    "time": "01:54:53",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "01",
+    "minute": "54",
+    "second": "53"
+  },
+  {
+    "id": 5608,
+    "heading": "Solidaridad!!",
+    "created": "2001-07-22 02:00:28",
+    "linked_file": null,
+    "hugo": "5608-solidaridad",
+    "date": "2001-07-22",
+    "time": "02:00:28",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "00",
+    "second": "28"
+  },
+  {
+    "id": 5651,
+    "heading": "photos g8 and solidarity on yahoo.com",
+    "created": "2001-07-22 02:03:56",
+    "linked_file": null,
+    "hugo": "5651-photos-g8-and-solidarity-on-yahoocom",
+    "date": "2001-07-22",
+    "time": "02:03:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "03",
+    "second": "56"
+  },
+  {
+    "id": 4464,
+    "heading": "Demostrations in Madrid and Barcelona",
+    "created": "2001-07-22 02:13:57",
+    "linked_file": null,
+    "hugo": "4464-demostrations-in-madrid-and-barcelona",
+    "date": "2001-07-22",
+    "time": "02:13:57",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "13",
+    "second": "57"
+  },
+  {
+    "id": 5657,
+    "heading": "dealing with trauma",
+    "created": "2001-07-22 02:15:01",
+    "linked_file": null,
+    "hugo": "5657-dealing-with-trauma",
+    "date": "2001-07-22",
+    "time": "02:15:01",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "15",
+    "second": "01"
+  },
+  {
+    "id": 5666,
+    "heading": "Polizeiterror in Genua",
+    "created": "2001-07-22 02:25:22",
+    "linked_file": null,
+    "hugo": "5666-polizeiterror-in-genua",
+    "date": "2001-07-22",
+    "time": "02:25:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "25",
+    "second": "22"
+  },
+  {
+    "id": 5677,
+    "heading": "Hardt/Negri on Genoa",
+    "created": "2001-07-22 02:29:54",
+    "linked_file": null,
+    "hugo": "5677-hardtnegri-on-genoa",
+    "date": "2001-07-22",
+    "time": "02:29:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "29",
+    "second": "54"
+  },
+  {
+    "id": 5685,
+    "heading": "PROCESSIONE JUBILEE AUSTRALIA CONTRO DEBITO DELL' TERZO MONDO",
+    "created": "2001-07-22 02:36:23",
+    "linked_file": "2001/07/jubileeprocession.rm",
+    "hugo": "5685-processione-jubilee-australia-contro-debito-dell-terzo-mondo",
+    "date": "2001-07-22",
+    "time": "02:36:23",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "36",
+    "second": "23"
+  },
+  {
+    "id": 5477,
+    "heading": "Father of dead protester 'sorry' for policeman",
+    "created": "2001-07-22 02:43:34",
+    "linked_file": null,
+    "hugo": "5477-father-of-dead-protester-sorry-for-policeman",
+    "date": "2001-07-22",
+    "time": "02:43:34",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "43",
+    "second": "34"
+  },
+  {
+    "id": 5669,
+    "heading": "CNN: \"Minor\" injuries in raid",
+    "created": "2001-07-22 02:51:49",
+    "linked_file": null,
+    "hugo": "5669-cnn-minor-injuries-in-raid",
+    "date": "2001-07-22",
+    "time": "02:51:49",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "51",
+    "second": "49"
+  },
+  {
+    "id": 5330,
+    "heading": "attiviamo subito le reti cittadine",
+    "created": "2001-07-22 02:51:57",
+    "linked_file": null,
+    "hugo": "5330-attiviamo-subito-le-reti-cittadine",
+    "date": "2001-07-22",
+    "time": "02:51:57",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "02",
+    "minute": "51",
+    "second": "57"
+  },
+  {
+    "id": 5701,
+    "heading": "Getting out of Genova....Rideshare board",
+    "created": "2001-07-22 03:17:52",
+    "linked_file": null,
+    "hugo": "5701-getting-out-of-genovarideshare-board",
+    "date": "2001-07-22",
+    "time": "03:17:52",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "17",
+    "second": "52"
+  },
+  {
+    "id": 5718,
+    "heading": "solidarity action in Tampere, Finland",
+    "created": "2001-07-22 03:45:31",
+    "linked_file": null,
+    "hugo": "5718-solidarity-action-in-tampere-finland",
+    "date": "2001-07-22",
+    "time": "03:45:31",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "45",
+    "second": "31"
+  },
+  {
+    "id": 5688,
+    "heading": "letter to my dad",
+    "created": "2001-07-22 03:46:29",
+    "linked_file": null,
+    "hugo": "5688-letter-to-my-dad",
+    "date": "2001-07-22",
+    "time": "03:46:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "46",
+    "second": "29"
+  },
+  {
+    "id": 5354,
+    "heading": "Plea for Coverage",
+    "created": "2001-07-22 03:47:22",
+    "linked_file": null,
+    "hugo": "5354-plea-for-coverage",
+    "date": "2001-07-22",
+    "time": "03:47:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "47",
+    "second": "22"
+  },
+  {
+    "id": 5638,
+    "heading": "E' stato fatto il loro gioco",
+    "created": "2001-07-22 03:51:15",
+    "linked_file": null,
+    "hugo": "5638-e-stato-fatto-il-loro-gioco",
+    "date": "2001-07-22",
+    "time": "03:51:15",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "51",
+    "second": "15"
+  },
+  {
+    "id": 5706,
+    "heading": "Pig Head",
+    "created": "2001-07-22 03:57:28",
+    "linked_file": null,
+    "hugo": "5706-pig-head",
+    "date": "2001-07-22",
+    "time": "03:57:28",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "03",
+    "minute": "57",
+    "second": "28"
+  },
+  {
+    "id": 5736,
+    "heading": "Pix and real from german television about GAP and IMC raid",
+    "created": "2001-07-22 04:04:19",
+    "linked_file": null,
+    "hugo": "5736-pix-and-real-from-german-television-about-gap-and-imc-raid",
+    "date": "2001-07-22",
+    "time": "04:04:19",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "04",
+    "second": "19"
+  },
+  {
+    "id": 5617,
+    "heading": "regular carabinieri or commando?",
+    "created": "2001-07-22 04:12:26",
+    "linked_file": null,
+    "hugo": "5617-regular-carabinieri-or-commando",
+    "date": "2001-07-22",
+    "time": "04:12:26",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "12",
+    "second": "26"
+  },
+  {
+    "id": 5762,
+    "heading": "xc-999",
+    "created": "2001-07-22 04:41:41",
+    "linked_file": null,
+    "hugo": "5762-xc999",
+    "date": "2001-07-22",
+    "time": "04:41:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "41",
+    "second": "41"
+  },
+  {
+    "id": 5745,
+    "heading": "People needed in climate action camp - NOW!",
+    "created": "2001-07-22 04:42:02",
+    "linked_file": null,
+    "hugo": "5745-people-needed-in-climate-action-camp-now",
+    "date": "2001-07-22",
+    "time": "04:42:02",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "42",
+    "second": "02"
+  },
+  {
+    "id": 5436,
+    "heading": "ITALIAN MEDIAS NOW ARE NOT TALKING ABOUT INDYMEDIA IRRUPTION!",
+    "created": "2001-07-22 04:52:40",
+    "linked_file": null,
+    "hugo": "5436-italian-medias-now-are-not-talking-about-indymedia-irruption",
+    "date": "2001-07-22",
+    "time": "04:52:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "04",
+    "minute": "52",
+    "second": "40"
+  },
+  {
+    "id": 5774,
+    "heading": "Another video on GSF & IMC police raid",
+    "created": "2001-07-22 05:05:09",
+    "linked_file": null,
+    "hugo": "5774-another-video-on-gsf-imc-police-raid",
+    "date": "2001-07-22",
+    "time": "05:05:09",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "05",
+    "second": "09"
+  },
+  {
+    "id": 3042,
+    "heading": "ANCORA  ATTENTATI INCENDIARI CONTRO IL G8",
+    "created": "2001-07-22 05:12:12",
+    "linked_file": null,
+    "hugo": "3042-ancora-attentati-incendiari-contro-il-g8",
+    "date": "2001-07-22",
+    "time": "05:12:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "12",
+    "second": "12"
+  },
+  {
+    "id": 5777,
+    "heading": "genoa: the true face of global capitalism",
+    "created": "2001-07-22 05:30:53",
+    "linked_file": null,
+    "hugo": "5777-genoa-the-true-face-of-global-capitalism",
+    "date": "2001-07-22",
+    "time": "05:30:53",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "30",
+    "second": "53"
+  },
+  {
+    "id": 5695,
+    "heading": "BBC: Not so \"minor\" raid, injuries",
+    "created": "2001-07-22 05:47:42",
+    "linked_file": null,
+    "hugo": "5695-bbc-not-so-minor-raid-injuries",
+    "date": "2001-07-22",
+    "time": "05:47:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "47",
+    "second": "42"
+  },
+  {
+    "id": 5780,
+    "heading": "Help get the truth out",
+    "created": "2001-07-22 05:49:41",
+    "linked_file": "2001/07/genoa_poster9sow0o.gif",
+    "hugo": "5780-help-get-the-truth-out",
+    "date": "2001-07-22",
+    "time": "05:49:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "05",
+    "minute": "49",
+    "second": "41"
+  },
+  {
+    "id": 5785,
+    "heading": "Retorn a Barna",
+    "created": "2001-07-22 06:37:42",
+    "linked_file": null,
+    "hugo": "5785-retorn-a-barna",
+    "date": "2001-07-22",
+    "time": "06:37:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "06",
+    "minute": "37",
+    "second": "42"
+  },
+  {
+    "id": 5727,
+    "heading": "video - police raid GSF/IMC",
+    "created": "2001-07-22 06:40:40",
+    "linked_file": null,
+    "hugo": "5727-video-police-raid-gsfimc",
+    "date": "2001-07-22",
+    "time": "06:40:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "06",
+    "minute": "40",
+    "second": "40"
+  },
+  {
+    "id": 5694,
+    "heading": "This is what capitalist 'democracy' looks like!",
+    "created": "2001-07-22 06:47:10",
+    "linked_file": null,
+    "hugo": "5694-this-is-what-capitalist-democracy-looks-like",
+    "date": "2001-07-22",
+    "time": "06:47:10",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "06",
+    "minute": "47",
+    "second": "10"
+  },
+  {
+    "id": 4850,
+    "heading": "solidarity demonstration in bielefeld/germany",
+    "created": "2001-07-22 07:01:00",
+    "linked_file": null,
+    "hugo": "4850-solidarity-demonstration-in-bielefeldgermany",
+    "date": "2001-07-22",
+    "time": "07:01:00",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "01",
+    "second": "00"
+  },
+  {
+    "id": 4801,
+    "heading": "Italian Police Violence Appalling!",
+    "created": "2001-07-22 07:11:01",
+    "linked_file": null,
+    "hugo": "4801-italian-police-violence-appalling",
+    "date": "2001-07-22",
+    "time": "07:11:01",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "11",
+    "second": "01"
+  },
+  {
+    "id": 55,
+    "heading": "ore 9.30 via indipendenza off limits",
+    "created": "2001-07-22 07:11:27",
+    "linked_file": "2001/07/via35.rm",
+    "hugo": "55-ore-930-via-indipendenza-off-limits",
+    "date": "2001-07-22",
+    "time": "07:11:27",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "11",
+    "second": "27"
+  },
+  {
+    "id": 5846,
+    "heading": "Solidarity to fighters in Genoa",
+    "created": "2001-07-22 07:31:54",
+    "linked_file": null,
+    "hugo": "5846-solidarity-to-fighters-in-genoa",
+    "date": "2001-07-22",
+    "time": "07:31:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "31",
+    "second": "54"
+  },
+  {
+    "id": 5943,
+    "heading": "repressione a Genova",
+    "created": "2001-07-22 07:53:12",
+    "linked_file": null,
+    "hugo": "5943-repressione-a-genova",
+    "date": "2001-07-22",
+    "time": "07:53:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "53",
+    "second": "12"
+  },
+  {
+    "id": 5946,
+    "heading": "More reports of Italy Indymedia and Genoa Social Forum raid, brutality. LINKS.",
+    "created": "2001-07-22 07:56:58",
+    "linked_file": null,
+    "hugo": "5946-more-reports-of-italy-indymedia-and-genoa-social-forum-raid-brutality-links",
+    "date": "2001-07-22",
+    "time": "07:56:58",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "07",
+    "minute": "56",
+    "second": "58"
+  },
+  {
+    "id": 5949,
+    "heading": "Blicero - The Day After (mp3)",
+    "created": "2001-07-22 08:00:18",
+    "linked_file": null,
+    "hugo": "5949-blicero-the-day-after-mp3",
+    "date": "2001-07-22",
+    "time": "08:00:18",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "00",
+    "second": "18"
+  },
+  {
+    "id": 5938,
+    "heading": "che fare",
+    "created": "2001-07-22 08:02:44",
+    "linked_file": null,
+    "hugo": "5938-che-fare",
+    "date": "2001-07-22",
+    "time": "08:02:44",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "02",
+    "second": "44"
+  },
+  {
+    "id": 5944,
+    "heading": "Undercurrents-Media attacked in Genoa",
+    "created": "2001-07-22 08:30:02",
+    "linked_file": null,
+    "hugo": "5944-undercurrentsmedia-attacked-in-genoa",
+    "date": "2001-07-22",
+    "time": "08:30:02",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "30",
+    "second": "02"
+  },
+  {
+    "id": 4110,
+    "heading": "A day Of Battle",
+    "created": "2001-07-22 08:35:05",
+    "linked_file": null,
+    "hugo": "4110-a-day-of-battle",
+    "date": "2001-07-22",
+    "time": "08:35:05",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "35",
+    "second": "05"
+  },
+  {
+    "id": 5871,
+    "heading": "23/7/01 manifestazione davanti ambasciata italiana a Londra",
+    "created": "2001-07-22 08:47:12",
+    "linked_file": null,
+    "hugo": "5871-23701-manifestazione-davanti-ambasciata-italiana-a-londra",
+    "date": "2001-07-22",
+    "time": "08:47:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "08",
+    "minute": "47",
+    "second": "12"
+  },
+  {
+    "id": 5827,
+    "heading": "è disgustosa l'informazione che viene servita sulle reti Mediaset",
+    "created": "2001-07-22 09:06:55",
+    "linked_file": null,
+    "hugo": "5827-e-disgustosa-linformazione-che-viene-servita-sulle-reti-mediaset",
+    "date": "2001-07-22",
+    "time": "09:06:55",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "06",
+    "second": "55"
+  },
+  {
+    "id": 5919,
+    "heading": "Organizzazione Eventi di Piazza non violenti ma decisi",
+    "created": "2001-07-22 09:14:42",
+    "linked_file": null,
+    "hugo": "5919-organizzazione-eventi-di-piazza-non-violenti-ma-decisi",
+    "date": "2001-07-22",
+    "time": "09:14:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "14",
+    "second": "42"
+  },
+  {
+    "id": 5798,
+    "heading": "LA GENTE Si RENDE REALMENTE CONTO DI QUELLO CHE SUCCEDE?",
+    "created": "2001-07-22 09:23:17",
+    "linked_file": null,
+    "hugo": "5798-la-gente-si-rende-realmente-conto-di-quello-che-succede",
+    "date": "2001-07-22",
+    "time": "09:23:17",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "23",
+    "second": "17"
+  },
+  {
+    "id": 5106,
+    "heading": "ARE YOU LIARS WORLD LEADERS?",
+    "created": "2001-07-22 09:30:16",
+    "linked_file": "2001/07/_1400627_sheep1.jpg",
+    "hugo": "5106-are-you-liars-world-leaders",
+    "date": "2001-07-22",
+    "time": "09:30:16",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "30",
+    "second": "16"
+  },
+  {
+    "id": 5823,
+    "heading": "detailed eyewitness account of raid on indymedia",
+    "created": "2001-07-22 09:37:22",
+    "linked_file": null,
+    "hugo": "5823-detailed-eyewitness-account-of-raid-on-indymedia",
+    "date": "2001-07-22",
+    "time": "09:37:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "37",
+    "second": "22"
+  },
+  {
+    "id": 5473,
+    "heading": "Report on BBC",
+    "created": "2001-07-22 09:49:57",
+    "linked_file": null,
+    "hugo": "5473-report-on-bbc",
+    "date": "2001-07-22",
+    "time": "09:49:57",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "09",
+    "minute": "49",
+    "second": "57"
+  },
+  {
+    "id": 5875,
+    "heading": "Searches in Milan",
+    "created": "2001-07-22 10:06:16",
+    "linked_file": null,
+    "hugo": "5875-searches-in-milan",
+    "date": "2001-07-22",
+    "time": "10:06:16",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "06",
+    "second": "16"
+  },
+  {
+    "id": 5935,
+    "heading": "why ?",
+    "created": "2001-07-22 10:13:52",
+    "linked_file": null,
+    "hugo": "5935-why-",
+    "date": "2001-07-22",
+    "time": "10:13:52",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "13",
+    "second": "52"
+  },
+  {
+    "id": 5775,
+    "heading": "GSF Terroristi per Berlusconi",
+    "created": "2001-07-22 10:15:20",
+    "linked_file": null,
+    "hugo": "5775-gsf-terroristi-per-berlusconi",
+    "date": "2001-07-22",
+    "time": "10:15:20",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "15",
+    "second": "20"
+  },
+  {
+    "id": 5976,
+    "heading": "solidarity action in front of italian embassy in brussels",
+    "created": "2001-07-22 10:26:23",
+    "linked_file": null,
+    "hugo": "5976-solidarity-action-in-front-of-italian-embassy-in-brussels",
+    "date": "2001-07-22",
+    "time": "10:26:23",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "26",
+    "second": "23"
+  },
+  {
+    "id": 5760,
+    "heading": "G8 2002",
+    "created": "2001-07-22 10:28:07",
+    "linked_file": null,
+    "hugo": "5760-g8-2002",
+    "date": "2001-07-22",
+    "time": "10:28:07",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "28",
+    "second": "07"
+  },
+  {
+    "id": 6005,
+    "heading": "why2?",
+    "created": "2001-07-22 10:28:53",
+    "linked_file": null,
+    "hugo": "6005-why2",
+    "date": "2001-07-22",
+    "time": "10:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 5848,
+    "heading": "Black bloc anarchici?",
+    "created": "2001-07-22 10:29:54",
+    "linked_file": null,
+    "hugo": "5848-black-bloc-anarchici",
+    "date": "2001-07-22",
+    "time": "10:29:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "29",
+    "second": "54"
+  },
+  {
+    "id": 6069,
+    "heading": "Mercoledì 18 luglio",
+    "created": "2001-07-22 10:35:49",
+    "linked_file": null,
+    "hugo": "6069-mercoledi-18-luglio",
+    "date": "2001-07-22",
+    "time": "10:35:49",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "35",
+    "second": "49"
+  },
+  {
+    "id": 5866,
+    "heading": "polizia=black bloc...ora informiamo!!",
+    "created": "2001-07-22 10:41:35",
+    "linked_file": null,
+    "hugo": "5866-poliziablack-blocora-informiamo",
+    "date": "2001-07-22",
+    "time": "10:41:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "10",
+    "minute": "41",
+    "second": "35"
+  },
+  {
+    "id": 6027,
+    "heading": "Help Save Their Lives - Get Help - No More G8 Martyrs",
+    "created": "2001-07-22 11:48:15",
+    "linked_file": null,
+    "hugo": "6027-help-save-their-lives-get-help-no-more-g8-martyrs",
+    "date": "2001-07-22",
+    "time": "11:48:15",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "11",
+    "minute": "48",
+    "second": "15"
+  },
+  {
+    "id": 6124,
+    "heading": "Solidarity action, Stockholm.",
+    "created": "2001-07-22 11:55:28",
+    "linked_file": null,
+    "hugo": "6124-solidarity-action-stockholm",
+    "date": "2001-07-22",
+    "time": "11:55:28",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "11",
+    "minute": "55",
+    "second": "28"
+  },
+  {
+    "id": 3194,
+    "heading": "A kiss from Africa",
+    "created": "2001-07-22 12:11:24",
+    "linked_file": "2001/07/kiss.mp3",
+    "hugo": "3194-a-kiss-from-africa",
+    "date": "2001-07-22",
+    "time": "12:11:24",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "11",
+    "second": "24"
+  },
+  {
+    "id": 5964,
+    "heading": "Ma siomo solo noi utenti a postare? Le notizie da Genova dove sono?",
+    "created": "2001-07-22 12:20:29",
+    "linked_file": null,
+    "hugo": "5964-ma-siomo-solo-noi-utenti-a-postare-le-notizie-da-genova-dove-sono",
+    "date": "2001-07-22",
+    "time": "12:20:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "20",
+    "second": "29"
+  },
+  {
+    "id": 4418,
+    "heading": "una storia vera",
+    "created": "2001-07-22 12:42:45",
+    "linked_file": "2001/07/accertamenti.doc",
+    "hugo": "4418-una-storia-vera",
+    "date": "2001-07-22",
+    "time": "12:42:45",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "42",
+    "second": "45"
+  },
+  {
+    "id": 6156,
+    "heading": "Global boycott",
+    "created": "2001-07-22 12:51:25",
+    "linked_file": null,
+    "hugo": "6156-global-boycott",
+    "date": "2001-07-22",
+    "time": "12:51:25",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "51",
+    "second": "25"
+  },
+  {
+    "id": 6176,
+    "heading": "serviva il sangue su un movimento politico nuovo",
+    "created": "2001-07-22 12:57:41",
+    "linked_file": null,
+    "hugo": "6176-serviva-il-sangue-su-un-movimento-politico-nuovo",
+    "date": "2001-07-22",
+    "time": "12:57:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "12",
+    "minute": "57",
+    "second": "41"
+  },
+  {
+    "id": 6120,
+    "heading": "GENOVA: CARABINIERI TRAVESTITI DA BLACK BLOC -1",
+    "created": "2001-07-22 13:04:22",
+    "linked_file": null,
+    "hugo": "6120-genova-carabinieri-travestiti-da-black-bloc-1",
+    "date": "2001-07-22",
+    "time": "13:04:22",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "04",
+    "second": "22"
+  },
+  {
+    "id": 6181,
+    "heading": "Useful Contacts",
+    "created": "2001-07-22 13:07:15",
+    "linked_file": null,
+    "hugo": "6181-useful-contacts",
+    "date": "2001-07-22",
+    "time": "13:07:15",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "07",
+    "second": "15"
+  },
+  {
+    "id": 6115,
+    "heading": "italian embassies and consulates mailbot",
+    "created": "2001-07-22 13:14:41",
+    "linked_file": null,
+    "hugo": "6115-italian-embassies-and-consulates-mailbot",
+    "date": "2001-07-22",
+    "time": "13:14:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "14",
+    "second": "41"
+  },
+  {
+    "id": 4875,
+    "heading": "After the shootings in Genoa: For a general strike now to bring down the Berlusc",
+    "created": "2001-07-22 13:16:46",
+    "linked_file": null,
+    "hugo": "4875-after-the-shootings-in-genoa-for-a-general-strike-now-to-bring-down-the-berlusc",
+    "date": "2001-07-22",
+    "time": "13:16:46",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "16",
+    "second": "46"
+  },
+  {
+    "id": 6202,
+    "heading": "pic (1) of solidemo in Amsterdam",
+    "created": "2001-07-22 13:19:39",
+    "linked_file": "2001/07/demo2.jpg",
+    "hugo": "6202-pic-1-of-solidemo-in-amsterdam",
+    "date": "2001-07-22",
+    "time": "13:19:39",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "19",
+    "second": "39"
+  },
+  {
+    "id": 6204,
+    "heading": "pic (2) of solidemo in Amsterdam",
+    "created": "2001-07-22 13:20:12",
+    "linked_file": "2001/07/demo1.jpg",
+    "hugo": "6204-pic-2-of-solidemo-in-amsterdam",
+    "date": "2001-07-22",
+    "time": "13:20:12",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "20",
+    "second": "12"
+  },
+  {
+    "id": 6125,
+    "heading": "Nothing'll stop us! Brussels december 14: we'll be there!",
+    "created": "2001-07-22 13:23:05",
+    "linked_file": "2001/07/d14_wab_fly_hor.gif",
+    "hugo": "6125-nothingll-stop-us-brussels-december-14-well-be-there",
+    "date": "2001-07-22",
+    "time": "13:23:05",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "23",
+    "second": "05"
+  },
+  {
+    "id": 6076,
+    "heading": "Solidarity actions !planned in Connecticut, New York City",
+    "created": "2001-07-22 13:27:16",
+    "linked_file": null,
+    "hugo": "6076-solidarity-actions-planned-in-connecticut-new-york-city",
+    "date": "2001-07-22",
+    "time": "13:27:16",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "27",
+    "second": "16"
+  },
+  {
+    "id": 6029,
+    "heading": "Bastardi",
+    "created": "2001-07-22 13:46:30",
+    "linked_file": null,
+    "hugo": "6029-bastardi",
+    "date": "2001-07-22",
+    "time": "13:46:30",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "46",
+    "second": "30"
+  },
+  {
+    "id": 6051,
+    "heading": "Virus",
+    "created": "2001-07-22 13:56:41",
+    "linked_file": null,
+    "hugo": "6051-virus",
+    "date": "2001-07-22",
+    "time": "13:56:41",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "56",
+    "second": "41"
+  },
+  {
+    "id": 6238,
+    "heading": "Some Pictures from the Manifestation in Berlin",
+    "created": "2001-07-22 13:57:50",
+    "linked_file": "2001/07/4885.jpg",
+    "hugo": "6238-some-pictures-from-the-manifestation-in-berlin",
+    "date": "2001-07-22",
+    "time": "13:57:50",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "13",
+    "minute": "57",
+    "second": "50"
+  },
+  {
+    "id": 6108,
+    "heading": "INDISPENSABILI VIDEO E FOTO",
+    "created": "2001-07-22 14:10:23",
+    "linked_file": null,
+    "hugo": "6108-indispensabili-video-e-foto",
+    "date": "2001-07-22",
+    "time": "14:10:23",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "10",
+    "second": "23"
+  },
+  {
+    "id": 3833,
+    "heading": "Genova 20th...personal report",
+    "created": "2001-07-22 14:26:01",
+    "linked_file": null,
+    "hugo": "3833-genova-20thpersonal-report",
+    "date": "2001-07-22",
+    "time": "14:26:01",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "26",
+    "second": "01"
+  },
+  {
+    "id": 6188,
+    "heading": "Still here",
+    "created": "2001-07-22 14:40:30",
+    "linked_file": null,
+    "hugo": "6188-still-here",
+    "date": "2001-07-22",
+    "time": "14:40:30",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "40",
+    "second": "30"
+  },
+  {
+    "id": 6269,
+    "heading": "Per tutti i testimoni/For all Witness",
+    "created": "2001-07-22 14:43:13",
+    "linked_file": null,
+    "hugo": "6269-per-tutti-i-testimonifor-all-witness",
+    "date": "2001-07-22",
+    "time": "14:43:13",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "14",
+    "minute": "43",
+    "second": "13"
+  },
+  {
+    "id": 5832,
+    "heading": "Perchè l'attacco al GSF?",
+    "created": "2001-07-22 15:25:56",
+    "linked_file": null,
+    "hugo": "5832-perche-lattacco-al-gsf",
+    "date": "2001-07-22",
+    "time": "15:25:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "25",
+    "second": "56"
+  },
+  {
+    "id": 5837,
+    "heading": "ma non siamo intifada",
+    "created": "2001-07-22 15:27:21",
+    "linked_file": null,
+    "hugo": "5837-ma-non-siamo-intifada",
+    "date": "2001-07-22",
+    "time": "15:27:21",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "27",
+    "second": "21"
+  },
+  {
+    "id": 2373,
+    "heading": "Vademecum Legale per Media Attivisti",
+    "created": "2001-07-22 15:27:29",
+    "linked_file": null,
+    "hugo": "2373-vademecum-legale-per-media-attivisti",
+    "date": "2001-07-22",
+    "time": "15:27:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "27",
+    "second": "29"
+  },
+  {
+    "id": 6144,
+    "heading": "polizia ignora black blocks al campo del \"Valletta Cambiaso\"",
+    "created": "2001-07-22 15:39:43",
+    "linked_file": null,
+    "hugo": "6144-polizia-ignora-black-blocks-al-campo-del-valletta-cambiaso",
+    "date": "2001-07-22",
+    "time": "15:39:43",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "39",
+    "second": "43"
+  },
+  {
+    "id": 6276,
+    "heading": "Legittima difesa?",
+    "created": "2001-07-22 15:48:34",
+    "linked_file": null,
+    "hugo": "6276-legittima-difesa",
+    "date": "2001-07-22",
+    "time": "15:48:34",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "15",
+    "minute": "48",
+    "second": "34"
+  },
+  {
+    "id": 6257,
+    "heading": "23/7 g8 ASSEMB.CITTAD. ROMA",
+    "created": "2001-07-22 16:28:40",
+    "linked_file": null,
+    "hugo": "6257-237-g8-assembcittad-roma",
+    "date": "2001-07-22",
+    "time": "16:28:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "16",
+    "minute": "28",
+    "second": "40"
+  },
+  {
+    "id": 6190,
+    "heading": "Sir Bob Geldof and Carlo Giuliani",
+    "created": "2001-07-22 16:49:14",
+    "linked_file": null,
+    "hugo": "6190-sir-bob-geldof-and-carlo-giuliani",
+    "date": "2001-07-22",
+    "time": "16:49:14",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "16",
+    "minute": "49",
+    "second": "14"
+  },
+  {
+    "id": 6031,
+    "heading": "CASARINI VATTENE",
+    "created": "2001-07-22 16:57:14",
+    "linked_file": null,
+    "hugo": "6031-casarini-vattene",
+    "date": "2001-07-22",
+    "time": "16:57:14",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "16",
+    "minute": "57",
+    "second": "14"
+  },
+  {
+    "id": 6374,
+    "heading": "Demonstration in London",
+    "created": "2001-07-22 17:09:35",
+    "linked_file": null,
+    "hugo": "6374-demonstration-in-london",
+    "date": "2001-07-22",
+    "time": "17:09:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "17",
+    "minute": "09",
+    "second": "35"
+  },
+  {
+    "id": 5553,
+    "heading": "Anarchist Response to NPR",
+    "created": "2001-07-22 17:24:40",
+    "linked_file": null,
+    "hugo": "5553-anarchist-response-to-npr",
+    "date": "2001-07-22",
+    "time": "17:24:40",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "17",
+    "minute": "24",
+    "second": "40"
+  },
+  {
+    "id": 6239,
+    "heading": "grida di libertà",
+    "created": "2001-07-22 17:26:29",
+    "linked_file": null,
+    "hugo": "6239-grida-di-liberta",
+    "date": "2001-07-22",
+    "time": "17:26:29",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "17",
+    "minute": "26",
+    "second": "29"
+  },
+  {
+    "id": 6171,
+    "heading": "Dead Protesters?",
+    "created": "2001-07-22 18:01:33",
+    "linked_file": null,
+    "hugo": "6171-dead-protesters",
+    "date": "2001-07-22",
+    "time": "18:01:33",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "01",
+    "second": "33"
+  },
+  {
+    "id": 6278,
+    "heading": "We in Pacific Northwest are demonstrating our solidarity",
+    "created": "2001-07-22 18:08:43",
+    "linked_file": null,
+    "hugo": "6278-we-in-pacific-northwest-are-demonstrating-our-solidarity",
+    "date": "2001-07-22",
+    "time": "18:08:43",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "08",
+    "second": "43"
+  },
+  {
+    "id": 4953,
+    "heading": "Carlo morto",
+    "created": "2001-07-22 18:09:09",
+    "linked_file": "2001/07/carlo_giuliani.jpg",
+    "hugo": "4953-carlo-morto",
+    "date": "2001-07-22",
+    "time": "18:09:09",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "09",
+    "second": "09"
+  },
+  {
+    "id": 6229,
+    "heading": "A genova c'ero e posso dire",
+    "created": "2001-07-22 18:31:08",
+    "linked_file": null,
+    "hugo": "6229-a-genova-cero-e-posso-dire",
+    "date": "2001-07-22",
+    "time": "18:31:08",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "31",
+    "second": "08"
+  },
+  {
+    "id": 6321,
+    "heading": "\"Immigrants, Mad Dogs, and Englishmen\"",
+    "created": "2001-07-22 18:49:35",
+    "linked_file": null,
+    "hugo": "6321-immigrants-mad-dogs-and-englishmen",
+    "date": "2001-07-22",
+    "time": "18:49:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "18",
+    "minute": "49",
+    "second": "35"
+  },
+  {
+    "id": 6325,
+    "heading": "Amsterdam demonstration in memory of Carlo",
+    "created": "2001-07-22 19:18:56",
+    "linked_file": null,
+    "hugo": "6325-amsterdam-demonstration-in-memory-of-carlo",
+    "date": "2001-07-22",
+    "time": "19:18:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "19",
+    "minute": "18",
+    "second": "56"
+  },
+  {
+    "id": 6186,
+    "heading": "Il Black block non esiste!! The BB doesn't exist!",
+    "created": "2001-07-22 19:43:10",
+    "linked_file": null,
+    "hugo": "6186-il-black-block-non-esiste-the-bb-doesnt-exist",
+    "date": "2001-07-22",
+    "time": "19:43:10",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "19",
+    "minute": "43",
+    "second": "10"
+  },
+  {
+    "id": 5955,
+    "heading": "YOU ARE A BLACK PIG",
+    "created": "2001-07-22 20:05:42",
+    "linked_file": null,
+    "hugo": "5955-you-are-a-black-pig",
+    "date": "2001-07-22",
+    "time": "20:05:42",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "20",
+    "minute": "05",
+    "second": "42"
+  },
+  {
+    "id": 6260,
+    "heading": "what  I've seen in Genoa",
+    "created": "2001-07-22 20:32:56",
+    "linked_file": null,
+    "hugo": "6260-what-ive-seen-in-genoa",
+    "date": "2001-07-22",
+    "time": "20:32:56",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "20",
+    "minute": "32",
+    "second": "56"
+  },
+  {
+    "id": 6424,
+    "heading": "Media Democracy Day (October 19th): International Day of Media Protest",
+    "created": "2001-07-22 20:58:17",
+    "linked_file": null,
+    "hugo": "6424-media-democracy-day-october-19th-international-day-of-media-protest",
+    "date": "2001-07-22",
+    "time": "20:58:17",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "20",
+    "minute": "58",
+    "second": "17"
+  },
+  {
+    "id": 4958,
+    "heading": "Bloody sidewalks",
+    "created": "2001-07-22 21:17:54",
+    "linked_file": "2001/07/blood.jpg.jpg",
+    "hugo": "4958-bloody-sidewalks",
+    "date": "2001-07-22",
+    "time": "21:17:54",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "21",
+    "minute": "17",
+    "second": "54"
+  },
+  {
+    "id": 6484,
+    "heading": "New tactics needed in a new situation of propaganda war",
+    "created": "2001-07-22 21:29:25",
+    "linked_file": null,
+    "hugo": "6484-new-tactics-needed-in-a-new-situation-of-propaganda-war",
+    "date": "2001-07-22",
+    "time": "21:29:25",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "21",
+    "minute": "29",
+    "second": "25"
+  },
+  {
+    "id": 3380,
+    "heading": "genova.eventi.19",
+    "created": "2001-07-22 21:29:35",
+    "linked_file": null,
+    "hugo": "3380-genovaeventi19",
+    "date": "2001-07-22",
+    "time": "21:29:35",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "21",
+    "minute": "29",
+    "second": "35"
+  },
+  {
+    "id": 6525,
+    "heading": "Il G8 di Genova - Le radici della violenza",
+    "created": "2001-07-22 22:43:14",
+    "linked_file": null,
+    "hugo": "6525-il-g8-di-genova-le-radici-della-violenza",
+    "date": "2001-07-22",
+    "time": "22:43:14",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "22",
+    "minute": "43",
+    "second": "14"
+  },
+  {
+    "id": 6555,
+    "heading": "Philadelphia Solidarity Protest",
+    "created": "2001-07-22 23:32:11",
+    "linked_file": null,
+    "hugo": "6555-philadelphia-solidarity-protest",
+    "date": "2001-07-22",
+    "time": "23:32:11",
+    "year": "2001",
+    "month": "07",
+    "day": "22",
+    "hour": "23",
+    "minute": "32",
+    "second": "11"
+  },
+  {
+    "id": 6316,
+    "heading": "Malcolm X AND Martin Luther King, hard and soft methods",
+    "created": "2001-07-23 00:04:44",
+    "linked_file": null,
+    "hugo": "6316-malcolm-x-and-martin-luther-king-hard-and-soft-methods",
+    "date": "2001-07-23",
+    "time": "00:04:44",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "00",
+    "minute": "04",
+    "second": "44"
+  },
+  {
+    "id": 6573,
+    "heading": "protest-actions and demonstration in Zurich",
+    "created": "2001-07-23 00:25:24",
+    "linked_file": null,
+    "hugo": "6573-protestactions-and-demonstration-in-zurich",
+    "date": "2001-07-23",
+    "time": "00:25:24",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "00",
+    "minute": "25",
+    "second": "24"
+  },
+  {
+    "id": 6309,
+    "heading": "black block, una prolunga per i manganelli",
+    "created": "2001-07-23 00:35:21",
+    "linked_file": null,
+    "hugo": "6309-black-block-una-prolunga-per-i-manganelli",
+    "date": "2001-07-23",
+    "time": "00:35:21",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "00",
+    "minute": "35",
+    "second": "21"
+  },
+  {
+    "id": 6332,
+    "heading": "Altra magra figura di casarini su rai3 :(",
+    "created": "2001-07-23 01:09:18",
+    "linked_file": null,
+    "hugo": "6332-altra-magra-figura-di-casarini-su-rai3-",
+    "date": "2001-07-23",
+    "time": "01:09:18",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "09",
+    "second": "18"
+  },
+  {
+    "id": 6603,
+    "heading": "Amsterdam protest against G8, capitalism & assassination",
+    "created": "2001-07-23 01:26:46",
+    "linked_file": null,
+    "hugo": "6603-amsterdam-protest-against-g8-capitalism-assassination",
+    "date": "2001-07-23",
+    "time": "01:26:46",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "26",
+    "second": "46"
+  },
+  {
+    "id": 6386,
+    "heading": "what strategy is this?",
+    "created": "2001-07-23 01:39:42",
+    "linked_file": null,
+    "hugo": "6386-what-strategy-is-this",
+    "date": "2001-07-23",
+    "time": "01:39:42",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "39",
+    "second": "42"
+  },
+  {
+    "id": 1234,
+    "heading": "Scontri 17/03/2001",
+    "created": "2001-07-23 01:54:50",
+    "linked_file": "2001/07/angelo_collage.jpg",
+    "hugo": "1234-scontri-17032001",
+    "date": "2001-07-23",
+    "time": "01:54:50",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "54",
+    "second": "50"
+  },
+  {
+    "id": 6480,
+    "heading": "Salo, or the 3 Days of Genoa",
+    "created": "2001-07-23 01:58:48",
+    "linked_file": null,
+    "hugo": "6480-salo-or-the-3-days-of-genoa",
+    "date": "2001-07-23",
+    "time": "01:58:48",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "01",
+    "minute": "58",
+    "second": "48"
+  },
+  {
+    "id": 6378,
+    "heading": "fight Genoa press lies in New York City",
+    "created": "2001-07-23 02:00:37",
+    "linked_file": null,
+    "hugo": "6378-fight-genoa-press-lies-in-new-york-city",
+    "date": "2001-07-23",
+    "time": "02:00:37",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "00",
+    "second": "37"
+  },
+  {
+    "id": 6502,
+    "heading": "mail bombing tools",
+    "created": "2001-07-23 02:10:35",
+    "linked_file": null,
+    "hugo": "6502-mail-bombing-tools",
+    "date": "2001-07-23",
+    "time": "02:10:35",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "10",
+    "second": "35"
+  },
+  {
+    "id": 6298,
+    "heading": "MONTANELLI MUORE",
+    "created": "2001-07-23 02:13:54",
+    "linked_file": null,
+    "hugo": "6298-montanelli-muore",
+    "date": "2001-07-23",
+    "time": "02:13:54",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "13",
+    "second": "54"
+  },
+  {
+    "id": 4909,
+    "heading": "who is mr Agnoletto?",
+    "created": "2001-07-23 02:19:12",
+    "linked_file": null,
+    "hugo": "4909-who-is-mr-agnoletto",
+    "date": "2001-07-23",
+    "time": "02:19:12",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "19",
+    "second": "12"
+  },
+  {
+    "id": 3233,
+    "heading": "iranian manifestation",
+    "created": "2001-07-23 02:37:37",
+    "linked_file": null,
+    "hugo": "3233-iranian-manifestation",
+    "date": "2001-07-23",
+    "time": "02:37:37",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "02",
+    "minute": "37",
+    "second": "37"
+  },
+  {
+    "id": 2346,
+    "heading": "\"TERRA MIA\", CHIENA 'E AMIANTO",
+    "created": "2001-07-23 03:01:33",
+    "linked_file": "2001/07/bagnoli2.jpg",
+    "hugo": "2346-terra-mia-chiena-e-amianto",
+    "date": "2001-07-23",
+    "time": "03:01:33",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "01",
+    "second": "33"
+  },
+  {
+    "id": 6541,
+    "heading": "Canadian Press/Globe & Mail Fail Miserably",
+    "created": "2001-07-23 03:13:23",
+    "linked_file": null,
+    "hugo": "6541-canadian-pressglobe-mail-fail-miserably",
+    "date": "2001-07-23",
+    "time": "03:13:23",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "13",
+    "second": "23"
+  },
+  {
+    "id": 6632,
+    "heading": "Solidarity actions in Sweden",
+    "created": "2001-07-23 03:13:47",
+    "linked_file": null,
+    "hugo": "6632-solidarity-actions-in-sweden",
+    "date": "2001-07-23",
+    "time": "03:13:47",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "13",
+    "second": "47"
+  },
+  {
+    "id": 6388,
+    "heading": "Flood Amnesty International",
+    "created": "2001-07-23 03:17:03",
+    "linked_file": null,
+    "hugo": "6388-flood-amnesty-international",
+    "date": "2001-07-23",
+    "time": "03:17:03",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "17",
+    "second": "03"
+  },
+  {
+    "id": 6664,
+    "heading": "Da \"La Repubblica\"",
+    "created": "2001-07-23 03:29:27",
+    "linked_file": null,
+    "hugo": "6664-da-la-repubblica",
+    "date": "2001-07-23",
+    "time": "03:29:27",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "29",
+    "second": "27"
+  },
+  {
+    "id": 6665,
+    "heading": "Canada trade union solidarity Genova",
+    "created": "2001-07-23 03:30:01",
+    "linked_file": null,
+    "hugo": "6665-canada-trade-union-solidarity-genova",
+    "date": "2001-07-23",
+    "time": "03:30:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "30",
+    "second": "01"
+  },
+  {
+    "id": 5742,
+    "heading": "UN SENTITO GRAZIE",
+    "created": "2001-07-23 03:31:37",
+    "linked_file": null,
+    "hugo": "5742-un-sentito-grazie",
+    "date": "2001-07-23",
+    "time": "03:31:37",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "31",
+    "second": "37"
+  },
+  {
+    "id": 5999,
+    "heading": "Un'impressione tra tante",
+    "created": "2001-07-23 03:42:20",
+    "linked_file": null,
+    "hugo": "5999-unimpressione-tra-tante",
+    "date": "2001-07-23",
+    "time": "03:42:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "42",
+    "second": "20"
+  },
+  {
+    "id": 3158,
+    "heading": "Critcal Mass arrives from Padova",
+    "created": "2001-07-23 03:44:27",
+    "linked_file": "2001/07/crit_mass_padeua.mpg",
+    "hugo": "3158-critcal-mass-arrives-from-padova",
+    "date": "2001-07-23",
+    "time": "03:44:27",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "44",
+    "second": "27"
+  },
+  {
+    "id": 3594,
+    "heading": "Non Black Bloc: SBIRRI / No Black Bloc: cops in disguise",
+    "created": "2001-07-23 03:46:20",
+    "linked_file": null,
+    "hugo": "3594-non-black-bloc-sbirri-no-black-bloc-cops-in-disguise",
+    "date": "2001-07-23",
+    "time": "03:46:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "46",
+    "second": "20"
+  },
+  {
+    "id": 6127,
+    "heading": "Solidarity demonstration in Amsterdam",
+    "created": "2001-07-23 03:50:52",
+    "linked_file": null,
+    "hugo": "6127-solidarity-demonstration-in-amsterdam",
+    "date": "2001-07-23",
+    "time": "03:50:52",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "50",
+    "second": "52"
+  },
+  {
+    "id": 6619,
+    "heading": "Montreal: CLAC Statement on G8 Protests",
+    "created": "2001-07-23 03:50:53",
+    "linked_file": null,
+    "hugo": "6619-montreal-clac-statement-on-g8-protests",
+    "date": "2001-07-23",
+    "time": "03:50:53",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "50",
+    "second": "53"
+  },
+  {
+    "id": 6338,
+    "heading": "polizia infiltrata",
+    "created": "2001-07-23 03:53:29",
+    "linked_file": null,
+    "hugo": "6338-polizia-infiltrata",
+    "date": "2001-07-23",
+    "time": "03:53:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "53",
+    "second": "29"
+  },
+  {
+    "id": 5709,
+    "heading": "Pig Head",
+    "created": "2001-07-23 03:58:19",
+    "linked_file": "2001/07/head_pigs.jpg",
+    "hugo": "5709-pig-head",
+    "date": "2001-07-23",
+    "time": "03:58:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "03",
+    "minute": "58",
+    "second": "19"
+  },
+  {
+    "id": 6082,
+    "heading": "ma cosa sta' succedendo??",
+    "created": "2001-07-23 04:21:19",
+    "linked_file": null,
+    "hugo": "6082-ma-cosa-sta-succedendo",
+    "date": "2001-07-23",
+    "time": "04:21:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "21",
+    "second": "19"
+  },
+  {
+    "id": 6574,
+    "heading": "Genoa-cide :Elegy to Carlos Giovanni Jiulani",
+    "created": "2001-07-23 04:27:07",
+    "linked_file": null,
+    "hugo": "6574-genoacide-elegy-to-carlos-giovanni-jiulani",
+    "date": "2001-07-23",
+    "time": "04:27:07",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "27",
+    "second": "07"
+  },
+  {
+    "id": 6698,
+    "heading": "SOLIDARITA' CON CARLO GIULIANI DA MELBOURNE, AUSTRALIA",
+    "created": "2001-07-23 04:27:11",
+    "linked_file": null,
+    "hugo": "6698-solidarita-con-carlo-giuliani-da-melbourne-australia",
+    "date": "2001-07-23",
+    "time": "04:27:11",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "27",
+    "second": "11"
+  },
+  {
+    "id": 6702,
+    "heading": "Where are details of the woman killed?",
+    "created": "2001-07-23 04:43:22",
+    "linked_file": null,
+    "hugo": "6702-where-are-details-of-the-woman-killed",
+    "date": "2001-07-23",
+    "time": "04:43:22",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "04",
+    "minute": "43",
+    "second": "22"
+  },
+  {
+    "id": 6210,
+    "heading": "Per scrivere a Scajola",
+    "created": "2001-07-23 05:05:16",
+    "linked_file": null,
+    "hugo": "6210-per-scrivere-a-scajola",
+    "date": "2001-07-23",
+    "time": "05:05:16",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "05",
+    "second": "16"
+  },
+  {
+    "id": 6735,
+    "heading": "fdadf",
+    "created": "2001-07-23 05:28:38",
+    "linked_file": null,
+    "hugo": "6735-fdadf",
+    "date": "2001-07-23",
+    "time": "05:28:38",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "28",
+    "second": "38"
+  },
+  {
+    "id": 6687,
+    "heading": "vigilare ancora di più",
+    "created": "2001-07-23 05:32:36",
+    "linked_file": null,
+    "hugo": "6687-vigilare-ancora-di-piu",
+    "date": "2001-07-23",
+    "time": "05:32:36",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "32",
+    "second": "36"
+  },
+  {
+    "id": 6741,
+    "heading": "MANIF A LAUSANNE - 23.07 - Place de la Palud - Lozanne - CH",
+    "created": "2001-07-23 05:34:47",
+    "linked_file": null,
+    "hugo": "6741-manif-a-lausanne-2307-place-de-la-palud-lozanne-ch",
+    "date": "2001-07-23",
+    "time": "05:34:47",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "34",
+    "second": "47"
+  },
+  {
+    "id": 6629,
+    "heading": "Acción de solidaridad en Buenos Aires (español)",
+    "created": "2001-07-23 05:42:42",
+    "linked_file": null,
+    "hugo": "6629-accion-de-solidaridad-en-buenos-aires-espanol",
+    "date": "2001-07-23",
+    "time": "05:42:42",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "42",
+    "second": "42"
+  },
+  {
+    "id": 6428,
+    "heading": "SIAMO TUTTI NELLA ZONA ROSSA",
+    "created": "2001-07-23 05:53:20",
+    "linked_file": null,
+    "hugo": "6428-siamo-tutti-nella-zona-rossa",
+    "date": "2001-07-23",
+    "time": "05:53:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "53",
+    "second": "20"
+  },
+  {
+    "id": 6688,
+    "heading": "testimonianza di un massacro",
+    "created": "2001-07-23 05:58:12",
+    "linked_file": null,
+    "hugo": "6688-testimonianza-di-un-massacro",
+    "date": "2001-07-23",
+    "time": "05:58:12",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "05",
+    "minute": "58",
+    "second": "12"
+  },
+  {
+    "id": 6781,
+    "heading": "information guerrilla",
+    "created": "2001-07-23 06:09:34",
+    "linked_file": "2001/07/guerrillaw.gif",
+    "hugo": "6781-information-guerrilla",
+    "date": "2001-07-23",
+    "time": "06:09:34",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "09",
+    "second": "34"
+  },
+  {
+    "id": 6764,
+    "heading": "Even British Nazis in the Fake Black Bloc.",
+    "created": "2001-07-23 06:13:39",
+    "linked_file": null,
+    "hugo": "6764-even-british-nazis-in-the-fake-black-bloc",
+    "date": "2001-07-23",
+    "time": "06:13:39",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "13",
+    "second": "39"
+  },
+  {
+    "id": 6791,
+    "heading": "austria soli-actions",
+    "created": "2001-07-23 06:19:49",
+    "linked_file": null,
+    "hugo": "6791-austria-soliactions",
+    "date": "2001-07-23",
+    "time": "06:19:49",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "19",
+    "second": "49"
+  },
+  {
+    "id": 6585,
+    "heading": "Abuso di potere dei poliziotti sulle strade di Genova",
+    "created": "2001-07-23 06:22:04",
+    "linked_file": null,
+    "hugo": "6585-abuso-di-potere-dei-poliziotti-sulle-strade-di-genova",
+    "date": "2001-07-23",
+    "time": "06:22:04",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "22",
+    "second": "04"
+  },
+  {
+    "id": 6733,
+    "heading": "sangue e provette",
+    "created": "2001-07-23 06:22:20",
+    "linked_file": null,
+    "hugo": "6733-sangue-e-provette",
+    "date": "2001-07-23",
+    "time": "06:22:20",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "22",
+    "second": "20"
+  },
+  {
+    "id": 6790,
+    "heading": "Agnoletto vattene!",
+    "created": "2001-07-23 06:46:52",
+    "linked_file": null,
+    "hugo": "6790-agnoletto-vattene",
+    "date": "2001-07-23",
+    "time": "06:46:52",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "06",
+    "minute": "46",
+    "second": "52"
+  },
+  {
+    "id": 6765,
+    "heading": "W la globalizzazione",
+    "created": "2001-07-23 07:10:13",
+    "linked_file": null,
+    "hugo": "6765-w-la-globalizzazione",
+    "date": "2001-07-23",
+    "time": "07:10:13",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "10",
+    "second": "13"
+  },
+  {
+    "id": 6448,
+    "heading": "Protesta automatica email",
+    "created": "2001-07-23 07:14:42",
+    "linked_file": null,
+    "hugo": "6448-protesta-automatica-email",
+    "date": "2001-07-23",
+    "time": "07:14:42",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "14",
+    "second": "42"
+  },
+  {
+    "id": 6847,
+    "heading": "Riot-nazi's in BB",
+    "created": "2001-07-23 07:38:25",
+    "linked_file": null,
+    "hugo": "6847-riotnazis-in-bb",
+    "date": "2001-07-23",
+    "time": "07:38:25",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "38",
+    "second": "25"
+  },
+  {
+    "id": 6861,
+    "heading": "Ancora arresti in Liguria / New arrests in Liguria",
+    "created": "2001-07-23 07:54:01",
+    "linked_file": null,
+    "hugo": "6861-ancora-arresti-in-liguria-new-arrests-in-liguria",
+    "date": "2001-07-23",
+    "time": "07:54:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "54",
+    "second": "01"
+  },
+  {
+    "id": 6828,
+    "heading": "No alle provocazioni",
+    "created": "2001-07-23 07:57:38",
+    "linked_file": null,
+    "hugo": "6828-no-alle-provocazioni",
+    "date": "2001-07-23",
+    "time": "07:57:38",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "07",
+    "minute": "57",
+    "second": "38"
+  },
+  {
+    "id": 6823,
+    "heading": "black nazi a Genova",
+    "created": "2001-07-23 08:45:59",
+    "linked_file": null,
+    "hugo": "6823-black-nazi-a-genova",
+    "date": "2001-07-23",
+    "time": "08:45:59",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "08",
+    "minute": "45",
+    "second": "59"
+  },
+  {
+    "id": 6777,
+    "heading": "La libertà contro il comunismo",
+    "created": "2001-07-23 08:49:15",
+    "linked_file": null,
+    "hugo": "6777-la-liberta-contro-il-comunismo",
+    "date": "2001-07-23",
+    "time": "08:49:15",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "08",
+    "minute": "49",
+    "second": "15"
+  },
+  {
+    "id": 6886,
+    "heading": "Camera e Palazzo Chigi Blindati Per Sit-in Del Gsf",
+    "created": "2001-07-23 09:02:55",
+    "linked_file": null,
+    "hugo": "6886-camera-e-palazzo-chigi-blindati-per-sitin-del-gsf",
+    "date": "2001-07-23",
+    "time": "09:02:55",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "02",
+    "second": "55"
+  },
+  {
+    "id": 6852,
+    "heading": "Comunicato di una sezione del Blocco Nero [Black Bloc] del 30.11.99 a Seattle",
+    "created": "2001-07-23 09:07:00",
+    "linked_file": null,
+    "hugo": "6852-comunicato-di-una-sezione-del-blocco-nero-black-bloc-del-301199-a-seattle",
+    "date": "2001-07-23",
+    "time": "09:07:00",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "07",
+    "second": "00"
+  },
+  {
+    "id": 5107,
+    "heading": "lets find the murder - request for help",
+    "created": "2001-07-23 09:07:09",
+    "linked_file": null,
+    "hugo": "5107-lets-find-the-murder-request-for-help",
+    "date": "2001-07-23",
+    "time": "09:07:09",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "07",
+    "second": "09"
+  },
+  {
+    "id": 6901,
+    "heading": "State Of The World Report  July 23,2001",
+    "created": "2001-07-23 09:18:29",
+    "linked_file": "2001/07/nwo.jpg",
+    "hugo": "6901-state-of-the-world-report-july-232001",
+    "date": "2001-07-23",
+    "time": "09:18:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "18",
+    "second": "29"
+  },
+  {
+    "id": 6792,
+    "heading": "I BB peggio dei fascisti",
+    "created": "2001-07-23 09:26:03",
+    "linked_file": null,
+    "hugo": "6792-i-bb-peggio-dei-fascisti",
+    "date": "2001-07-23",
+    "time": "09:26:03",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "26",
+    "second": "03"
+  },
+  {
+    "id": 6922,
+    "heading": "Protesta a Roma",
+    "created": "2001-07-23 09:33:38",
+    "linked_file": null,
+    "hugo": "6922-protesta-a-roma",
+    "date": "2001-07-23",
+    "time": "09:33:38",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "33",
+    "second": "38"
+  },
+  {
+    "id": 6788,
+    "heading": "Colpo di Stato",
+    "created": "2001-07-23 09:45:05",
+    "linked_file": null,
+    "hugo": "6788-colpo-di-stato",
+    "date": "2001-07-23",
+    "time": "09:45:05",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "45",
+    "second": "05"
+  },
+  {
+    "id": 6776,
+    "heading": "info",
+    "created": "2001-07-23 09:48:26",
+    "linked_file": null,
+    "hugo": "6776-info",
+    "date": "2001-07-23",
+    "time": "09:48:26",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "48",
+    "second": "26"
+  },
+  {
+    "id": 6746,
+    "heading": "The connection between Police & Black Bloc: what a wonderful world...",
+    "created": "2001-07-23 09:53:50",
+    "linked_file": null,
+    "hugo": "6746-the-connection-between-police-black-bloc-what-a-wonderful-world",
+    "date": "2001-07-23",
+    "time": "09:53:50",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "09",
+    "minute": "53",
+    "second": "50"
+  },
+  {
+    "id": 6915,
+    "heading": "schifo",
+    "created": "2001-07-23 10:10:11",
+    "linked_file": null,
+    "hugo": "6915-schifo",
+    "date": "2001-07-23",
+    "time": "10:10:11",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "10",
+    "second": "11"
+  },
+  {
+    "id": 6246,
+    "heading": "Scusate...",
+    "created": "2001-07-23 10:17:04",
+    "linked_file": null,
+    "hugo": "6246-scusate",
+    "date": "2001-07-23",
+    "time": "10:17:04",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "17",
+    "second": "04"
+  },
+  {
+    "id": 6738,
+    "heading": "Dovevano ammazzarvi tutti!!",
+    "created": "2001-07-23 10:22:18",
+    "linked_file": null,
+    "hugo": "6738-dovevano-ammazzarvi-tutti",
+    "date": "2001-07-23",
+    "time": "10:22:18",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "22",
+    "second": "18"
+  },
+  {
+    "id": 6937,
+    "heading": "MARTEDI24 protesta a FIRENZE",
+    "created": "2001-07-23 10:25:33",
+    "linked_file": null,
+    "hugo": "6937-martedi24-protesta-a-firenze",
+    "date": "2001-07-23",
+    "time": "10:25:33",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "25",
+    "second": "33"
+  },
+  {
+    "id": 6970,
+    "heading": "comportamento esemplare",
+    "created": "2001-07-23 10:26:55",
+    "linked_file": "2001/07/massacro4.jpg",
+    "hugo": "6970-comportamento-esemplare",
+    "date": "2001-07-23",
+    "time": "10:26:55",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "26",
+    "second": "55"
+  },
+  {
+    "id": 6973,
+    "heading": "from mexico saludos combativos",
+    "created": "2001-07-23 10:31:07",
+    "linked_file": null,
+    "hugo": "6973-from-mexico-saludos-combativos",
+    "date": "2001-07-23",
+    "time": "10:31:07",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "10",
+    "minute": "31",
+    "second": "07"
+  },
+  {
+    "id": 6964,
+    "heading": "ciò che ho visto",
+    "created": "2001-07-23 11:08:40",
+    "linked_file": null,
+    "hugo": "6964-cio-che-ho-visto",
+    "date": "2001-07-23",
+    "time": "11:08:40",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "08",
+    "second": "40"
+  },
+  {
+    "id": 6983,
+    "heading": "comportamento esemplare:4",
+    "created": "2001-07-23 11:26:01",
+    "linked_file": "2001/07/3.jpg",
+    "hugo": "6983-comportamento-esemplare4",
+    "date": "2001-07-23",
+    "time": "11:26:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "26",
+    "second": "01"
+  },
+  {
+    "id": 6980,
+    "heading": "Genova: photos I made",
+    "created": "2001-07-23 11:37:41",
+    "linked_file": null,
+    "hugo": "6980-genova-photos-i-made",
+    "date": "2001-07-23",
+    "time": "11:37:41",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "37",
+    "second": "41"
+  },
+  {
+    "id": 6991,
+    "heading": "INIZIATO IL SIT-IN DAVANTI A UN PALAZZO CHIGI BLINDATO",
+    "created": "2001-07-23 11:38:33",
+    "linked_file": null,
+    "hugo": "6991-iniziato-il-sitin-davanti-a-un-palazzo-chigi-blindato",
+    "date": "2001-07-23",
+    "time": "11:38:33",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "11",
+    "minute": "38",
+    "second": "33"
+  },
+  {
+    "id": 7025,
+    "heading": "Solidarity demo with Genoa against the G-8, Montreal",
+    "created": "2001-07-23 13:20:48",
+    "linked_file": null,
+    "hugo": "7025-solidarity-demo-with-genoa-against-the-g8-montreal",
+    "date": "2001-07-23",
+    "time": "13:20:48",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "13",
+    "minute": "20",
+    "second": "48"
+  },
+  {
+    "id": 6885,
+    "heading": "ATTENTI AL NUOVO FASCISMO",
+    "created": "2001-07-23 14:22:47",
+    "linked_file": null,
+    "hugo": "6885-attenti-al-nuovo-fascismo",
+    "date": "2001-07-23",
+    "time": "14:22:47",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "22",
+    "second": "47"
+  },
+  {
+    "id": 7048,
+    "heading": "Protestors' Outrage Over Shooting Death Is Greeted with a Locked Door at Italian",
+    "created": "2001-07-23 14:39:41",
+    "linked_file": null,
+    "hugo": "7048-protestors-outrage-over-shooting-death-is-greeted-with-a-locked-door-at-italian",
+    "date": "2001-07-23",
+    "time": "14:39:41",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "39",
+    "second": "41"
+  },
+  {
+    "id": 7049,
+    "heading": "Genoa - Solidarity in Brussels (23.07) [pictures]",
+    "created": "2001-07-23 14:40:13",
+    "linked_file": "2001/07/index.htm",
+    "hugo": "7049-genoa-solidarity-in-brussels-2307-pictures",
+    "date": "2001-07-23",
+    "time": "14:40:13",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "40",
+    "second": "13"
+  },
+  {
+    "id": 7052,
+    "heading": "A call for testimonials and volunteers",
+    "created": "2001-07-23 14:41:56",
+    "linked_file": null,
+    "hugo": "7052-a-call-for-testimonials-and-volunteers",
+    "date": "2001-07-23",
+    "time": "14:41:56",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "14",
+    "minute": "41",
+    "second": "56"
+  },
+  {
+    "id": 7011,
+    "heading": "Genova 21/7: polizia criminale",
+    "created": "2001-07-23 15:03:25",
+    "linked_file": null,
+    "hugo": "7011-genova-217-polizia-criminale",
+    "date": "2001-07-23",
+    "time": "15:03:25",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "03",
+    "second": "25"
+  },
+  {
+    "id": 7071,
+    "heading": "Montréal: Déclaration de la CLAC -- G8 Gênes (français)",
+    "created": "2001-07-23 15:22:09",
+    "linked_file": null,
+    "hugo": "7071-montreal-declaration-de-la-clac-g8-genes-francais",
+    "date": "2001-07-23",
+    "time": "15:22:09",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "22",
+    "second": "09"
+  },
+  {
+    "id": 6981,
+    "heading": "comportamento esemplare:2",
+    "created": "2001-07-23 15:42:14",
+    "linked_file": "2001/07/1.jpg",
+    "hugo": "6981-comportamento-esemplare2",
+    "date": "2001-07-23",
+    "time": "15:42:14",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "42",
+    "second": "14"
+  },
+  {
+    "id": 7063,
+    "heading": "Leiden, The Netherlands, remembers Carlo Giuliani",
+    "created": "2001-07-23 15:44:10",
+    "linked_file": null,
+    "hugo": "7063-leiden-the-netherlands-remembers-carlo-giuliani",
+    "date": "2001-07-23",
+    "time": "15:44:10",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "44",
+    "second": "10"
+  },
+  {
+    "id": 7086,
+    "heading": "Solidarity/solidaritá in Norway",
+    "created": "2001-07-23 15:55:56",
+    "linked_file": null,
+    "hugo": "7086-solidaritysolidarita-in-norway",
+    "date": "2001-07-23",
+    "time": "15:55:56",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "15",
+    "minute": "55",
+    "second": "56"
+  },
+  {
+    "id": 3874,
+    "heading": "Ya Basta march",
+    "created": "2001-07-23 16:25:17",
+    "linked_file": "2001/07/yabastamarch.jpg",
+    "hugo": "3874-ya-basta-march",
+    "date": "2001-07-23",
+    "time": "16:25:17",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "25",
+    "second": "17"
+  },
+  {
+    "id": 6668,
+    "heading": "Troppo odio per aria",
+    "created": "2001-07-23 16:47:43",
+    "linked_file": null,
+    "hugo": "6668-troppo-odio-per-aria",
+    "date": "2001-07-23",
+    "time": "16:47:43",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "47",
+    "second": "43"
+  },
+  {
+    "id": 6893,
+    "heading": "La pseudo-libertà del gsf",
+    "created": "2001-07-23 16:54:29",
+    "linked_file": null,
+    "hugo": "6893-la-pseudoliberta-del-gsf",
+    "date": "2001-07-23",
+    "time": "16:54:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "54",
+    "second": "29"
+  },
+  {
+    "id": 6976,
+    "heading": "Critica Costruttiva",
+    "created": "2001-07-23 16:59:54",
+    "linked_file": null,
+    "hugo": "6976-critica-costruttiva",
+    "date": "2001-07-23",
+    "time": "16:59:54",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "16",
+    "minute": "59",
+    "second": "54"
+  },
+  {
+    "id": 7037,
+    "heading": "AS THE VENEER OF DEMOCRACY STARTS TO FADE",
+    "created": "2001-07-23 17:15:10",
+    "linked_file": "2001/07/polattack.jpg",
+    "hugo": "7037-as-the-veneer-of-democracy-starts-to-fade",
+    "date": "2001-07-23",
+    "time": "17:15:10",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "15",
+    "second": "10"
+  },
+  {
+    "id": 5415,
+    "heading": "Police Raid GSF, IMC other groups",
+    "created": "2001-07-23 17:16:01",
+    "linked_file": "2001/07/zbvxfq.txt",
+    "hugo": "5415-police-raid-gsf-imc-other-groups",
+    "date": "2001-07-23",
+    "time": "17:16:01",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "16",
+    "second": "01"
+  },
+  {
+    "id": 7093,
+    "heading": "Toronto Solidarity rallies",
+    "created": "2001-07-23 17:23:31",
+    "linked_file": null,
+    "hugo": "7093-toronto-solidarity-rallies",
+    "date": "2001-07-23",
+    "time": "17:23:31",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "23",
+    "second": "31"
+  },
+  {
+    "id": 7140,
+    "heading": "250 or More Show Up for Genoa Solidarity in Toronto",
+    "created": "2001-07-23 17:30:22",
+    "linked_file": "2001/07/crowdiuho8y.jpg",
+    "hugo": "7140-250-or-more-show-up-for-genoa-solidarity-in-toronto",
+    "date": "2001-07-23",
+    "time": "17:30:22",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "30",
+    "second": "22"
+  },
+  {
+    "id": 6772,
+    "heading": "Non potete nulla",
+    "created": "2001-07-23 17:38:00",
+    "linked_file": null,
+    "hugo": "6772-non-potete-nulla",
+    "date": "2001-07-23",
+    "time": "17:38:00",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "38",
+    "second": "00"
+  },
+  {
+    "id": 3089,
+    "heading": "Radio News from Genova",
+    "created": "2001-07-23 17:44:35",
+    "linked_file": "2001/07/gr18072001.mp3",
+    "hugo": "3089-radio-news-from-genova",
+    "date": "2001-07-23",
+    "time": "17:44:35",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "17",
+    "minute": "44",
+    "second": "35"
+  },
+  {
+    "id": 7144,
+    "heading": "BE THE MEDIA: diffondi anche TU la VERITA'",
+    "created": "2001-07-23 18:07:46",
+    "linked_file": null,
+    "hugo": "7144-be-the-media-diffondi-anche-tu-la-verita",
+    "date": "2001-07-23",
+    "time": "18:07:46",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "07",
+    "second": "46"
+  },
+  {
+    "id": 7153,
+    "heading": "Campagna Information Guerrilla",
+    "created": "2001-07-23 18:12:41",
+    "linked_file": "2001/07/guerrillaxw9uir.gif",
+    "hugo": "7153-campagna-information-guerrilla",
+    "date": "2001-07-23",
+    "time": "18:12:41",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "12",
+    "second": "41"
+  },
+  {
+    "id": 7008,
+    "heading": "G8 insanguinato",
+    "created": "2001-07-23 18:23:23",
+    "linked_file": null,
+    "hugo": "7008-g8-insanguinato",
+    "date": "2001-07-23",
+    "time": "18:23:23",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "23",
+    "second": "23"
+  },
+  {
+    "id": 7039,
+    "heading": "unbelievable 48 hours",
+    "created": "2001-07-23 18:26:40",
+    "linked_file": null,
+    "hugo": "7039-unbelievable-48-hours",
+    "date": "2001-07-23",
+    "time": "18:26:40",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "26",
+    "second": "40"
+  },
+  {
+    "id": 7162,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-23 18:28:43",
+    "linked_file": "2001/07/dsc00003.jpg",
+    "hugo": "7162-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-23",
+    "time": "18:28:43",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "28",
+    "second": "43"
+  },
+  {
+    "id": 7014,
+    "heading": "Tute nere e conniventi CRIMINALI",
+    "created": "2001-07-23 18:29:07",
+    "linked_file": null,
+    "hugo": "7014-tute-nere-e-conniventi-criminali",
+    "date": "2001-07-23",
+    "time": "18:29:07",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "29",
+    "second": "07"
+  },
+  {
+    "id": 7146,
+    "heading": "what group was...",
+    "created": "2001-07-23 18:30:49",
+    "linked_file": null,
+    "hugo": "7146-what-group-was",
+    "date": "2001-07-23",
+    "time": "18:30:49",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "30",
+    "second": "49"
+  },
+  {
+    "id": 7168,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-23 18:34:59",
+    "linked_file": "2001/07/dsc00008.jpg",
+    "hugo": "7168-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-23",
+    "time": "18:34:59",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "34",
+    "second": "59"
+  },
+  {
+    "id": 7169,
+    "heading": "Ottawa Solidarity Action",
+    "created": "2001-07-23 18:35:00",
+    "linked_file": null,
+    "hugo": "7169-ottawa-solidarity-action",
+    "date": "2001-07-23",
+    "time": "18:35:00",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "35",
+    "second": "00"
+  },
+  {
+    "id": 7171,
+    "heading": "rally in Portland, OR gets chaotic",
+    "created": "2001-07-23 18:37:14",
+    "linked_file": null,
+    "hugo": "7171-rally-in-portland-or-gets-chaotic",
+    "date": "2001-07-23",
+    "time": "18:37:14",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "37",
+    "second": "14"
+  },
+  {
+    "id": 7138,
+    "heading": "Barricades in Genoa: Up Against the G8",
+    "created": "2001-07-23 18:38:29",
+    "linked_file": null,
+    "hugo": "7138-barricades-in-genoa-up-against-the-g8",
+    "date": "2001-07-23",
+    "time": "18:38:29",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "38",
+    "second": "29"
+  },
+  {
+    "id": 7092,
+    "heading": "IMC Statement on Genoa Police Raid",
+    "created": "2001-07-23 18:43:34",
+    "linked_file": null,
+    "hugo": "7092-imc-statement-on-genoa-police-raid",
+    "date": "2001-07-23",
+    "time": "18:43:34",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "43",
+    "second": "34"
+  },
+  {
+    "id": 7177,
+    "heading": "NO GUNS",
+    "created": "2001-07-23 18:47:15",
+    "linked_file": null,
+    "hugo": "7177-no-guns",
+    "date": "2001-07-23",
+    "time": "18:47:15",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "47",
+    "second": "15"
+  },
+  {
+    "id": 7180,
+    "heading": "MARTEDI24 presidio FIRENZE",
+    "created": "2001-07-23 18:49:19",
+    "linked_file": null,
+    "hugo": "7180-martedi24-presidio-firenze",
+    "date": "2001-07-23",
+    "time": "18:49:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "49",
+    "second": "19"
+  },
+  {
+    "id": 7173,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-23 18:55:58",
+    "linked_file": "2001/07/dsc00010.jpg",
+    "hugo": "7173-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-23",
+    "time": "18:55:58",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "55",
+    "second": "58"
+  },
+  {
+    "id": 7182,
+    "heading": "Manif à Lausanne(CH)",
+    "created": "2001-07-23 18:55:58",
+    "linked_file": null,
+    "hugo": "7182-manif-a-lausannech",
+    "date": "2001-07-23",
+    "time": "18:55:58",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "55",
+    "second": "58"
+  },
+  {
+    "id": 7184,
+    "heading": "Protest in Lausanne(CH)",
+    "created": "2001-07-23 18:57:55",
+    "linked_file": null,
+    "hugo": "7184-protest-in-lausannech",
+    "date": "2001-07-23",
+    "time": "18:57:55",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "18",
+    "minute": "57",
+    "second": "55"
+  },
+  {
+    "id": 6841,
+    "heading": "Scritta appena ieri...",
+    "created": "2001-07-23 19:00:52",
+    "linked_file": null,
+    "hugo": "6841-scritta-appena-ieri",
+    "date": "2001-07-23",
+    "time": "19:00:52",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "00",
+    "second": "52"
+  },
+  {
+    "id": 6848,
+    "heading": "Difendiamo il movimento dalle facili strumentalizzazioni.",
+    "created": "2001-07-23 19:00:54",
+    "linked_file": null,
+    "hugo": "6848-difendiamo-il-movimento-dalle-facili-strumentalizzazioni",
+    "date": "2001-07-23",
+    "time": "19:00:54",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "00",
+    "second": "54"
+  },
+  {
+    "id": 7073,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA, O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-23 19:13:08",
+    "linked_file": null,
+    "hugo": "7073-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-23",
+    "time": "19:13:08",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "13",
+    "second": "08"
+  },
+  {
+    "id": 7189,
+    "heading": "zona rossa e consumo critico",
+    "created": "2001-07-23 19:29:19",
+    "linked_file": null,
+    "hugo": "7189-zona-rossa-e-consumo-critico",
+    "date": "2001-07-23",
+    "time": "19:29:19",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "19",
+    "minute": "29",
+    "second": "19"
+  },
+  {
+    "id": 2528,
+    "heading": "Prevenzione e trattamento x gas lacrimogeni e pepper spray",
+    "created": "2001-07-23 20:05:44",
+    "linked_file": null,
+    "hugo": "2528-prevenzione-e-trattamento-x-gas-lacrimogeni-e-pepper-spray",
+    "date": "2001-07-23",
+    "time": "20:05:44",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "05",
+    "second": "44"
+  },
+  {
+    "id": 7209,
+    "heading": "Amnesty: Authorities must carry out urgent investigation of G8 policing",
+    "created": "2001-07-23 20:44:30",
+    "linked_file": null,
+    "hugo": "7209-amnesty-authorities-must-carry-out-urgent-investigation-of-g8-policing",
+    "date": "2001-07-23",
+    "time": "20:44:30",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "44",
+    "second": "30"
+  },
+  {
+    "id": 7038,
+    "heading": "ASSEMBLEA PUBBLICA A MILANO 24/7/01",
+    "created": "2001-07-23 20:45:04",
+    "linked_file": null,
+    "hugo": "7038-assemblea-pubblica-a-milano-24701",
+    "date": "2001-07-23",
+    "time": "20:45:04",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "45",
+    "second": "04"
+  },
+  {
+    "id": 7223,
+    "heading": "Protesta al consolato italiano di Montreal",
+    "created": "2001-07-23 20:48:44",
+    "linked_file": null,
+    "hugo": "7223-protesta-al-consolato-italiano-di-montreal",
+    "date": "2001-07-23",
+    "time": "20:48:44",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "20",
+    "minute": "48",
+    "second": "44"
+  },
+  {
+    "id": 7228,
+    "heading": "Flashpoints Radio July 23: Interview w IMC eyewitness to Genoa Midnight Massacre",
+    "created": "2001-07-23 21:11:56",
+    "linked_file": null,
+    "hugo": "7228-flashpoints-radio-july-23-interview-w-imc-eyewitness-to-genoa-midnight-massacre",
+    "date": "2001-07-23",
+    "time": "21:11:56",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "11",
+    "second": "56"
+  },
+  {
+    "id": 7234,
+    "heading": "anarchists in melbourne doing solidarity silent vigil",
+    "created": "2001-07-23 21:28:12",
+    "linked_file": null,
+    "hugo": "7234-anarchists-in-melbourne-doing-solidarity-silent-vigil",
+    "date": "2001-07-23",
+    "time": "21:28:12",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "28",
+    "second": "12"
+  },
+  {
+    "id": 7235,
+    "heading": "en, fr,it,de) more anarchists reports multilingual archive",
+    "created": "2001-07-23 21:39:57",
+    "linked_file": null,
+    "hugo": "7235-en-fritde-more-anarchists-reports-multilingual-archive",
+    "date": "2001-07-23",
+    "time": "21:39:57",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "39",
+    "second": "57"
+  },
+  {
+    "id": 7236,
+    "heading": "en, fr,it, more anarchists reports multilingual archive",
+    "created": "2001-07-23 21:40:05",
+    "linked_file": null,
+    "hugo": "7236-en-frit-more-anarchists-reports-multilingual-archive",
+    "date": "2001-07-23",
+    "time": "21:40:05",
+    "year": "2001",
+    "month": "07",
+    "day": "23",
+    "hour": "21",
+    "minute": "40",
+    "second": "05"
+  },
+  {
+    "id": 7253,
+    "heading": "Manif a Portland Contro G8/Fascismo di Berlusconi",
+    "created": "2001-07-24 00:04:33",
+    "linked_file": null,
+    "hugo": "7253-manif-a-portland-contro-g8fascismo-di-berlusconi",
+    "date": "2001-07-24",
+    "time": "00:04:33",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "04",
+    "second": "33"
+  },
+  {
+    "id": 7257,
+    "heading": "Portland, Oregon stands in solidarity with Genoa",
+    "created": "2001-07-24 00:18:17",
+    "linked_file": null,
+    "hugo": "7257-portland-oregon-stands-in-solidarity-with-genoa",
+    "date": "2001-07-24",
+    "time": "00:18:17",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "18",
+    "second": "17"
+  },
+  {
+    "id": 7217,
+    "heading": "FACCIAMO DUE CONTI...",
+    "created": "2001-07-24 00:42:26",
+    "linked_file": null,
+    "hugo": "7217-facciamo-due-conti",
+    "date": "2001-07-24",
+    "time": "00:42:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "42",
+    "second": "26"
+  },
+  {
+    "id": 7226,
+    "heading": "Severe Charges for 2 arrested at Boston Genoa Solidarity Demonstration",
+    "created": "2001-07-24 00:54:12",
+    "linked_file": null,
+    "hugo": "7226-severe-charges-for-2-arrested-at-boston-genoa-solidarity-demonstration",
+    "date": "2001-07-24",
+    "time": "00:54:12",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "00",
+    "minute": "54",
+    "second": "12"
+  },
+  {
+    "id": 4906,
+    "heading": "Police on the sea",
+    "created": "2001-07-24 02:38:27",
+    "linked_file": "2001/07/boats11.jpg",
+    "hugo": "4906-police-on-the-sea",
+    "date": "2001-07-24",
+    "time": "02:38:27",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "02",
+    "minute": "38",
+    "second": "27"
+  },
+  {
+    "id": 7271,
+    "heading": "un dubbio",
+    "created": "2001-07-24 02:52:43",
+    "linked_file": null,
+    "hugo": "7271-un-dubbio",
+    "date": "2001-07-24",
+    "time": "02:52:43",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "02",
+    "minute": "52",
+    "second": "43"
+  },
+  {
+    "id": 7067,
+    "heading": "mail di  stefano agnoletto, fratello di vittorio",
+    "created": "2001-07-24 03:03:32",
+    "linked_file": null,
+    "hugo": "7067-mail-di-stefano-agnoletto-fratello-di-vittorio",
+    "date": "2001-07-24",
+    "time": "03:03:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "03",
+    "second": "32"
+  },
+  {
+    "id": 7016,
+    "heading": "24 luglio presidio di protesta davanti al consolato d'Italia a Lugano CH",
+    "created": "2001-07-24 03:10:11",
+    "linked_file": null,
+    "hugo": "7016-24-luglio-presidio-di-protesta-davanti-al-consolato-ditalia-a-lugano-ch",
+    "date": "2001-07-24",
+    "time": "03:10:11",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "10",
+    "second": "11"
+  },
+  {
+    "id": 7181,
+    "heading": "Memorial for Carlo Giuliani",
+    "created": "2001-07-24 03:10:36",
+    "linked_file": "2001/07/dsc00025.jpg",
+    "hugo": "7181-memorial-for-carlo-giuliani",
+    "date": "2001-07-24",
+    "time": "03:10:36",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "10",
+    "second": "36"
+  },
+  {
+    "id": 7005,
+    "heading": "Serious Disturbance at Italian Consulate in Manchester, UK",
+    "created": "2001-07-24 03:12:00",
+    "linked_file": null,
+    "hugo": "7005-serious-disturbance-at-italian-consulate-in-manchester-uk",
+    "date": "2001-07-24",
+    "time": "03:12:00",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "12",
+    "second": "00"
+  },
+  {
+    "id": 7314,
+    "heading": "Diario da Genova",
+    "created": "2001-07-24 03:23:53",
+    "linked_file": null,
+    "hugo": "7314-diario-da-genova",
+    "date": "2001-07-24",
+    "time": "03:23:53",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "23",
+    "second": "53"
+  },
+  {
+    "id": 7205,
+    "heading": "Amnesty International on Genoa",
+    "created": "2001-07-24 03:36:39",
+    "linked_file": null,
+    "hugo": "7205-amnesty-international-on-genoa",
+    "date": "2001-07-24",
+    "time": "03:36:39",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "36",
+    "second": "39"
+  },
+  {
+    "id": 6982,
+    "heading": "comportamento esemplare:3",
+    "created": "2001-07-24 03:42:38",
+    "linked_file": "2001/07/2.jpg",
+    "hugo": "6982-comportamento-esemplare3",
+    "date": "2001-07-24",
+    "time": "03:42:38",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "03",
+    "minute": "42",
+    "second": "38"
+  },
+  {
+    "id": 7159,
+    "heading": "MIDNIGHT BULLSHITS - STRONZATE DI MEZZANOTTE",
+    "created": "2001-07-24 04:01:26",
+    "linked_file": null,
+    "hugo": "7159-midnight-bullshits-stronzate-di-mezzanotte",
+    "date": "2001-07-24",
+    "time": "04:01:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "01",
+    "second": "26"
+  },
+  {
+    "id": 7190,
+    "heading": "Outrage Over Murder Is Greeted with Locked Door at Chicago/Italian Consulate",
+    "created": "2001-07-24 04:06:06",
+    "linked_file": "2001/07/_1_banner_with_crowd.jpg",
+    "hugo": "7190-outrage-over-murder-is-greeted-with-locked-door-at-chicagoitalian-consulate",
+    "date": "2001-07-24",
+    "time": "04:06:06",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "06",
+    "second": "06"
+  },
+  {
+    "id": 7344,
+    "heading": "two statements about what was taken out of the gymnasium",
+    "created": "2001-07-24 04:19:40",
+    "linked_file": null,
+    "hugo": "7344-two-statements-about-what-was-taken-out-of-the-gymnasium",
+    "date": "2001-07-24",
+    "time": "04:19:40",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "19",
+    "second": "40"
+  },
+  {
+    "id": 4007,
+    "heading": "G8, Genua: Picture Shows Police Jeep Driving Over A Protester.",
+    "created": "2001-07-24 04:23:32",
+    "linked_file": "2001/07/genua3.jpg",
+    "hugo": "4007-g8-genua-picture-shows-police-jeep-driving-over-a-protester",
+    "date": "2001-07-24",
+    "time": "04:23:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "23",
+    "second": "32"
+  },
+  {
+    "id": 7165,
+    "heading": "Los Angeles rally in front of the Italian Consulate",
+    "created": "2001-07-24 04:28:20",
+    "linked_file": "2001/07/dsc00005.jpg",
+    "hugo": "7165-los-angeles-rally-in-front-of-the-italian-consulate",
+    "date": "2001-07-24",
+    "time": "04:28:20",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "28",
+    "second": "20"
+  },
+  {
+    "id": 7354,
+    "heading": "My Own Private G8",
+    "created": "2001-07-24 04:31:37",
+    "linked_file": null,
+    "hugo": "7354-my-own-private-g8",
+    "date": "2001-07-24",
+    "time": "04:31:37",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "31",
+    "second": "37"
+  },
+  {
+    "id": 7325,
+    "heading": "Okkio al Real FIle",
+    "created": "2001-07-24 04:35:26",
+    "linked_file": null,
+    "hugo": "7325-okkio-al-real-file",
+    "date": "2001-07-24",
+    "time": "04:35:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "35",
+    "second": "26"
+  },
+  {
+    "id": 7291,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-24 04:36:47",
+    "linked_file": null,
+    "hugo": "7291-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-24",
+    "time": "04:36:47",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "36",
+    "second": "47"
+  },
+  {
+    "id": 7329,
+    "heading": "corteo a ROMA",
+    "created": "2001-07-24 04:42:33",
+    "linked_file": null,
+    "hugo": "7329-corteo-a-roma",
+    "date": "2001-07-24",
+    "time": "04:42:33",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "04",
+    "minute": "42",
+    "second": "33"
+  },
+  {
+    "id": 7372,
+    "heading": "solidarityactions in Belgium on monday 23-07",
+    "created": "2001-07-24 05:00:45",
+    "linked_file": null,
+    "hugo": "7372-solidarityactions-in-belgium-on-monday-2307",
+    "date": "2001-07-24",
+    "time": "05:00:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "00",
+    "second": "45"
+  },
+  {
+    "id": 7375,
+    "heading": "presidio FIRENZE oggi.",
+    "created": "2001-07-24 05:02:50",
+    "linked_file": null,
+    "hugo": "7375-presidio-firenze-oggi",
+    "date": "2001-07-24",
+    "time": "05:02:50",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "02",
+    "second": "50"
+  },
+  {
+    "id": 7237,
+    "heading": "FARE ATTENZIONE",
+    "created": "2001-07-24 05:11:53",
+    "linked_file": null,
+    "hugo": "7237-fare-attenzione",
+    "date": "2001-07-24",
+    "time": "05:11:53",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "11",
+    "second": "53"
+  },
+  {
+    "id": 7311,
+    "heading": "SOLIDARITY DEMOS AND ACTIONS IN STOCKHOLM",
+    "created": "2001-07-24 05:13:18",
+    "linked_file": null,
+    "hugo": "7311-solidarity-demos-and-actions-in-stockholm",
+    "date": "2001-07-24",
+    "time": "05:13:18",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "13",
+    "second": "18"
+  },
+  {
+    "id": 6874,
+    "heading": "Incriminazione al tribunale dell'Aja",
+    "created": "2001-07-24 05:28:42",
+    "linked_file": null,
+    "hugo": "6874-incriminazione-al-tribunale-dellaja",
+    "date": "2001-07-24",
+    "time": "05:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 7308,
+    "heading": "DA LA REPUBBLICA DI OGGI (ONLINE)",
+    "created": "2001-07-24 05:40:49",
+    "linked_file": null,
+    "hugo": "7308-da-la-repubblica-di-oggi-online",
+    "date": "2001-07-24",
+    "time": "05:40:49",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "40",
+    "second": "49"
+  },
+  {
+    "id": 7398,
+    "heading": "Italian Consulate in Edinburgh, Scotland, vandalised",
+    "created": "2001-07-24 05:55:26",
+    "linked_file": null,
+    "hugo": "7398-italian-consulate-in-edinburgh-scotland-vandalised",
+    "date": "2001-07-24",
+    "time": "05:55:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "55",
+    "second": "26"
+  },
+  {
+    "id": 2919,
+    "heading": "INFORMAZIONI E CONSIGLI PER I MANIFESTANTI",
+    "created": "2001-07-24 05:55:34",
+    "linked_file": null,
+    "hugo": "2919-informazioni-e-consigli-per-i-manifestanti",
+    "date": "2001-07-24",
+    "time": "05:55:34",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "55",
+    "second": "34"
+  },
+  {
+    "id": 7233,
+    "heading": "San Francisco Solidarity with Genoa Workingclass",
+    "created": "2001-07-24 05:57:32",
+    "linked_file": null,
+    "hugo": "7233-san-francisco-solidarity-with-genoa-workingclass",
+    "date": "2001-07-24",
+    "time": "05:57:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "57",
+    "second": "32"
+  },
+  {
+    "id": 7402,
+    "heading": "E nessuno parla del g8",
+    "created": "2001-07-24 05:58:41",
+    "linked_file": null,
+    "hugo": "7402-e-nessuno-parla-del-g8",
+    "date": "2001-07-24",
+    "time": "05:58:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "58",
+    "second": "41"
+  },
+  {
+    "id": 7299,
+    "heading": "ipocriti!!!!!",
+    "created": "2001-07-24 05:59:40",
+    "linked_file": null,
+    "hugo": "7299-ipocriti",
+    "date": "2001-07-24",
+    "time": "05:59:40",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "05",
+    "minute": "59",
+    "second": "40"
+  },
+  {
+    "id": 7395,
+    "heading": "MUTANDE BIANCHE 2",
+    "created": "2001-07-24 06:02:58",
+    "linked_file": "2001/07/3_gs7eaib.jpg",
+    "hugo": "7395-mutande-bianche-2",
+    "date": "2001-07-24",
+    "time": "06:02:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "02",
+    "second": "58"
+  },
+  {
+    "id": 7411,
+    "heading": "QUESTA SERA CORTEO A TORINO",
+    "created": "2001-07-24 06:12:08",
+    "linked_file": null,
+    "hugo": "7411-questa-sera-corteo-a-torino",
+    "date": "2001-07-24",
+    "time": "06:12:08",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "12",
+    "second": "08"
+  },
+  {
+    "id": 7412,
+    "heading": "Presidio a Torino",
+    "created": "2001-07-24 06:15:34",
+    "linked_file": null,
+    "hugo": "7412-presidio-a-torino",
+    "date": "2001-07-24",
+    "time": "06:15:34",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "15",
+    "second": "34"
+  },
+  {
+    "id": 7367,
+    "heading": "SKY",
+    "created": "2001-07-24 06:15:47",
+    "linked_file": null,
+    "hugo": "7367-sky",
+    "date": "2001-07-24",
+    "time": "06:15:47",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "15",
+    "second": "47"
+  },
+  {
+    "id": 7417,
+    "heading": "Assemblea pubblica a Palermo",
+    "created": "2001-07-24 06:19:06",
+    "linked_file": null,
+    "hugo": "7417-assemblea-pubblica-a-palermo",
+    "date": "2001-07-24",
+    "time": "06:19:06",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "19",
+    "second": "06"
+  },
+  {
+    "id": 7418,
+    "heading": "comunicato manifestazione Palermo",
+    "created": "2001-07-24 06:19:39",
+    "linked_file": null,
+    "hugo": "7418-comunicato-manifestazione-palermo",
+    "date": "2001-07-24",
+    "time": "06:19:39",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "19",
+    "second": "39"
+  },
+  {
+    "id": 7316,
+    "heading": "genoa, letter to editor australian paper by a cab driver",
+    "created": "2001-07-24 06:32:45",
+    "linked_file": null,
+    "hugo": "7316-genoa-letter-to-editor-australian-paper-by-a-cab-driver",
+    "date": "2001-07-24",
+    "time": "06:32:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "32",
+    "second": "45"
+  },
+  {
+    "id": 6974,
+    "heading": "I fatti e la storia - Facts and history.",
+    "created": "2001-07-24 06:36:38",
+    "linked_file": null,
+    "hugo": "6974-i-fatti-e-la-storia-facts-and-history",
+    "date": "2001-07-24",
+    "time": "06:36:38",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "36",
+    "second": "38"
+  },
+  {
+    "id": 7349,
+    "heading": "CONTRO LA GLOBALIZZAZIONE L'AUTARCHIA DEGLI ELFI",
+    "created": "2001-07-24 06:36:49",
+    "linked_file": null,
+    "hugo": "7349-contro-la-globalizzazione-lautarchia-degli-elfi",
+    "date": "2001-07-24",
+    "time": "06:36:49",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "36",
+    "second": "49"
+  },
+  {
+    "id": 7278,
+    "heading": "A chi dice \"La polizia ha fatto bene\"",
+    "created": "2001-07-24 06:48:52",
+    "linked_file": null,
+    "hugo": "7278-a-chi-dice-la-polizia-ha-fatto-bene",
+    "date": "2001-07-24",
+    "time": "06:48:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "48",
+    "second": "52"
+  },
+  {
+    "id": 7295,
+    "heading": "anarchist solidarity g8 ANTI-GLOBALIZATION DEMONSTRATION IN ISTANBUL",
+    "created": "2001-07-24 06:52:26",
+    "linked_file": null,
+    "hugo": "7295-anarchist-solidarity-g8-antiglobalization-demonstration-in-istanbul",
+    "date": "2001-07-24",
+    "time": "06:52:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "06",
+    "minute": "52",
+    "second": "26"
+  },
+  {
+    "id": 7197,
+    "heading": "c'è tempo per sistemare i colpevoli indicati dalla pula!",
+    "created": "2001-07-24 07:02:29",
+    "linked_file": null,
+    "hugo": "7197-ce-tempo-per-sistemare-i-colpevoli-indicati-dalla-pula",
+    "date": "2001-07-24",
+    "time": "07:02:29",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "02",
+    "second": "29"
+  },
+  {
+    "id": 7322,
+    "heading": "Gi-otto faceva cerchi perfetti",
+    "created": "2001-07-24 07:04:31",
+    "linked_file": null,
+    "hugo": "7322-giotto-faceva-cerchi-perfetti",
+    "date": "2001-07-24",
+    "time": "07:04:31",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "04",
+    "second": "31"
+  },
+  {
+    "id": 6843,
+    "heading": "attenti all'anarchico di stato",
+    "created": "2001-07-24 07:14:44",
+    "linked_file": null,
+    "hugo": "6843-attenti-allanarchico-di-stato",
+    "date": "2001-07-24",
+    "time": "07:14:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "14",
+    "second": "44"
+  },
+  {
+    "id": 7270,
+    "heading": "scuola di repressione",
+    "created": "2001-07-24 07:26:17",
+    "linked_file": null,
+    "hugo": "7270-scuola-di-repressione",
+    "date": "2001-07-24",
+    "time": "07:26:17",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "26",
+    "second": "17"
+  },
+  {
+    "id": 7338,
+    "heading": "BLACK POLICE",
+    "created": "2001-07-24 07:36:22",
+    "linked_file": null,
+    "hugo": "7338-black-police",
+    "date": "2001-07-24",
+    "time": "07:36:22",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "36",
+    "second": "22"
+  },
+  {
+    "id": 7351,
+    "heading": "CONTRO LA GLOBALIZZAZIONE L'AUTARCHIA DEGLI ELFI",
+    "created": "2001-07-24 07:39:02",
+    "linked_file": null,
+    "hugo": "7351-contro-la-globalizzazione-lautarchia-degli-elfi",
+    "date": "2001-07-24",
+    "time": "07:39:02",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "39",
+    "second": "02"
+  },
+  {
+    "id": 7472,
+    "heading": "Presidio a Udine",
+    "created": "2001-07-24 07:39:14",
+    "linked_file": null,
+    "hugo": "7472-presidio-a-udine",
+    "date": "2001-07-24",
+    "time": "07:39:14",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "39",
+    "second": "14"
+  },
+  {
+    "id": 7483,
+    "heading": "ieri e oggi",
+    "created": "2001-07-24 07:52:42",
+    "linked_file": null,
+    "hugo": "7483-ieri-e-oggi",
+    "date": "2001-07-24",
+    "time": "07:52:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "07",
+    "minute": "52",
+    "second": "42"
+  },
+  {
+    "id": 7490,
+    "heading": "E IL CONTROVERTICE!?",
+    "created": "2001-07-24 08:00:14",
+    "linked_file": null,
+    "hugo": "7490-e-il-controvertice",
+    "date": "2001-07-24",
+    "time": "08:00:14",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "00",
+    "second": "14"
+  },
+  {
+    "id": 6743,
+    "heading": "preoccupazione",
+    "created": "2001-07-24 08:07:59",
+    "linked_file": null,
+    "hugo": "6743-preoccupazione",
+    "date": "2001-07-24",
+    "time": "08:07:59",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "07",
+    "second": "59"
+  },
+  {
+    "id": 7480,
+    "heading": "Lilliput in Piazza Manin",
+    "created": "2001-07-24 08:12:10",
+    "linked_file": null,
+    "hugo": "7480-lilliput-in-piazza-manin",
+    "date": "2001-07-24",
+    "time": "08:12:10",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "12",
+    "second": "10"
+  },
+  {
+    "id": 7473,
+    "heading": "OUR BELOVED DEMOCRATIC ITALIAN GOVERNMENT",
+    "created": "2001-07-24 08:13:16",
+    "linked_file": null,
+    "hugo": "7473-our-beloved-democratic-italian-government",
+    "date": "2001-07-24",
+    "time": "08:13:16",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "13",
+    "second": "16"
+  },
+  {
+    "id": 7514,
+    "heading": "Cortege de solidarite avec Genes (Genève le\r> 25.07)",
+    "created": "2001-07-24 08:22:45",
+    "linked_file": null,
+    "hugo": "7514-cortege-de-solidarite-avec-genes-geneve-le-2507",
+    "date": "2001-07-24",
+    "time": "08:22:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "22",
+    "second": "45"
+  },
+  {
+    "id": 7504,
+    "heading": "Manifestazione a Roma: alcune idee",
+    "created": "2001-07-24 08:34:09",
+    "linked_file": null,
+    "hugo": "7504-manifestazione-a-roma-alcune-idee",
+    "date": "2001-07-24",
+    "time": "08:34:09",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "34",
+    "second": "09"
+  },
+  {
+    "id": 7486,
+    "heading": "Carlo S. sta cercando chi..",
+    "created": "2001-07-24 08:52:38",
+    "linked_file": null,
+    "hugo": "7486-carlo-s-sta-cercando-chi",
+    "date": "2001-07-24",
+    "time": "08:52:38",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "52",
+    "second": "38"
+  },
+  {
+    "id": 7443,
+    "heading": "Siamo tutti nella zona rossa...",
+    "created": "2001-07-24 08:57:56",
+    "linked_file": null,
+    "hugo": "7443-siamo-tutti-nella-zona-rossa",
+    "date": "2001-07-24",
+    "time": "08:57:56",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "57",
+    "second": "56"
+  },
+  {
+    "id": 7441,
+    "heading": "LA Falsa propaganda Comunista",
+    "created": "2001-07-24 08:58:40",
+    "linked_file": null,
+    "hugo": "7441-la-falsa-propaganda-comunista",
+    "date": "2001-07-24",
+    "time": "08:58:40",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "08",
+    "minute": "58",
+    "second": "40"
+  },
+  {
+    "id": 7528,
+    "heading": "double standard",
+    "created": "2001-07-24 09:00:05",
+    "linked_file": null,
+    "hugo": "7528-double-standard",
+    "date": "2001-07-24",
+    "time": "09:00:05",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "00",
+    "second": "05"
+  },
+  {
+    "id": 7555,
+    "heading": "testimonio y instrucciones por el uso del nuevo fascismo",
+    "created": "2001-07-24 09:00:59",
+    "linked_file": null,
+    "hugo": "7555-testimonio-y-instrucciones-por-el-uso-del-nuevo-fascismo",
+    "date": "2001-07-24",
+    "time": "09:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 7557,
+    "heading": "testimonio y instrucciones por el uso del nuevo fascismo",
+    "created": "2001-07-24 09:04:48",
+    "linked_file": null,
+    "hugo": "7557-testimonio-y-instrucciones-por-el-uso-del-nuevo-fascismo",
+    "date": "2001-07-24",
+    "time": "09:04:48",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "04",
+    "second": "48"
+  },
+  {
+    "id": 7529,
+    "heading": "\"Mio figlio, una maschera di sangue\"",
+    "created": "2001-07-24 09:25:42",
+    "linked_file": null,
+    "hugo": "7529-mio-figlio-una-maschera-di-sangue",
+    "date": "2001-07-24",
+    "time": "09:25:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "25",
+    "second": "42"
+  },
+  {
+    "id": 7576,
+    "heading": "LA POLIZIA TEDESCA: a noi non ci sarebbe venuto mai in mente di SPARARE",
+    "created": "2001-07-24 09:26:47",
+    "linked_file": null,
+    "hugo": "7576-la-polizia-tedesca-a-noi-non-ci-sarebbe-venuto-mai-in-mente-di-sparare",
+    "date": "2001-07-24",
+    "time": "09:26:47",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "26",
+    "second": "47"
+  },
+  {
+    "id": 7487,
+    "heading": "24 luglio ore 17.00: presidio del csoa il Molino al consolato italiano di Lugano",
+    "created": "2001-07-24 09:28:17",
+    "linked_file": null,
+    "hugo": "7487-24-luglio-ore-1700-presidio-del-csoa-il-molino-al-consolato-italiano-di-lugano",
+    "date": "2001-07-24",
+    "time": "09:28:17",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "28",
+    "second": "17"
+  },
+  {
+    "id": 7568,
+    "heading": "question for indy-producer",
+    "created": "2001-07-24 09:43:55",
+    "linked_file": null,
+    "hugo": "7568-question-for-indyproducer",
+    "date": "2001-07-24",
+    "time": "09:43:55",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "43",
+    "second": "55"
+  },
+  {
+    "id": 7456,
+    "heading": "Movimenti sospetti",
+    "created": "2001-07-24 09:46:42",
+    "linked_file": null,
+    "hugo": "7456-movimenti-sospetti",
+    "date": "2001-07-24",
+    "time": "09:46:42",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "46",
+    "second": "42"
+  },
+  {
+    "id": 6713,
+    "heading": "who r u, man? / e tu chi sei?!?",
+    "created": "2001-07-24 09:55:49",
+    "linked_file": "2001/07/who_r_u.jpg",
+    "hugo": "6713-who-r-u-man-e-tu-chi-sei",
+    "date": "2001-07-24",
+    "time": "09:55:49",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "09",
+    "minute": "55",
+    "second": "49"
+  },
+  {
+    "id": 7525,
+    "heading": "\"Mio figlio, una maschera di sangue\"",
+    "created": "2001-07-24 10:08:41",
+    "linked_file": null,
+    "hugo": "7525-mio-figlio-una-maschera-di-sangue",
+    "date": "2001-07-24",
+    "time": "10:08:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "08",
+    "second": "41"
+  },
+  {
+    "id": 7446,
+    "heading": "il problema sono i media",
+    "created": "2001-07-24 10:13:57",
+    "linked_file": null,
+    "hugo": "7446-il-problema-sono-i-media",
+    "date": "2001-07-24",
+    "time": "10:13:57",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "13",
+    "second": "57"
+  },
+  {
+    "id": 7563,
+    "heading": "Violence, double-standards and black blocs",
+    "created": "2001-07-24 10:17:03",
+    "linked_file": null,
+    "hugo": "7563-violence-doublestandards-and-black-blocs",
+    "date": "2001-07-24",
+    "time": "10:17:03",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "17",
+    "second": "03"
+  },
+  {
+    "id": 7464,
+    "heading": "BENITO MUSSOLINI",
+    "created": "2001-07-24 10:24:15",
+    "linked_file": null,
+    "hugo": "7464-benito-mussolini",
+    "date": "2001-07-24",
+    "time": "10:24:15",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "24",
+    "second": "15"
+  },
+  {
+    "id": 6282,
+    "heading": "Press Conference, GSF, 22 July 2001",
+    "created": "2001-07-24 10:24:59",
+    "linked_file": null,
+    "hugo": "6282-press-conference-gsf-22-july-2001",
+    "date": "2001-07-24",
+    "time": "10:24:59",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "10",
+    "minute": "24",
+    "second": "59"
+  },
+  {
+    "id": 7499,
+    "heading": "Hey, running is healthy!",
+    "created": "2001-07-24 11:46:34",
+    "linked_file": null,
+    "hugo": "7499-hey-running-is-healthy",
+    "date": "2001-07-24",
+    "time": "11:46:34",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "11",
+    "minute": "46",
+    "second": "34"
+  },
+  {
+    "id": 7641,
+    "heading": "LA VERA VIOLENZA",
+    "created": "2001-07-24 12:21:01",
+    "linked_file": null,
+    "hugo": "7641-la-vera-violenza",
+    "date": "2001-07-24",
+    "time": "12:21:01",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "12",
+    "minute": "21",
+    "second": "01"
+  },
+  {
+    "id": 7644,
+    "heading": "World Leaders Creating Another Crisis",
+    "created": "2001-07-24 12:23:18",
+    "linked_file": "2001/07/missile.jpg",
+    "hugo": "7644-world-leaders-creating-another-crisis",
+    "date": "2001-07-24",
+    "time": "12:23:18",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "12",
+    "minute": "23",
+    "second": "18"
+  },
+  {
+    "id": 7635,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-24 12:43:48",
+    "linked_file": null,
+    "hugo": "7635-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-24",
+    "time": "12:43:48",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "12",
+    "minute": "43",
+    "second": "48"
+  },
+  {
+    "id": 7620,
+    "heading": "call for a mobilization in genoa on oct 20-21, 2001",
+    "created": "2001-07-24 13:22:51",
+    "linked_file": "2001/07/call_v0.92.htm",
+    "hugo": "7620-call-for-a-mobilization-in-genoa-on-oct-2021-2001",
+    "date": "2001-07-24",
+    "time": "13:22:51",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "13",
+    "minute": "22",
+    "second": "51"
+  },
+  {
+    "id": 7667,
+    "heading": "Il centro di Mídia Indipendete in America Latina monitorato",
+    "created": "2001-07-24 14:04:44",
+    "linked_file": null,
+    "hugo": "7667-il-centro-di-midia-indipendete-in-america-latina-monitorato",
+    "date": "2001-07-24",
+    "time": "14:04:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "04",
+    "second": "44"
+  },
+  {
+    "id": 7610,
+    "heading": "400 desaparecidos",
+    "created": "2001-07-24 14:09:44",
+    "linked_file": null,
+    "hugo": "7610-400-desaparecidos",
+    "date": "2001-07-24",
+    "time": "14:09:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "09",
+    "second": "44"
+  },
+  {
+    "id": 7688,
+    "heading": "anche a lugano in 100 per carlo",
+    "created": "2001-07-24 14:51:08",
+    "linked_file": null,
+    "hugo": "7688-anche-a-lugano-in-100-per-carlo",
+    "date": "2001-07-24",
+    "time": "14:51:08",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "51",
+    "second": "08"
+  },
+  {
+    "id": 7691,
+    "heading": "Londra:presidio davanti l'ambasciata italiana",
+    "created": "2001-07-24 14:57:52",
+    "linked_file": null,
+    "hugo": "7691-londrapresidio-davanti-lambasciata-italiana",
+    "date": "2001-07-24",
+    "time": "14:57:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "57",
+    "second": "52"
+  },
+  {
+    "id": 7692,
+    "heading": "Londra:presidio davanti l'ambasciata italiana",
+    "created": "2001-07-24 14:58:19",
+    "linked_file": null,
+    "hugo": "7692-londrapresidio-davanti-lambasciata-italiana",
+    "date": "2001-07-24",
+    "time": "14:58:19",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "14",
+    "minute": "58",
+    "second": "19"
+  },
+  {
+    "id": 4598,
+    "heading": "Soloidarity Actions Past, Present and Future",
+    "created": "2001-07-24 15:01:50",
+    "linked_file": null,
+    "hugo": "4598-soloidarity-actions-past-present-and-future",
+    "date": "2001-07-24",
+    "time": "15:01:50",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "01",
+    "second": "50"
+  },
+  {
+    "id": 7572,
+    "heading": "listen!",
+    "created": "2001-07-24 15:05:19",
+    "linked_file": null,
+    "hugo": "7572-listen",
+    "date": "2001-07-24",
+    "time": "15:05:19",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "05",
+    "second": "19"
+  },
+  {
+    "id": 7687,
+    "heading": "Assassini ! ! !",
+    "created": "2001-07-24 15:16:44",
+    "linked_file": "2001/07/carlo_.jpg",
+    "hugo": "7687-assassini-",
+    "date": "2001-07-24",
+    "time": "15:16:44",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "16",
+    "second": "44"
+  },
+  {
+    "id": 6187,
+    "heading": "Solidarity in many German Cities",
+    "created": "2001-07-24 15:57:26",
+    "linked_file": null,
+    "hugo": "6187-solidarity-in-many-german-cities",
+    "date": "2001-07-24",
+    "time": "15:57:26",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "15",
+    "minute": "57",
+    "second": "26"
+  },
+  {
+    "id": 7366,
+    "heading": "NEI SECOLI A CHI FEDELI?",
+    "created": "2001-07-24 16:05:52",
+    "linked_file": "2001/07/image_0041__genova_001_.jpg",
+    "hugo": "7366-nei-secoli-a-chi-fedeli",
+    "date": "2001-07-24",
+    "time": "16:05:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "05",
+    "second": "52"
+  },
+  {
+    "id": 7709,
+    "heading": "EU Crowd Control Technologies",
+    "created": "2001-07-24 16:07:45",
+    "linked_file": null,
+    "hugo": "7709-eu-crowd-control-technologies",
+    "date": "2001-07-24",
+    "time": "16:07:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "07",
+    "second": "45"
+  },
+  {
+    "id": 7710,
+    "heading": "Join the border-camp in frankfurt",
+    "created": "2001-07-24 16:08:02",
+    "linked_file": null,
+    "hugo": "7710-join-the-bordercamp-in-frankfurt",
+    "date": "2001-07-24",
+    "time": "16:08:02",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "08",
+    "second": "02"
+  },
+  {
+    "id": 7711,
+    "heading": "Chirac e Jospin: \"D'accordo con il movimento anti G8\"",
+    "created": "2001-07-24 16:10:13",
+    "linked_file": null,
+    "hugo": "7711-chirac-e-jospin-daccordo-con-il-movimento-anti-g8",
+    "date": "2001-07-24",
+    "time": "16:10:13",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "10",
+    "second": "13"
+  },
+  {
+    "id": 7208,
+    "heading": "IMC Press Release on IMC-Italia /GSF Raid",
+    "created": "2001-07-24 16:31:20",
+    "linked_file": null,
+    "hugo": "7208-imc-press-release-on-imcitalia-gsf-raid",
+    "date": "2001-07-24",
+    "time": "16:31:20",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "31",
+    "second": "20"
+  },
+  {
+    "id": 4248,
+    "heading": "Manifestacion en solidaridad con el pueblo de Genova - Argentina",
+    "created": "2001-07-24 16:46:24",
+    "linked_file": null,
+    "hugo": "4248-manifestacion-en-solidaridad-con-el-pueblo-de-genova-argentina",
+    "date": "2001-07-24",
+    "time": "16:46:24",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "46",
+    "second": "24"
+  },
+  {
+    "id": 7188,
+    "heading": "french-From the inside of the called \"black block\"",
+    "created": "2001-07-24 16:54:08",
+    "linked_file": null,
+    "hugo": "7188-frenchfrom-the-inside-of-the-called-black-block",
+    "date": "2001-07-24",
+    "time": "16:54:08",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "16",
+    "minute": "54",
+    "second": "08"
+  },
+  {
+    "id": 7739,
+    "heading": "manifestazione a Udine",
+    "created": "2001-07-24 17:05:58",
+    "linked_file": "2001/07/ud5.jpg",
+    "hugo": "7739-manifestazione-a-udine",
+    "date": "2001-07-24",
+    "time": "17:05:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "05",
+    "second": "58"
+  },
+  {
+    "id": 7613,
+    "heading": "CHIRAC  AL G8: \"Se 100.000 persone manifestano, esiste un problema\"",
+    "created": "2001-07-24 17:09:39",
+    "linked_file": null,
+    "hugo": "7613-chirac-al-g8-se-100000-persone-manifestano-esiste-un-problema",
+    "date": "2001-07-24",
+    "time": "17:09:39",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "09",
+    "second": "39"
+  },
+  {
+    "id": 7727,
+    "heading": "Solidarity Demo in Hamburg/Germany",
+    "created": "2001-07-24 17:10:58",
+    "linked_file": "2001/07/genoahh.jpg",
+    "hugo": "7727-solidarity-demo-in-hamburggermany",
+    "date": "2001-07-24",
+    "time": "17:10:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "10",
+    "second": "58"
+  },
+  {
+    "id": 7582,
+    "heading": "raccolte per voi",
+    "created": "2001-07-24 17:37:43",
+    "linked_file": null,
+    "hugo": "7582-raccolte-per-voi",
+    "date": "2001-07-24",
+    "time": "17:37:43",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "17",
+    "minute": "37",
+    "second": "43"
+  },
+  {
+    "id": 7452,
+    "heading": "Suspected police action",
+    "created": "2001-07-24 18:04:19",
+    "linked_file": null,
+    "hugo": "7452-suspected-police-action",
+    "date": "2001-07-24",
+    "time": "18:04:19",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "04",
+    "second": "19"
+  },
+  {
+    "id": 7442,
+    "heading": "La Falsa propaganda Comunista",
+    "created": "2001-07-24 18:05:22",
+    "linked_file": null,
+    "hugo": "7442-la-falsa-propaganda-comunista",
+    "date": "2001-07-24",
+    "time": "18:05:22",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "05",
+    "second": "22"
+  },
+  {
+    "id": 7770,
+    "heading": "Grande manifestazione ad Arezzo",
+    "created": "2001-07-24 18:16:50",
+    "linked_file": null,
+    "hugo": "7770-grande-manifestazione-ad-arezzo",
+    "date": "2001-07-24",
+    "time": "18:16:50",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "16",
+    "second": "50"
+  },
+  {
+    "id": 7647,
+    "heading": "Etna - the symbol of the movements fury and determination",
+    "created": "2001-07-24 18:23:04",
+    "linked_file": null,
+    "hugo": "7647-etna-the-symbol-of-the-movements-fury-and-determination",
+    "date": "2001-07-24",
+    "time": "18:23:04",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "23",
+    "second": "04"
+  },
+  {
+    "id": 7605,
+    "heading": "Genova: Photos",
+    "created": "2001-07-24 18:41:43",
+    "linked_file": null,
+    "hugo": "7605-genova-photos",
+    "date": "2001-07-24",
+    "time": "18:41:43",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "18",
+    "minute": "41",
+    "second": "43"
+  },
+  {
+    "id": 7586,
+    "heading": "Maroni licenzia Agnoletto",
+    "created": "2001-07-24 19:00:32",
+    "linked_file": null,
+    "hugo": "7586-maroni-licenzia-agnoletto",
+    "date": "2001-07-24",
+    "time": "19:00:32",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "00",
+    "second": "32"
+  },
+  {
+    "id": 7792,
+    "heading": "MOBILITAZIONI OROBICHE E CONSIDERAZIONI",
+    "created": "2001-07-24 19:04:11",
+    "linked_file": null,
+    "hugo": "7792-mobilitazioni-orobiche-e-considerazioni",
+    "date": "2001-07-24",
+    "time": "19:04:11",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "04",
+    "second": "11"
+  },
+  {
+    "id": 7700,
+    "heading": "RESOCONTO DA ROMA",
+    "created": "2001-07-24 19:07:45",
+    "linked_file": null,
+    "hugo": "7700-resoconto-da-roma",
+    "date": "2001-07-24",
+    "time": "19:07:45",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "07",
+    "second": "45"
+  },
+  {
+    "id": 7796,
+    "heading": "cariche in spiaggia",
+    "created": "2001-07-24 19:33:01",
+    "linked_file": "2001/07/5.jpg",
+    "hugo": "7796-cariche-in-spiaggia",
+    "date": "2001-07-24",
+    "time": "19:33:01",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "19",
+    "minute": "33",
+    "second": "01"
+  },
+  {
+    "id": 7660,
+    "heading": "Thousands turn out in peaceful demonstrations accross Italy",
+    "created": "2001-07-24 20:53:15",
+    "linked_file": null,
+    "hugo": "7660-thousands-turn-out-in-peaceful-demonstrations-accross-italy",
+    "date": "2001-07-24",
+    "time": "20:53:15",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "20",
+    "minute": "53",
+    "second": "15"
+  },
+  {
+    "id": 7820,
+    "heading": "solidarity in switzerland",
+    "created": "2001-07-24 21:01:21",
+    "linked_file": null,
+    "hugo": "7820-solidarity-in-switzerland",
+    "date": "2001-07-24",
+    "time": "21:01:21",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "01",
+    "second": "21"
+  },
+  {
+    "id": 7825,
+    "heading": "solidarity in zurich",
+    "created": "2001-07-24 21:20:33",
+    "linked_file": null,
+    "hugo": "7825-solidarity-in-zurich",
+    "date": "2001-07-24",
+    "time": "21:20:33",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "20",
+    "second": "33"
+  },
+  {
+    "id": 7826,
+    "heading": "Police display IMC \" weapons\" in Genoa",
+    "created": "2001-07-24 21:21:27",
+    "linked_file": null,
+    "hugo": "7826-police-display-imc-weapons-in-genoa",
+    "date": "2001-07-24",
+    "time": "21:21:27",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "21",
+    "second": "27"
+  },
+  {
+    "id": 7828,
+    "heading": "en,fr,it ) reports on genoa and solidarity on anarchist newswire",
+    "created": "2001-07-24 21:26:54",
+    "linked_file": null,
+    "hugo": "7828-enfrit-reports-on-genoa-and-solidarity-on-anarchist-newswire",
+    "date": "2001-07-24",
+    "time": "21:26:54",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "26",
+    "second": "54"
+  },
+  {
+    "id": 7830,
+    "heading": "no border no nation caravan arrests",
+    "created": "2001-07-24 21:36:41",
+    "linked_file": null,
+    "hugo": "7830-no-border-no-nation-caravan-arrests",
+    "date": "2001-07-24",
+    "time": "21:36:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "36",
+    "second": "41"
+  },
+  {
+    "id": 7833,
+    "heading": "contact in austria",
+    "created": "2001-07-24 21:42:56",
+    "linked_file": null,
+    "hugo": "7833-contact-in-austria",
+    "date": "2001-07-24",
+    "time": "21:42:56",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "42",
+    "second": "56"
+  },
+  {
+    "id": 7834,
+    "heading": "San Francisco Protest Against G8 Injustice",
+    "created": "2001-07-24 21:56:07",
+    "linked_file": "2001/07/hill_march.jpg",
+    "hugo": "7834-san-francisco-protest-against-g8-injustice",
+    "date": "2001-07-24",
+    "time": "21:56:07",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "21",
+    "minute": "56",
+    "second": "07"
+  },
+  {
+    "id": 7818,
+    "heading": "the big picture (genoa and revolution in general)",
+    "created": "2001-07-24 22:17:36",
+    "linked_file": null,
+    "hugo": "7818-the-big-picture-genoa-and-revolution-in-general",
+    "date": "2001-07-24",
+    "time": "22:17:36",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "17",
+    "second": "36"
+  },
+  {
+    "id": 7845,
+    "heading": "Carlo's Intersection",
+    "created": "2001-07-24 22:32:51",
+    "linked_file": "2001/07/carlo_blockade_3.jpg",
+    "hugo": "7845-carlos-intersection",
+    "date": "2001-07-24",
+    "time": "22:32:51",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "32",
+    "second": "51"
+  },
+  {
+    "id": 7847,
+    "heading": "Blood",
+    "created": "2001-07-24 22:36:58",
+    "linked_file": "2001/07/blood.jpg",
+    "hugo": "7847-blood",
+    "date": "2001-07-24",
+    "time": "22:36:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "36",
+    "second": "58"
+  },
+  {
+    "id": 7851,
+    "heading": "Prison For Scajola",
+    "created": "2001-07-24 22:54:52",
+    "linked_file": "2001/07/prison_for_scajolasb2xgb.jpg",
+    "hugo": "7851-prison-for-scajola",
+    "date": "2001-07-24",
+    "time": "22:54:52",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "54",
+    "second": "52"
+  },
+  {
+    "id": 7846,
+    "heading": "International Federation of Jounalists condemn Italian media concentration",
+    "created": "2001-07-24 22:57:58",
+    "linked_file": null,
+    "hugo": "7846-international-federation-of-jounalists-condemn-italian-media-concentration",
+    "date": "2001-07-24",
+    "time": "22:57:58",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "57",
+    "second": "58"
+  },
+  {
+    "id": 7853,
+    "heading": "Martyr",
+    "created": "2001-07-24 22:59:41",
+    "linked_file": "2001/07/movement.jpg",
+    "hugo": "7853-martyr",
+    "date": "2001-07-24",
+    "time": "22:59:41",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "22",
+    "minute": "59",
+    "second": "41"
+  },
+  {
+    "id": 7854,
+    "heading": "Dance of the Martyr",
+    "created": "2001-07-24 23:04:16",
+    "linked_file": "2001/07/death_dance.jpg",
+    "hugo": "7854-dance-of-the-martyr",
+    "date": "2001-07-24",
+    "time": "23:04:16",
+    "year": "2001",
+    "month": "07",
+    "day": "24",
+    "hour": "23",
+    "minute": "04",
+    "second": "16"
+  },
+  {
+    "id": 7720,
+    "heading": "assassini",
+    "created": "2001-07-25 01:06:42",
+    "linked_file": "2001/07/assassini.jpeg",
+    "hugo": "7720-assassini",
+    "date": "2001-07-25",
+    "time": "01:06:42",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "06",
+    "second": "42"
+  },
+  {
+    "id": 7785,
+    "heading": "Ma non era in canottiera?",
+    "created": "2001-07-25 01:13:38",
+    "linked_file": null,
+    "hugo": "7785-ma-non-era-in-canottiera",
+    "date": "2001-07-25",
+    "time": "01:13:38",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "13",
+    "second": "38"
+  },
+  {
+    "id": 7696,
+    "heading": "STRAORDINARIA MANIFESTAZIONE A ROMA -- PRIMA FOTO (altre saranno postate presto)",
+    "created": "2001-07-25 01:30:52",
+    "linked_file": "2001/07/dscn0085.jpg",
+    "hugo": "7696-straordinaria-manifestazione-a-roma-prima-foto-altre-saranno-postate-presto",
+    "date": "2001-07-25",
+    "time": "01:30:52",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "30",
+    "second": "52"
+  },
+  {
+    "id": 7878,
+    "heading": "more eyewitness accounts and call for mobilization",
+    "created": "2001-07-25 01:31:51",
+    "linked_file": "2001/07/call_v0.92oblxr6.htm",
+    "hugo": "7878-more-eyewitness-accounts-and-call-for-mobilization",
+    "date": "2001-07-25",
+    "time": "01:31:51",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "31",
+    "second": "51"
+  },
+  {
+    "id": 7300,
+    "heading": "Chiadiamo i danni",
+    "created": "2001-07-25 01:34:40",
+    "linked_file": null,
+    "hugo": "7300-chiadiamo-i-danni",
+    "date": "2001-07-25",
+    "time": "01:34:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "34",
+    "second": "40"
+  },
+  {
+    "id": 6753,
+    "heading": "Pestaggio alla genovese",
+    "created": "2001-07-25 01:40:11",
+    "linked_file": null,
+    "hugo": "6753-pestaggio-alla-genovese",
+    "date": "2001-07-25",
+    "time": "01:40:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "40",
+    "second": "11"
+  },
+  {
+    "id": 7769,
+    "heading": "Criminalization of the Black Bloc - State wins the match!",
+    "created": "2001-07-25 01:58:54",
+    "linked_file": null,
+    "hugo": "7769-criminalization-of-the-black-bloc-state-wins-the-match",
+    "date": "2001-07-25",
+    "time": "01:58:54",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "01",
+    "minute": "58",
+    "second": "54"
+  },
+  {
+    "id": 7807,
+    "heading": "colpevole",
+    "created": "2001-07-25 02:00:11",
+    "linked_file": null,
+    "hugo": "7807-colpevole",
+    "date": "2001-07-25",
+    "time": "02:00:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "00",
+    "second": "11"
+  },
+  {
+    "id": 7535,
+    "heading": "Violence in Genoa: the target and the turning point",
+    "created": "2001-07-25 02:14:55",
+    "linked_file": null,
+    "hugo": "7535-violence-in-genoa-the-target-and-the-turning-point",
+    "date": "2001-07-25",
+    "time": "02:14:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "14",
+    "second": "55"
+  },
+  {
+    "id": 7858,
+    "heading": "Dance of the Martyr Photo#2",
+    "created": "2001-07-25 02:19:42",
+    "linked_file": "2001/07/death_dance_4.jpg",
+    "hugo": "7858-dance-of-the-martyr-photo2",
+    "date": "2001-07-25",
+    "time": "02:19:42",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "19",
+    "second": "42"
+  },
+  {
+    "id": 7734,
+    "heading": "picture report of police raid on GSF and Indymedia in Genova",
+    "created": "2001-07-25 02:21:13",
+    "linked_file": "2001/07/radiator_01.jpg",
+    "hugo": "7734-picture-report-of-police-raid-on-gsf-and-indymedia-in-genova",
+    "date": "2001-07-25",
+    "time": "02:21:13",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "21",
+    "second": "13"
+  },
+  {
+    "id": 2710,
+    "heading": "Sgomberate le prigioni genovesi",
+    "created": "2001-07-25 02:43:10",
+    "linked_file": null,
+    "hugo": "2710-sgomberate-le-prigioni-genovesi",
+    "date": "2001-07-25",
+    "time": "02:43:10",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "43",
+    "second": "10"
+  },
+  {
+    "id": 7838,
+    "heading": "Some of our reflections on the days in Genoa",
+    "created": "2001-07-25 02:45:14",
+    "linked_file": null,
+    "hugo": "7838-some-of-our-reflections-on-the-days-in-genoa",
+    "date": "2001-07-25",
+    "time": "02:45:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "02",
+    "minute": "45",
+    "second": "14"
+  },
+  {
+    "id": 7934,
+    "heading": "cingolato con pestaggio",
+    "created": "2001-07-25 03:03:32",
+    "linked_file": "2001/07/4.jpg",
+    "hugo": "7934-cingolato-con-pestaggio",
+    "date": "2001-07-25",
+    "time": "03:03:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "03",
+    "second": "32"
+  },
+  {
+    "id": 6492,
+    "heading": "G8 and Uman Rights",
+    "created": "2001-07-25 03:23:35",
+    "linked_file": "2001/07/diritti_umani.jpg",
+    "hugo": "6492-g8-and-uman-rights",
+    "date": "2001-07-25",
+    "time": "03:23:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "23",
+    "second": "35"
+  },
+  {
+    "id": 7465,
+    "heading": "un infiltrato",
+    "created": "2001-07-25 03:23:40",
+    "linked_file": "2001/07/inf.gif",
+    "hugo": "7465-un-infiltrato",
+    "date": "2001-07-25",
+    "time": "03:23:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "23",
+    "second": "40"
+  },
+  {
+    "id": 7951,
+    "heading": "Solidarity in Bavaria",
+    "created": "2001-07-25 03:24:46",
+    "linked_file": null,
+    "hugo": "7951-solidarity-in-bavaria",
+    "date": "2001-07-25",
+    "time": "03:24:46",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "24",
+    "second": "46"
+  },
+  {
+    "id": 7961,
+    "heading": "[ e s c a p e . c a p t i v i t y ]",
+    "created": "2001-07-25 03:46:35",
+    "linked_file": "2001/07/image_0051__escape_captivity_0003_.jpg",
+    "hugo": "7961-e-s-c-a-p-e-c-a-p-t-i-v-i-t-y-",
+    "date": "2001-07-25",
+    "time": "03:46:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "46",
+    "second": "35"
+  },
+  {
+    "id": 7658,
+    "heading": "C'è un filmato",
+    "created": "2001-07-25 03:50:11",
+    "linked_file": null,
+    "hugo": "7658-ce-un-filmato",
+    "date": "2001-07-25",
+    "time": "03:50:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "50",
+    "second": "11"
+  },
+  {
+    "id": 7390,
+    "heading": "MUTANDE BIANCHE",
+    "created": "2001-07-25 03:52:35",
+    "linked_file": null,
+    "hugo": "7390-mutande-bianche",
+    "date": "2001-07-25",
+    "time": "03:52:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "52",
+    "second": "35"
+  },
+  {
+    "id": 7856,
+    "heading": "Shout",
+    "created": "2001-07-25 03:59:06",
+    "linked_file": "2001/07/shout.jpg",
+    "hugo": "7856-shout",
+    "date": "2001-07-25",
+    "time": "03:59:06",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "03",
+    "minute": "59",
+    "second": "06"
+  },
+  {
+    "id": 7874,
+    "heading": "disobbedienza civile",
+    "created": "2001-07-25 04:12:08",
+    "linked_file": null,
+    "hugo": "7874-disobbedienza-civile",
+    "date": "2001-07-25",
+    "time": "04:12:08",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "12",
+    "second": "08"
+  },
+  {
+    "id": 7988,
+    "heading": "Bloodied but unbowed!",
+    "created": "2001-07-25 04:31:01",
+    "linked_file": "2001/07/we_are_bloodied_but_unbowed.htm",
+    "hugo": "7988-bloodied-but-unbowed",
+    "date": "2001-07-25",
+    "time": "04:31:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "31",
+    "second": "01"
+  },
+  {
+    "id": 7967,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-25 04:37:09",
+    "linked_file": null,
+    "hugo": "7967-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-25",
+    "time": "04:37:09",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "37",
+    "second": "09"
+  },
+  {
+    "id": 7889,
+    "heading": "LEGGE APPROVATA IL 20 DI LUGLIO?",
+    "created": "2001-07-25 04:37:57",
+    "linked_file": null,
+    "hugo": "7889-legge-approvata-il-20-di-luglio",
+    "date": "2001-07-25",
+    "time": "04:37:57",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "04",
+    "minute": "37",
+    "second": "57"
+  },
+  {
+    "id": 3412,
+    "heading": "Resoconto corteo immigrati / migrants demonstration report",
+    "created": "2001-07-25 05:03:57",
+    "linked_file": null,
+    "hugo": "3412-resoconto-corteo-immigrati-migrants-demonstration-report",
+    "date": "2001-07-25",
+    "time": "05:03:57",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "05",
+    "minute": "03",
+    "second": "57"
+  },
+  {
+    "id": 8019,
+    "heading": "where are they?",
+    "created": "2001-07-25 05:10:53",
+    "linked_file": null,
+    "hugo": "8019-where-are-they",
+    "date": "2001-07-25",
+    "time": "05:10:53",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "05",
+    "minute": "10",
+    "second": "53"
+  },
+  {
+    "id": 7992,
+    "heading": "L'ITALIA CHE HO IN MENTE",
+    "created": "2001-07-25 06:16:55",
+    "linked_file": "2001/07/in_mente.jpg",
+    "hugo": "7992-litalia-che-ho-in-mente",
+    "date": "2001-07-25",
+    "time": "06:16:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "16",
+    "second": "55"
+  },
+  {
+    "id": 8061,
+    "heading": "picture 4: take down the wall",
+    "created": "2001-07-25 06:18:30",
+    "linked_file": "2001/07/genua4.jpg",
+    "hugo": "8061-picture-4-take-down-the-wall",
+    "date": "2001-07-25",
+    "time": "06:18:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "18",
+    "second": "30"
+  },
+  {
+    "id": 8074,
+    "heading": "Leviamocel dal cazzo!",
+    "created": "2001-07-25 06:35:35",
+    "linked_file": "2001/07/contromano_berlusconi_leviamocelo.swf",
+    "hugo": "8074-leviamocel-dal-cazzo",
+    "date": "2001-07-25",
+    "time": "06:35:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "35",
+    "second": "35"
+  },
+  {
+    "id": 8075,
+    "heading": "> >  PER NON DIMENTICARE / DON'T FORGET ABOUT ...  ---->",
+    "created": "2001-07-25 06:37:53",
+    "linked_file": null,
+    "hugo": "8075-per-non-dimenticare-dont-forget-about-",
+    "date": "2001-07-25",
+    "time": "06:37:53",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "37",
+    "second": "53"
+  },
+  {
+    "id": 8082,
+    "heading": "CARLO GIULIANI, PIQUETERO GLOBAL",
+    "created": "2001-07-25 06:45:34",
+    "linked_file": null,
+    "hugo": "8082-carlo-giuliani-piquetero-global",
+    "date": "2001-07-25",
+    "time": "06:45:34",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "45",
+    "second": "34"
+  },
+  {
+    "id": 3827,
+    "heading": "Demonstrator killed by normal police gun",
+    "created": "2001-07-25 06:46:40",
+    "linked_file": "2001/07/gun.jpg",
+    "hugo": "3827-demonstrator-killed-by-normal-police-gun",
+    "date": "2001-07-25",
+    "time": "06:46:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "46",
+    "second": "40"
+  },
+  {
+    "id": 8084,
+    "heading": "G8 = Assasini",
+    "created": "2001-07-25 06:47:32",
+    "linked_file": "2001/07/genua6ohvnx8.jpg",
+    "hugo": "8084-g8-assasini",
+    "date": "2001-07-25",
+    "time": "06:47:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "47",
+    "second": "32"
+  },
+  {
+    "id": 8087,
+    "heading": "another picture from the mass demonstration",
+    "created": "2001-07-25 06:49:02",
+    "linked_file": "2001/07/genua5.jpg",
+    "hugo": "8087-another-picture-from-the-mass-demonstration",
+    "date": "2001-07-25",
+    "time": "06:49:02",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "49",
+    "second": "02"
+  },
+  {
+    "id": 8045,
+    "heading": "E INTANTO G.W. NON SI FERMA",
+    "created": "2001-07-25 06:51:31",
+    "linked_file": null,
+    "hugo": "8045-e-intanto-gw-non-si-ferma",
+    "date": "2001-07-25",
+    "time": "06:51:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "06",
+    "minute": "51",
+    "second": "31"
+  },
+  {
+    "id": 8023,
+    "heading": "Che fine hanno fatto i prigionieri di genova?",
+    "created": "2001-07-25 07:15:32",
+    "linked_file": null,
+    "hugo": "8023-che-fine-hanno-fatto-i-prigionieri-di-genova",
+    "date": "2001-07-25",
+    "time": "07:15:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "15",
+    "second": "32"
+  },
+  {
+    "id": 8114,
+    "heading": "ciao",
+    "created": "2001-07-25 07:16:32",
+    "linked_file": "2001/07/graffiti_is_a_weapon.jpg",
+    "hugo": "8114-ciao",
+    "date": "2001-07-25",
+    "time": "07:16:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "16",
+    "second": "32"
+  },
+  {
+    "id": 8137,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 07:37:47",
+    "linked_file": "2001/07/dscn0031.jpg",
+    "hugo": "8137-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "07:37:47",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "37",
+    "second": "47"
+  },
+  {
+    "id": 3067,
+    "heading": "Rude Awakening",
+    "created": "2001-07-25 07:40:43",
+    "linked_file": "2001/07/karlino.rm",
+    "hugo": "3067-rude-awakening",
+    "date": "2001-07-25",
+    "time": "07:40:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "40",
+    "second": "43"
+  },
+  {
+    "id": 7933,
+    "heading": "l'arte della dissuasione",
+    "created": "2001-07-25 07:47:33",
+    "linked_file": null,
+    "hugo": "7933-larte-della-dissuasione",
+    "date": "2001-07-25",
+    "time": "07:47:33",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "47",
+    "second": "33"
+  },
+  {
+    "id": 8150,
+    "heading": "UPDATE to: [IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 07:48:48",
+    "linked_file": "2001/07/dscn0051.jpg",
+    "hugo": "8150-update-to-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "07:48:48",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "48",
+    "second": "48"
+  },
+  {
+    "id": 8156,
+    "heading": "Protest in Greece",
+    "created": "2001-07-25 07:53:05",
+    "linked_file": null,
+    "hugo": "8156-protest-in-greece",
+    "date": "2001-07-25",
+    "time": "07:53:05",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "53",
+    "second": "05"
+  },
+  {
+    "id": 8157,
+    "heading": "our world is not for sale",
+    "created": "2001-07-25 07:53:43",
+    "linked_file": "2001/07/genua-neu9.jpg",
+    "hugo": "8157-our-world-is-not-for-sale",
+    "date": "2001-07-25",
+    "time": "07:53:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "53",
+    "second": "43"
+  },
+  {
+    "id": 8161,
+    "heading": "picture: one solution: revolution",
+    "created": "2001-07-25 07:57:21",
+    "linked_file": "2001/07/genua-neu8.jpg",
+    "hugo": "8161-picture-one-solution-revolution",
+    "date": "2001-07-25",
+    "time": "07:57:21",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "07",
+    "minute": "57",
+    "second": "21"
+  },
+  {
+    "id": 8168,
+    "heading": "15mila a Napoli per Carlo Giuliani",
+    "created": "2001-07-25 08:07:28",
+    "linked_file": null,
+    "hugo": "8168-15mila-a-napoli-per-carlo-giuliani",
+    "date": "2001-07-25",
+    "time": "08:07:28",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "07",
+    "second": "28"
+  },
+  {
+    "id": 8041,
+    "heading": "I CELERINI CARNE DA MACELLO",
+    "created": "2001-07-25 08:12:51",
+    "linked_file": null,
+    "hugo": "8041-i-celerini-carne-da-macello",
+    "date": "2001-07-25",
+    "time": "08:12:51",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "12",
+    "second": "51"
+  },
+  {
+    "id": 8177,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 08:15:26",
+    "linked_file": "2001/07/dpr_art5_dscn0060.jpg",
+    "hugo": "8177-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "08:15:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "15",
+    "second": "26"
+  },
+  {
+    "id": 8086,
+    "heading": "un vecchietto contro il regime",
+    "created": "2001-07-25 08:16:01",
+    "linked_file": null,
+    "hugo": "8086-un-vecchietto-contro-il-regime",
+    "date": "2001-07-25",
+    "time": "08:16:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "16",
+    "second": "01"
+  },
+  {
+    "id": 8008,
+    "heading": "Solidarietà con Agnoletto",
+    "created": "2001-07-25 08:16:27",
+    "linked_file": null,
+    "hugo": "8008-solidarieta-con-agnoletto",
+    "date": "2001-07-25",
+    "time": "08:16:27",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "16",
+    "second": "27"
+  },
+  {
+    "id": 8154,
+    "heading": "Mancano 100 prigionieri",
+    "created": "2001-07-25 08:18:59",
+    "linked_file": null,
+    "hugo": "8154-mancano-100-prigionieri",
+    "date": "2001-07-25",
+    "time": "08:18:59",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "18",
+    "second": "59"
+  },
+  {
+    "id": 8092,
+    "heading": "Un impegno concreto... ADDIO!",
+    "created": "2001-07-25 08:19:50",
+    "linked_file": "2001/07/contromano-berlusconi_addio.jpg",
+    "hugo": "8092-un-impegno-concreto-addio",
+    "date": "2001-07-25",
+    "time": "08:19:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "19",
+    "second": "50"
+  },
+  {
+    "id": 8189,
+    "heading": "400 persone a Salerno per Carlo Giuliani ucciso dalla polizia",
+    "created": "2001-07-25 08:20:54",
+    "linked_file": null,
+    "hugo": "8189-400-persone-a-salerno-per-carlo-giuliani-ucciso-dalla-polizia",
+    "date": "2001-07-25",
+    "time": "08:20:54",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "20",
+    "second": "54"
+  },
+  {
+    "id": 4290,
+    "heading": "Report from solidarity protest at New York Italian Consulate earliar today",
+    "created": "2001-07-25 08:21:02",
+    "linked_file": null,
+    "hugo": "4290-report-from-solidarity-protest-at-new-york-italian-consulate-earliar-today",
+    "date": "2001-07-25",
+    "time": "08:21:02",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "21",
+    "second": "02"
+  },
+  {
+    "id": 8196,
+    "heading": "400 persone a Salerno per Carlo Giuliani ucciso dalla polizia",
+    "created": "2001-07-25 08:25:58",
+    "linked_file": null,
+    "hugo": "8196-400-persone-a-salerno-per-carlo-giuliani-ucciso-dalla-polizia",
+    "date": "2001-07-25",
+    "time": "08:25:58",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "25",
+    "second": "58"
+  },
+  {
+    "id": 8198,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 08:26:17",
+    "linked_file": "2001/07/dscn0089.jpg",
+    "hugo": "8198-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "08:26:17",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "26",
+    "second": "17"
+  },
+  {
+    "id": 8199,
+    "heading": "C'eravate anche voi a Genova per il G8?",
+    "created": "2001-07-25 08:27:04",
+    "linked_file": null,
+    "hugo": "8199-ceravate-anche-voi-a-genova-per-il-g8",
+    "date": "2001-07-25",
+    "time": "08:27:04",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "27",
+    "second": "04"
+  },
+  {
+    "id": 8204,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-25 08:34:25",
+    "linked_file": "2001/07/dscn0108.jpg",
+    "hugo": "8204-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-25",
+    "time": "08:34:25",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "34",
+    "second": "25"
+  },
+  {
+    "id": 8100,
+    "heading": "GIP non convalida arresti / Judge does not confirm arrests",
+    "created": "2001-07-25 08:38:42",
+    "linked_file": null,
+    "hugo": "8100-gip-non-convalida-arresti-judge-does-not-confirm-arrests",
+    "date": "2001-07-25",
+    "time": "08:38:42",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "38",
+    "second": "42"
+  },
+  {
+    "id": 8211,
+    "heading": "Cronaca dal carcere di Pavia",
+    "created": "2001-07-25 08:43:11",
+    "linked_file": "2001/07/iz7zmw.txt",
+    "hugo": "8211-cronaca-dal-carcere-di-pavia",
+    "date": "2001-07-25",
+    "time": "08:43:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "43",
+    "second": "11"
+  },
+  {
+    "id": 8181,
+    "heading": "DIFFUSIONE DEL LIBRO BIANCO - 2",
+    "created": "2001-07-25 08:55:50",
+    "linked_file": null,
+    "hugo": "8181-diffusione-del-libro-bianco-2",
+    "date": "2001-07-25",
+    "time": "08:55:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "55",
+    "second": "50"
+  },
+  {
+    "id": 8124,
+    "heading": "TOPOLINO , I POLIZIOTTI E IL MAL DI TESTA",
+    "created": "2001-07-25 08:59:04",
+    "linked_file": "2001/07/pestaggi-208qs939eipslw.jpg",
+    "hugo": "8124-topolino-i-poliziotti-e-il-mal-di-testa",
+    "date": "2001-07-25",
+    "time": "08:59:04",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "08",
+    "minute": "59",
+    "second": "04"
+  },
+  {
+    "id": 8205,
+    "heading": "altri fermi di polizia / more searches of the police",
+    "created": "2001-07-25 09:00:11",
+    "linked_file": null,
+    "hugo": "8205-altri-fermi-di-polizia-more-searches-of-the-police",
+    "date": "2001-07-25",
+    "time": "09:00:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "00",
+    "second": "11"
+  },
+  {
+    "id": 8234,
+    "heading": "Why they are arresting as many people as possible",
+    "created": "2001-07-25 09:15:50",
+    "linked_file": null,
+    "hugo": "8234-why-they-are-arresting-as-many-people-as-possible",
+    "date": "2001-07-25",
+    "time": "09:15:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "15",
+    "second": "50"
+  },
+  {
+    "id": 5372,
+    "heading": "photo of Carlo Giuliani and father remembering son",
+    "created": "2001-07-25 09:24:00",
+    "linked_file": "2001/07/cguiliani.jpg",
+    "hugo": "5372-photo-of-carlo-giuliani-and-father-remembering-son",
+    "date": "2001-07-25",
+    "time": "09:24:00",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "24",
+    "second": "00"
+  },
+  {
+    "id": 8232,
+    "heading": "COmunicato GSF su non convalida arresti",
+    "created": "2001-07-25 09:33:55",
+    "linked_file": null,
+    "hugo": "8232-comunicato-gsf-su-non-convalida-arresti",
+    "date": "2001-07-25",
+    "time": "09:33:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "33",
+    "second": "55"
+  },
+  {
+    "id": 8221,
+    "heading": "\"Modus Operandi of Lawlessness\"",
+    "created": "2001-07-25 09:36:25",
+    "linked_file": null,
+    "hugo": "8221-modus-operandi-of-lawlessness",
+    "date": "2001-07-25",
+    "time": "09:36:25",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "36",
+    "second": "25"
+  },
+  {
+    "id": 8253,
+    "heading": "Stralcio da \"Comici spaventati guerrieri\" di Stefano Benni",
+    "created": "2001-07-25 09:38:39",
+    "linked_file": null,
+    "hugo": "8253-stralcio-da-comici-spaventati-guerrieri-di-stefano-benni",
+    "date": "2001-07-25",
+    "time": "09:38:39",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "38",
+    "second": "39"
+  },
+  {
+    "id": 8166,
+    "heading": "per il public social forum in autunno",
+    "created": "2001-07-25 09:49:40",
+    "linked_file": null,
+    "hugo": "8166-per-il-public-social-forum-in-autunno",
+    "date": "2001-07-25",
+    "time": "09:49:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "09",
+    "minute": "49",
+    "second": "40"
+  },
+  {
+    "id": 7943,
+    "heading": "un impegno mantenuto",
+    "created": "2001-07-25 10:17:34",
+    "linked_file": "2001/07/impegno.jpg",
+    "hugo": "7943-un-impegno-mantenuto",
+    "date": "2001-07-25",
+    "time": "10:17:34",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "17",
+    "second": "34"
+  },
+  {
+    "id": 8081,
+    "heading": "Fede e il TG4",
+    "created": "2001-07-25 10:18:11",
+    "linked_file": null,
+    "hugo": "8081-fede-e-il-tg4",
+    "date": "2001-07-25",
+    "time": "10:18:11",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "18",
+    "second": "11"
+  },
+  {
+    "id": 8285,
+    "heading": "Carlo Giuliani",
+    "created": "2001-07-25 10:19:14",
+    "linked_file": null,
+    "hugo": "8285-carlo-giuliani",
+    "date": "2001-07-25",
+    "time": "10:19:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "19",
+    "second": "14"
+  },
+  {
+    "id": 7849,
+    "heading": "Marching With Carlo",
+    "created": "2001-07-25 10:26:30",
+    "linked_file": "2001/07/marching_with_carlo.jpg",
+    "hugo": "7849-marching-with-carlo",
+    "date": "2001-07-25",
+    "time": "10:26:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "26",
+    "second": "30"
+  },
+  {
+    "id": 8268,
+    "heading": "altra Foto manifestazione Roma 24/7/01: sotto tiro!",
+    "created": "2001-07-25 10:31:07",
+    "linked_file": "2001/07/g8d2.jpg",
+    "hugo": "8268-altra-foto-manifestazione-roma-24701-sotto-tiro",
+    "date": "2001-07-25",
+    "time": "10:31:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "31",
+    "second": "07"
+  },
+  {
+    "id": 8295,
+    "heading": "manifestazione",
+    "created": "2001-07-25 10:34:44",
+    "linked_file": null,
+    "hugo": "8295-manifestazione",
+    "date": "2001-07-25",
+    "time": "10:34:44",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "34",
+    "second": "44"
+  },
+  {
+    "id": 8119,
+    "heading": "VINCITORI E VINTI",
+    "created": "2001-07-25 10:39:36",
+    "linked_file": null,
+    "hugo": "8119-vincitori-e-vinti",
+    "date": "2001-07-25",
+    "time": "10:39:36",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "39",
+    "second": "36"
+  },
+  {
+    "id": 8291,
+    "heading": "requisizione",
+    "created": "2001-07-25 10:53:23",
+    "linked_file": null,
+    "hugo": "8291-requisizione",
+    "date": "2001-07-25",
+    "time": "10:53:23",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "53",
+    "second": "23"
+  },
+  {
+    "id": 8076,
+    "heading": "verita' sull'assassinio di Carlo",
+    "created": "2001-07-25 10:54:27",
+    "linked_file": null,
+    "hugo": "8076-verita-sullassassinio-di-carlo",
+    "date": "2001-07-25",
+    "time": "10:54:27",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "54",
+    "second": "27"
+  },
+  {
+    "id": 8215,
+    "heading": "Agghiacciante testimonianza di due ragazzi spagnoli",
+    "created": "2001-07-25 10:54:37",
+    "linked_file": null,
+    "hugo": "8215-agghiacciante-testimonianza-di-due-ragazzi-spagnoli",
+    "date": "2001-07-25",
+    "time": "10:54:37",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "10",
+    "minute": "54",
+    "second": "37"
+  },
+  {
+    "id": 8236,
+    "heading": "Why they are arresting as many people as possible",
+    "created": "2001-07-25 11:00:43",
+    "linked_file": null,
+    "hugo": "8236-why-they-are-arresting-as-many-people-as-possible",
+    "date": "2001-07-25",
+    "time": "11:00:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "00",
+    "second": "43"
+  },
+  {
+    "id": 8077,
+    "heading": "Occhio al farmaco di stato: cos'è il T.S.O.?",
+    "created": "2001-07-25 11:10:18",
+    "linked_file": null,
+    "hugo": "8077-occhio-al-farmaco-di-stato-cose-il-tso",
+    "date": "2001-07-25",
+    "time": "11:10:18",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "10",
+    "second": "18"
+  },
+  {
+    "id": 8266,
+    "heading": "ANSA 25/07/01",
+    "created": "2001-07-25 11:26:31",
+    "linked_file": null,
+    "hugo": "8266-ansa-250701",
+    "date": "2001-07-25",
+    "time": "11:26:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "26",
+    "second": "31"
+  },
+  {
+    "id": 7916,
+    "heading": "Alcune considerazioni",
+    "created": "2001-07-25 11:38:07",
+    "linked_file": null,
+    "hugo": "7916-alcune-considerazioni",
+    "date": "2001-07-25",
+    "time": "11:38:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "38",
+    "second": "07"
+  },
+  {
+    "id": 8282,
+    "heading": "DIFFUSIONE DEL LIBRO BIANCO - 3",
+    "created": "2001-07-25 11:55:57",
+    "linked_file": null,
+    "hugo": "8282-diffusione-del-libro-bianco-3",
+    "date": "2001-07-25",
+    "time": "11:55:57",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "11",
+    "minute": "55",
+    "second": "57"
+  },
+  {
+    "id": 7794,
+    "heading": "Ci sparano addosso...",
+    "created": "2001-07-25 12:05:07",
+    "linked_file": "2001/07/ci_sparano_addosso.jpg",
+    "hugo": "7794-ci-sparano-addosso",
+    "date": "2001-07-25",
+    "time": "12:05:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "05",
+    "second": "07"
+  },
+  {
+    "id": 8357,
+    "heading": "cerco notizie su due ragazzi spagnoli scomparsi (OT)",
+    "created": "2001-07-25 12:07:39",
+    "linked_file": null,
+    "hugo": "8357-cerco-notizie-su-due-ragazzi-spagnoli-scomparsi-ot",
+    "date": "2001-07-25",
+    "time": "12:07:39",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "07",
+    "second": "39"
+  },
+  {
+    "id": 8239,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-25 12:15:37",
+    "linked_file": null,
+    "hugo": "8239-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-25",
+    "time": "12:15:37",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "15",
+    "second": "37"
+  },
+  {
+    "id": 7715,
+    "heading": "VIOLENZE",
+    "created": "2001-07-25 12:18:02",
+    "linked_file": null,
+    "hugo": "7715-violenze",
+    "date": "2001-07-25",
+    "time": "12:18:02",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "18",
+    "second": "02"
+  },
+  {
+    "id": 8368,
+    "heading": "Sassi sul G8",
+    "created": "2001-07-25 12:29:31",
+    "linked_file": null,
+    "hugo": "8368-sassi-sul-g8",
+    "date": "2001-07-25",
+    "time": "12:29:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "29",
+    "second": "31"
+  },
+  {
+    "id": 8371,
+    "heading": "BRASIL - SAO PAULO - MANIFESTACAO CONTRA O ASSASSINATO DE CARLO GIULIANO",
+    "created": "2001-07-25 12:38:19",
+    "linked_file": "2001/07/consul.jpg",
+    "hugo": "8371-brasil-sao-paulo-manifestacao-contra-o-assassinato-de-carlo-giuliano",
+    "date": "2001-07-25",
+    "time": "12:38:19",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "38",
+    "second": "19"
+  },
+  {
+    "id": 8302,
+    "heading": "APPELLO",
+    "created": "2001-07-25 12:59:31",
+    "linked_file": null,
+    "hugo": "8302-appello",
+    "date": "2001-07-25",
+    "time": "12:59:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "12",
+    "minute": "59",
+    "second": "31"
+  },
+  {
+    "id": 8385,
+    "heading": "Servizi segreti",
+    "created": "2001-07-25 13:14:40",
+    "linked_file": null,
+    "hugo": "8385-servizi-segreti",
+    "date": "2001-07-25",
+    "time": "13:14:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "14",
+    "second": "40"
+  },
+  {
+    "id": 8344,
+    "heading": "Ritorno alle origini",
+    "created": "2001-07-25 13:36:31",
+    "linked_file": null,
+    "hugo": "8344-ritorno-alle-origini",
+    "date": "2001-07-25",
+    "time": "13:36:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "36",
+    "second": "31"
+  },
+  {
+    "id": 3706,
+    "heading": "[fotografie da genova]",
+    "created": "2001-07-25 13:38:06",
+    "linked_file": "2001/07/pestaggi.jpg",
+    "hugo": "3706-fotografie-da-genova",
+    "date": "2001-07-25",
+    "time": "13:38:06",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "38",
+    "second": "06"
+  },
+  {
+    "id": 8326,
+    "heading": "Profeta in patria",
+    "created": "2001-07-25 13:39:30",
+    "linked_file": null,
+    "hugo": "8326-profeta-in-patria",
+    "date": "2001-07-25",
+    "time": "13:39:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "39",
+    "second": "30"
+  },
+  {
+    "id": 6789,
+    "heading": "Figlioli!",
+    "created": "2001-07-25 13:41:49",
+    "linked_file": null,
+    "hugo": "6789-figlioli",
+    "date": "2001-07-25",
+    "time": "13:41:49",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "41",
+    "second": "49"
+  },
+  {
+    "id": 8394,
+    "heading": "nonparla italiono",
+    "created": "2001-07-25 13:44:01",
+    "linked_file": "2001/07/graffiti_is_a_weaponskcemo.jpg",
+    "hugo": "8394-nonparla-italiono",
+    "date": "2001-07-25",
+    "time": "13:44:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "44",
+    "second": "01"
+  },
+  {
+    "id": 8339,
+    "heading": "Why the main modulation'enveiled the NSDAP/AO",
+    "created": "2001-07-25 13:49:01",
+    "linked_file": null,
+    "hugo": "8339-why-the-main-modulationenveiled-the-nsdapao",
+    "date": "2001-07-25",
+    "time": "13:49:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "13",
+    "minute": "49",
+    "second": "01"
+  },
+  {
+    "id": 8349,
+    "heading": "OPEARAZIONE MAKAIA, UN FALLIMENTO?",
+    "created": "2001-07-25 14:17:14",
+    "linked_file": null,
+    "hugo": "8349-opearazione-makaia-un-fallimento",
+    "date": "2001-07-25",
+    "time": "14:17:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "17",
+    "second": "14"
+  },
+  {
+    "id": 8405,
+    "heading": "Sempre piu' incredibile!",
+    "created": "2001-07-25 14:31:23",
+    "linked_file": null,
+    "hugo": "8405-sempre-piu-incredibile",
+    "date": "2001-07-25",
+    "time": "14:31:23",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "31",
+    "second": "23"
+  },
+  {
+    "id": 8391,
+    "heading": "Italian Consulate in Sao Paulo is blockaded by activists",
+    "created": "2001-07-25 14:32:48",
+    "linked_file": null,
+    "hugo": "8391-italian-consulate-in-sao-paulo-is-blockaded-by-activists",
+    "date": "2001-07-25",
+    "time": "14:32:48",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "32",
+    "second": "48"
+  },
+  {
+    "id": 8323,
+    "heading": "Truncheons rained down on me in the battle of Genoa",
+    "created": "2001-07-25 14:33:46",
+    "linked_file": null,
+    "hugo": "8323-truncheons-rained-down-on-me-in-the-battle-of-genoa",
+    "date": "2001-07-25",
+    "time": "14:33:46",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "33",
+    "second": "46"
+  },
+  {
+    "id": 5293,
+    "heading": "Police wants to take all proofs regarding their actions against the protesters",
+    "created": "2001-07-25 14:49:17",
+    "linked_file": "2001/07/u1xaes.txt",
+    "hugo": "5293-police-wants-to-take-all-proofs-regarding-their-actions-against-the-protesters",
+    "date": "2001-07-25",
+    "time": "14:49:17",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "49",
+    "second": "17"
+  },
+  {
+    "id": 8393,
+    "heading": "sequestrati in questura (PAVIA)",
+    "created": "2001-07-25 14:51:21",
+    "linked_file": "2001/07/klnbei.txt",
+    "hugo": "8393-sequestrati-in-questura-pavia",
+    "date": "2001-07-25",
+    "time": "14:51:21",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "51",
+    "second": "21"
+  },
+  {
+    "id": 8370,
+    "heading": "DA \"LA REPUBBLICA\" DI OGGI",
+    "created": "2001-07-25 14:58:14",
+    "linked_file": null,
+    "hugo": "8370-da-la-repubblica-di-oggi",
+    "date": "2001-07-25",
+    "time": "14:58:14",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "14",
+    "minute": "58",
+    "second": "14"
+  },
+  {
+    "id": 8422,
+    "heading": "CORTE EUROPEA DEI DIRITTI UMANI",
+    "created": "2001-07-25 15:17:18",
+    "linked_file": null,
+    "hugo": "8422-corte-europea-dei-diritti-umani",
+    "date": "2001-07-25",
+    "time": "15:17:18",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "17",
+    "second": "18"
+  },
+  {
+    "id": 8396,
+    "heading": "g8",
+    "created": "2001-07-25 15:23:31",
+    "linked_file": "2001/07/g8yjtusi.jpg",
+    "hugo": "8396-g8",
+    "date": "2001-07-25",
+    "time": "15:23:31",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "23",
+    "second": "31"
+  },
+  {
+    "id": 8427,
+    "heading": "manifestazioni in Austria",
+    "created": "2001-07-25 15:26:32",
+    "linked_file": null,
+    "hugo": "8427-manifestazioni-in-austria",
+    "date": "2001-07-25",
+    "time": "15:26:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "26",
+    "second": "32"
+  },
+  {
+    "id": 8195,
+    "heading": "L'inizio della nuova era fascista italiana",
+    "created": "2001-07-25 15:45:38",
+    "linked_file": "2001/07/berlusconicopertina6.jpg",
+    "hugo": "8195-linizio-della-nuova-era-fascista-italiana",
+    "date": "2001-07-25",
+    "time": "15:45:38",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "45",
+    "second": "38"
+  },
+  {
+    "id": 8440,
+    "heading": "Requiem in Italy and the World :: Genoa :: 20 July 2001",
+    "created": "2001-07-25 15:47:25",
+    "linked_file": null,
+    "hugo": "8440-requiem-in-italy-and-the-world-genoa-20-july-2001",
+    "date": "2001-07-25",
+    "time": "15:47:25",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "15",
+    "minute": "47",
+    "second": "25"
+  },
+  {
+    "id": 8445,
+    "heading": "Indignazione in Germania per i fatti di Genova",
+    "created": "2001-07-25 16:21:55",
+    "linked_file": null,
+    "hugo": "8445-indignazione-in-germania-per-i-fatti-di-genova",
+    "date": "2001-07-25",
+    "time": "16:21:55",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "21",
+    "second": "55"
+  },
+  {
+    "id": 7437,
+    "heading": "de l'interieur des pretendus Bl Bl suite et ref",
+    "created": "2001-07-25 16:27:32",
+    "linked_file": null,
+    "hugo": "7437-de-linterieur-des-pretendus-bl-bl-suite-et-ref",
+    "date": "2001-07-25",
+    "time": "16:27:32",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "27",
+    "second": "32"
+  },
+  {
+    "id": 8452,
+    "heading": "eu acho é pouco",
+    "created": "2001-07-25 16:30:26",
+    "linked_file": null,
+    "hugo": "8452-eu-acho-e-pouco",
+    "date": "2001-07-25",
+    "time": "16:30:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "30",
+    "second": "26"
+  },
+  {
+    "id": 8325,
+    "heading": "The Guardian UK, Italian public say policing too tolerant",
+    "created": "2001-07-25 16:43:26",
+    "linked_file": null,
+    "hugo": "8325-the-guardian-uk-italian-public-say-policing-too-tolerant",
+    "date": "2001-07-25",
+    "time": "16:43:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "16",
+    "minute": "43",
+    "second": "26"
+  },
+  {
+    "id": 7652,
+    "heading": "THE REAL VIOLENCE",
+    "created": "2001-07-25 17:07:35",
+    "linked_file": null,
+    "hugo": "7652-the-real-violence",
+    "date": "2001-07-25",
+    "time": "17:07:35",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "07",
+    "second": "35"
+  },
+  {
+    "id": 4526,
+    "heading": "IMC NEWS BLAST | GENOA G8: What is really happening?",
+    "created": "2001-07-25 17:11:00",
+    "linked_file": null,
+    "hugo": "4526-imc-news-blast-genoa-g8-what-is-really-happening",
+    "date": "2001-07-25",
+    "time": "17:11:00",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "11",
+    "second": "00"
+  },
+  {
+    "id": 8468,
+    "heading": "manifestazione a ginevra, Svizzera",
+    "created": "2001-07-25 17:12:26",
+    "linked_file": null,
+    "hugo": "8468-manifestazione-a-ginevra-svizzera",
+    "date": "2001-07-25",
+    "time": "17:12:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "12",
+    "second": "26"
+  },
+  {
+    "id": 8348,
+    "heading": "ancora da Pavia",
+    "created": "2001-07-25 17:21:30",
+    "linked_file": "2001/07/uwfhal.txt",
+    "hugo": "8348-ancora-da-pavia",
+    "date": "2001-07-25",
+    "time": "17:21:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "21",
+    "second": "30"
+  },
+  {
+    "id": 8456,
+    "heading": "COllettivo universitario a disposizione per ritrovare i \"dispersi\" di Genova",
+    "created": "2001-07-25 17:22:43",
+    "linked_file": null,
+    "hugo": "8456-collettivo-universitario-a-disposizione-per-ritrovare-i-dispersi-di-genova",
+    "date": "2001-07-25",
+    "time": "17:22:43",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "22",
+    "second": "43"
+  },
+  {
+    "id": 8454,
+    "heading": "Eu acho é pouco",
+    "created": "2001-07-25 17:53:00",
+    "linked_file": null,
+    "hugo": "8454-eu-acho-e-pouco",
+    "date": "2001-07-25",
+    "time": "17:53:00",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "53",
+    "second": "00"
+  },
+  {
+    "id": 8470,
+    "heading": "Schiacciati dalla violenza: Black Block e polizia.",
+    "created": "2001-07-25 17:55:40",
+    "linked_file": null,
+    "hugo": "8470-schiacciati-dalla-violenza-black-block-e-polizia",
+    "date": "2001-07-25",
+    "time": "17:55:40",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "17",
+    "minute": "55",
+    "second": "40"
+  },
+  {
+    "id": 8482,
+    "heading": "raid all'imc: la condanna dell'ass. int. giornalisti",
+    "created": "2001-07-25 18:01:22",
+    "linked_file": null,
+    "hugo": "8482-raid-allimc-la-condanna-dellass-int-giornalisti",
+    "date": "2001-07-25",
+    "time": "18:01:22",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "01",
+    "second": "22"
+  },
+  {
+    "id": 8387,
+    "heading": "domanda sui proiettili+sit-in a vicenza",
+    "created": "2001-07-25 18:11:09",
+    "linked_file": null,
+    "hugo": "8387-domanda-sui-proiettili+sitin-a-vicenza",
+    "date": "2001-07-25",
+    "time": "18:11:09",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "11",
+    "second": "09"
+  },
+  {
+    "id": 8496,
+    "heading": "strategie per distruggere il movimento.",
+    "created": "2001-07-25 18:16:17",
+    "linked_file": null,
+    "hugo": "8496-strategie-per-distruggere-il-movimento",
+    "date": "2001-07-25",
+    "time": "18:16:17",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "16",
+    "second": "17"
+  },
+  {
+    "id": 8386,
+    "heading": "OSSERVAZIONI SULL'OPERAZIONE MAKAYA",
+    "created": "2001-07-25 18:18:07",
+    "linked_file": null,
+    "hugo": "8386-osservazioni-sulloperazione-makaya",
+    "date": "2001-07-25",
+    "time": "18:18:07",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "18",
+    "second": "07"
+  },
+  {
+    "id": 8500,
+    "heading": "Requiem in Italy and the World :: Genoa :: 20 July 2001",
+    "created": "2001-07-25 18:22:01",
+    "linked_file": null,
+    "hugo": "8500-requiem-in-italy-and-the-world-genoa-20-july-2001",
+    "date": "2001-07-25",
+    "time": "18:22:01",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "22",
+    "second": "01"
+  },
+  {
+    "id": 7832,
+    "heading": "SBALORDIMENTI",
+    "created": "2001-07-25 18:27:15",
+    "linked_file": null,
+    "hugo": "7832-sbalordimenti",
+    "date": "2001-07-25",
+    "time": "18:27:15",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "27",
+    "second": "15"
+  },
+  {
+    "id": 8509,
+    "heading": "[it] CENTENAIA DI PERSONE A MADRID PER I FATTI DI GENOVA",
+    "created": "2001-07-25 18:35:41",
+    "linked_file": null,
+    "hugo": "8509-it-centenaia-di-persone-a-madrid-per-i-fatti-di-genova",
+    "date": "2001-07-25",
+    "time": "18:35:41",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "35",
+    "second": "41"
+  },
+  {
+    "id": 4296,
+    "heading": "Report from Candlelight vigil in Toronto",
+    "created": "2001-07-25 18:40:50",
+    "linked_file": null,
+    "hugo": "4296-report-from-candlelight-vigil-in-toronto",
+    "date": "2001-07-25",
+    "time": "18:40:50",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "40",
+    "second": "50"
+  },
+  {
+    "id": 8515,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-25 18:45:39",
+    "linked_file": null,
+    "hugo": "8515-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-25",
+    "time": "18:45:39",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "45",
+    "second": "39"
+  },
+  {
+    "id": 8477,
+    "heading": "richiedo info su barcellona",
+    "created": "2001-07-25 18:59:30",
+    "linked_file": null,
+    "hugo": "8477-richiedo-info-su-barcellona",
+    "date": "2001-07-25",
+    "time": "18:59:30",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "18",
+    "minute": "59",
+    "second": "30"
+  },
+  {
+    "id": 8524,
+    "heading": "...uno fra i tanti feriti...",
+    "created": "2001-07-25 19:10:48",
+    "linked_file": "2001/07/senza_titolo-15.jpg",
+    "hugo": "8524-uno-fra-i-tanti-feriti",
+    "date": "2001-07-25",
+    "time": "19:10:48",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "19",
+    "minute": "10",
+    "second": "48"
+  },
+  {
+    "id": 8504,
+    "heading": "Ancora 58 Tedeschi in arresto in Italia (dalla Sueddeutsche Zeitung) (Italian)",
+    "created": "2001-07-25 20:05:36",
+    "linked_file": null,
+    "hugo": "8504-ancora-58-tedeschi-in-arresto-in-italia-dalla-sueddeutsche-zeitung-italian",
+    "date": "2001-07-25",
+    "time": "20:05:36",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "20",
+    "minute": "05",
+    "second": "36"
+  },
+  {
+    "id": 8533,
+    "heading": "actions in sweden",
+    "created": "2001-07-25 20:28:26",
+    "linked_file": "2001/07/hbaaav.jpg",
+    "hugo": "8533-actions-in-sweden",
+    "date": "2001-07-25",
+    "time": "20:28:26",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "20",
+    "minute": "28",
+    "second": "26"
+  },
+  {
+    "id": 8321,
+    "heading": "Solidarity demo in Hamburg, Germany (re-post)",
+    "created": "2001-07-25 20:35:20",
+    "linked_file": "2001/07/genoahhrvbpey.jpg",
+    "hugo": "8321-solidarity-demo-in-hamburg-germany-repost",
+    "date": "2001-07-25",
+    "time": "20:35:20",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "20",
+    "minute": "35",
+    "second": "20"
+  },
+  {
+    "id": 8540,
+    "heading": "en, it, ca, fr, de) genoa info & solidarity on anarchist list",
+    "created": "2001-07-25 21:38:56",
+    "linked_file": null,
+    "hugo": "8540-en-it-ca-fr-de-genoa-info-solidarity-on-anarchist-list",
+    "date": "2001-07-25",
+    "time": "21:38:56",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "21",
+    "minute": "38",
+    "second": "56"
+  },
+  {
+    "id": 8543,
+    "heading": "Genoa Social Forum, NONVIOLENT main umbrella of G8 countersummit. Raid \"Weapons\"",
+    "created": "2001-07-25 23:32:53",
+    "linked_file": null,
+    "hugo": "8543-genoa-social-forum-nonviolent-main-umbrella-of-g8-countersummit-raid-weapons",
+    "date": "2001-07-25",
+    "time": "23:32:53",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "23",
+    "minute": "32",
+    "second": "53"
+  },
+  {
+    "id": 8539,
+    "heading": "ultime sul sequestro (parte III)",
+    "created": "2001-07-25 23:37:54",
+    "linked_file": "2001/07/y2pqo1.txt",
+    "hugo": "8539-ultime-sul-sequestro-parte-iii",
+    "date": "2001-07-25",
+    "time": "23:37:54",
+    "year": "2001",
+    "month": "07",
+    "day": "25",
+    "hour": "23",
+    "minute": "37",
+    "second": "54"
+  },
+  {
+    "id": 8549,
+    "heading": "Sit-in a TERAMO - 25",
+    "created": "2001-07-26 00:04:50",
+    "linked_file": null,
+    "hugo": "8549-sitin-a-teramo-25",
+    "date": "2001-07-26",
+    "time": "00:04:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "00",
+    "minute": "04",
+    "second": "50"
+  },
+  {
+    "id": 5897,
+    "heading": "Declaration of war in Genoa",
+    "created": "2001-07-26 00:13:18",
+    "linked_file": null,
+    "hugo": "5897-declaration-of-war-in-genoa",
+    "date": "2001-07-26",
+    "time": "00:13:18",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "00",
+    "minute": "13",
+    "second": "18"
+  },
+  {
+    "id": 8486,
+    "heading": "Directory of pictures from Genoa.",
+    "created": "2001-07-26 00:14:17",
+    "linked_file": null,
+    "hugo": "8486-directory-of-pictures-from-genoa",
+    "date": "2001-07-26",
+    "time": "00:14:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "00",
+    "minute": "14",
+    "second": "17"
+  },
+  {
+    "id": 7478,
+    "heading": "PER CHIUNQUE ABBIA TESTIMONIANZE, FOTO DI DENUNCIA O ANCHE SOLO INDIGNAZIONE",
+    "created": "2001-07-26 01:19:25",
+    "linked_file": null,
+    "hugo": "7478-per-chiunque-abbia-testimonianze-foto-di-denuncia-o-anche-solo-indignazione",
+    "date": "2001-07-26",
+    "time": "01:19:25",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "19",
+    "second": "25"
+  },
+  {
+    "id": 8318,
+    "heading": "IN MEMORIAM",
+    "created": "2001-07-26 01:30:05",
+    "linked_file": "2001/07/in_memoriam__.gif",
+    "hugo": "8318-in-memoriam",
+    "date": "2001-07-26",
+    "time": "01:30:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "30",
+    "second": "05"
+  },
+  {
+    "id": 8513,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 01:30:38",
+    "linked_file": null,
+    "hugo": "8513-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "01:30:38",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "30",
+    "second": "38"
+  },
+  {
+    "id": 8024,
+    "heading": "IL PROBLEMA",
+    "created": "2001-07-26 01:33:37",
+    "linked_file": null,
+    "hugo": "8024-il-problema",
+    "date": "2001-07-26",
+    "time": "01:33:37",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "33",
+    "second": "37"
+  },
+  {
+    "id": 8484,
+    "heading": "LA TV ITALIANA CONTINUA A SPOSTARE IL TERRENO PER UCCIDERE IL GSF",
+    "created": "2001-07-26 01:43:41",
+    "linked_file": null,
+    "hugo": "8484-la-tv-italiana-continua-a-spostare-il-terreno-per-uccidere-il-gsf",
+    "date": "2001-07-26",
+    "time": "01:43:41",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "01",
+    "minute": "43",
+    "second": "41"
+  },
+  {
+    "id": 8578,
+    "heading": "nulla è come prima. in memory of Carlo giuliani",
+    "created": "2001-07-26 02:08:06",
+    "linked_file": null,
+    "hugo": "8578-nulla-e-come-prima-in-memory-of-carlo-giuliani",
+    "date": "2001-07-26",
+    "time": "02:08:06",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "08",
+    "second": "06"
+  },
+  {
+    "id": 8579,
+    "heading": "prefettura terni",
+    "created": "2001-07-26 02:12:44",
+    "linked_file": "2001/07/g84knwsdp.jpg",
+    "hugo": "8579-prefettura-terni",
+    "date": "2001-07-26",
+    "time": "02:12:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "12",
+    "second": "44"
+  },
+  {
+    "id": 6657,
+    "heading": "Un attacco infame",
+    "created": "2001-07-26 02:27:34",
+    "linked_file": "2001/07/jul22_09.jpg",
+    "hugo": "6657-un-attacco-infame",
+    "date": "2001-07-26",
+    "time": "02:27:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "27",
+    "second": "34"
+  },
+  {
+    "id": 8499,
+    "heading": "strategie per distruggere il movimento...",
+    "created": "2001-07-26 02:28:24",
+    "linked_file": null,
+    "hugo": "8499-strategie-per-distruggere-il-movimento",
+    "date": "2001-07-26",
+    "time": "02:28:24",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "28",
+    "second": "24"
+  },
+  {
+    "id": 8585,
+    "heading": "STARWARS",
+    "created": "2001-07-26 02:28:58",
+    "linked_file": null,
+    "hugo": "8585-starwars",
+    "date": "2001-07-26",
+    "time": "02:28:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "28",
+    "second": "58"
+  },
+  {
+    "id": 8443,
+    "heading": "Scompiglio nell'ultradestra per le infiltrazioni di camerati nel \"Black Bloc\"",
+    "created": "2001-07-26 02:34:13",
+    "linked_file": null,
+    "hugo": "8443-scompiglio-nellultradestra-per-le-infiltrazioni-di-camerati-nel-black-bloc",
+    "date": "2001-07-26",
+    "time": "02:34:13",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "34",
+    "second": "13"
+  },
+  {
+    "id": 8026,
+    "heading": "diffusione libro bianco",
+    "created": "2001-07-26 02:50:35",
+    "linked_file": null,
+    "hugo": "8026-diffusione-libro-bianco",
+    "date": "2001-07-26",
+    "time": "02:50:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "50",
+    "second": "35"
+  },
+  {
+    "id": 8577,
+    "heading": "Ancora Barbarie",
+    "created": "2001-07-26 02:57:01",
+    "linked_file": null,
+    "hugo": "8577-ancora-barbarie",
+    "date": "2001-07-26",
+    "time": "02:57:01",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "02",
+    "minute": "57",
+    "second": "01"
+  },
+  {
+    "id": 8420,
+    "heading": "DA LA REPUBBLICA (ONLINE)",
+    "created": "2001-07-26 03:01:19",
+    "linked_file": null,
+    "hugo": "8420-da-la-repubblica-online",
+    "date": "2001-07-26",
+    "time": "03:01:19",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "01",
+    "second": "19"
+  },
+  {
+    "id": 8580,
+    "heading": "IL PROBLEMA.....E LA SOLUZIONE?....",
+    "created": "2001-07-26 03:01:34",
+    "linked_file": null,
+    "hugo": "8580-il-problemae-la-soluzione",
+    "date": "2001-07-26",
+    "time": "03:01:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "01",
+    "second": "34"
+  },
+  {
+    "id": 8406,
+    "heading": "Sempre piu' incredibile!",
+    "created": "2001-07-26 03:04:34",
+    "linked_file": null,
+    "hugo": "8406-sempre-piu-incredibile",
+    "date": "2001-07-26",
+    "time": "03:04:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "04",
+    "second": "34"
+  },
+  {
+    "id": 4577,
+    "heading": "Verbale indentificazione",
+    "created": "2001-07-26 03:05:12",
+    "linked_file": "2001/07/foglio3.jpg",
+    "hugo": "4577-verbale-indentificazione",
+    "date": "2001-07-26",
+    "time": "03:05:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "05",
+    "second": "12"
+  },
+  {
+    "id": 8184,
+    "heading": "il Dito di Dio",
+    "created": "2001-07-26 03:12:00",
+    "linked_file": null,
+    "hugo": "8184-il-dito-di-dio",
+    "date": "2001-07-26",
+    "time": "03:12:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "12",
+    "second": "00"
+  },
+  {
+    "id": 8517,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 03:20:12",
+    "linked_file": null,
+    "hugo": "8517-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "03:20:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "20",
+    "second": "12"
+  },
+  {
+    "id": 8609,
+    "heading": "Solidarity actions in Israel",
+    "created": "2001-07-26 03:21:53",
+    "linked_file": "2001/07/genuatelaviv.jpg",
+    "hugo": "8609-solidarity-actions-in-israel",
+    "date": "2001-07-26",
+    "time": "03:21:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "21",
+    "second": "53"
+  },
+  {
+    "id": 8216,
+    "heading": "Immagine satirica: 112 pronta somossa",
+    "created": "2001-07-26 03:24:03",
+    "linked_file": "2001/07/prontasomossa.gif",
+    "hugo": "8216-immagine-satirica-112-pronta-somossa",
+    "date": "2001-07-26",
+    "time": "03:24:03",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "24",
+    "second": "03"
+  },
+  {
+    "id": 8613,
+    "heading": "Tortured Spaniard back in Spain",
+    "created": "2001-07-26 03:24:22",
+    "linked_file": null,
+    "hugo": "8613-tortured-spaniard-back-in-spain",
+    "date": "2001-07-26",
+    "time": "03:24:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "24",
+    "second": "22"
+  },
+  {
+    "id": 8304,
+    "heading": "ucciso per coprire assassinio di pacifica dimostrante?",
+    "created": "2001-07-26 03:27:52",
+    "linked_file": null,
+    "hugo": "8304-ucciso-per-coprire-assassinio-di-pacifica-dimostrante",
+    "date": "2001-07-26",
+    "time": "03:27:52",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "27",
+    "second": "52"
+  },
+  {
+    "id": 3411,
+    "heading": "Sit down protest",
+    "created": "2001-07-26 03:44:44",
+    "linked_file": "2001/07/peacefel_protester_3.jpg",
+    "hugo": "3411-sit-down-protest",
+    "date": "2001-07-26",
+    "time": "03:44:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "44",
+    "second": "44"
+  },
+  {
+    "id": 8505,
+    "heading": "Comunicato della CdC della Federazione Anarchica",
+    "created": "2001-07-26 03:50:44",
+    "linked_file": null,
+    "hugo": "8505-comunicato-della-cdc-della-federazione-anarchica",
+    "date": "2001-07-26",
+    "time": "03:50:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "03",
+    "minute": "50",
+    "second": "44"
+  },
+  {
+    "id": 8640,
+    "heading": "PLEASE, SPREAD THIS MESSAGE - PER FAVORE, DIFFONDI QUESTO MESSAGGIO",
+    "created": "2001-07-26 04:06:55",
+    "linked_file": null,
+    "hugo": "8640-please-spread-this-message-per-favore-diffondi-questo-messaggio",
+    "date": "2001-07-26",
+    "time": "04:06:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "06",
+    "second": "55"
+  },
+  {
+    "id": 8098,
+    "heading": "Carlo Giuliani simbolo d'imbecillità",
+    "created": "2001-07-26 04:10:09",
+    "linked_file": null,
+    "hugo": "8098-carlo-giuliani-simbolo-dimbecillita",
+    "date": "2001-07-26",
+    "time": "04:10:09",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "10",
+    "second": "09"
+  },
+  {
+    "id": 8659,
+    "heading": "Genova stories",
+    "created": "2001-07-26 04:15:28",
+    "linked_file": "2001/07/tesroby.doc",
+    "hugo": "8659-genova-stories",
+    "date": "2001-07-26",
+    "time": "04:15:28",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "15",
+    "second": "28"
+  },
+  {
+    "id": 8230,
+    "heading": "Preoccupanti notizie da Genova",
+    "created": "2001-07-26 04:21:36",
+    "linked_file": null,
+    "hugo": "8230-preoccupanti-notizie-da-genova",
+    "date": "2001-07-26",
+    "time": "04:21:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "21",
+    "second": "36"
+  },
+  {
+    "id": 8631,
+    "heading": "xche",
+    "created": "2001-07-26 04:30:53",
+    "linked_file": null,
+    "hugo": "8631-xche",
+    "date": "2001-07-26",
+    "time": "04:30:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "30",
+    "second": "53"
+  },
+  {
+    "id": 8213,
+    "heading": "[IT]MANIFESTAZIONE A ROMA -- [EN] DEMONSTRATION IN ROME",
+    "created": "2001-07-26 04:33:59",
+    "linked_file": "2001/07/dscn0117.jpg",
+    "hugo": "8213-itmanifestazione-a-roma-en-demonstration-in-rome",
+    "date": "2001-07-26",
+    "time": "04:33:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "33",
+    "second": "59"
+  },
+  {
+    "id": 7506,
+    "heading": "I violenti.",
+    "created": "2001-07-26 04:34:47",
+    "linked_file": null,
+    "hugo": "7506-i-violenti",
+    "date": "2001-07-26",
+    "time": "04:34:47",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "34",
+    "second": "47"
+  },
+  {
+    "id": 8683,
+    "heading": "[ESCAPE CAPTIVITY] - Aggiornamenti e nuovo appello per il libro bianco",
+    "created": "2001-07-26 04:58:06",
+    "linked_file": "2001/07/image_0052__escape_captivity_0004.jpg",
+    "hugo": "8683-escape-captivity-aggiornamenti-e-nuovo-appello-per-il-libro-bianco",
+    "date": "2001-07-26",
+    "time": "04:58:06",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "04",
+    "minute": "58",
+    "second": "06"
+  },
+  {
+    "id": 8676,
+    "heading": ".... oh when the saints, go march in INN",
+    "created": "2001-07-26 05:00:12",
+    "linked_file": null,
+    "hugo": "8676-oh-when-the-saints-go-march-in-inn",
+    "date": "2001-07-26",
+    "time": "05:00:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "00",
+    "second": "12"
+  },
+  {
+    "id": 8561,
+    "heading": "demonstrations in more than 120 cities around the world",
+    "created": "2001-07-26 05:00:51",
+    "linked_file": null,
+    "hugo": "8561-demonstrations-in-more-than-120-cities-around-the-world",
+    "date": "2001-07-26",
+    "time": "05:00:51",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "00",
+    "second": "51"
+  },
+  {
+    "id": 8638,
+    "heading": "quali argomenti?",
+    "created": "2001-07-26 05:02:22",
+    "linked_file": null,
+    "hugo": "8638-quali-argomenti",
+    "date": "2001-07-26",
+    "time": "05:02:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "02",
+    "second": "22"
+  },
+  {
+    "id": 8692,
+    "heading": "G8: questura, infiltrati neonazisti contro polizia /G8:  police headquarters, in",
+    "created": "2001-07-26 05:10:25",
+    "linked_file": null,
+    "hugo": "8692-g8-questura-infiltrati-neonazisti-contro-polizia-g8-police-headquarters-in",
+    "date": "2001-07-26",
+    "time": "05:10:25",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "10",
+    "second": "25"
+  },
+  {
+    "id": 8556,
+    "heading": "A TUTTI GLI ITALIANI",
+    "created": "2001-07-26 05:15:15",
+    "linked_file": null,
+    "hugo": "8556-a-tutti-gli-italiani",
+    "date": "2001-07-26",
+    "time": "05:15:15",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "15",
+    "second": "15"
+  },
+  {
+    "id": 8709,
+    "heading": "Psych treatment for \"nervous\" protesters?",
+    "created": "2001-07-26 05:30:50",
+    "linked_file": null,
+    "hugo": "8709-psych-treatment-for-nervous-protesters",
+    "date": "2001-07-26",
+    "time": "05:30:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "30",
+    "second": "50"
+  },
+  {
+    "id": 8708,
+    "heading": "Tutti gli articoli della Repubblica di oggi",
+    "created": "2001-07-26 05:38:02",
+    "linked_file": "2001/07/testimonianzeg8.doc",
+    "hugo": "8708-tutti-gli-articoli-della-repubblica-di-oggi",
+    "date": "2001-07-26",
+    "time": "05:38:02",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "38",
+    "second": "02"
+  },
+  {
+    "id": 8715,
+    "heading": "Nicht ideologisch blockieren: Judo-Prinzip",
+    "created": "2001-07-26 05:43:59",
+    "linked_file": null,
+    "hugo": "8715-nicht-ideologisch-blockieren-judoprinzip",
+    "date": "2001-07-26",
+    "time": "05:43:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "43",
+    "second": "59"
+  },
+  {
+    "id": 8674,
+    "heading": "Un poliziotto racconta la notte del blitz \"cileno\"",
+    "created": "2001-07-26 05:48:14",
+    "linked_file": null,
+    "hugo": "8674-un-poliziotto-racconta-la-notte-del-blitz-cileno",
+    "date": "2001-07-26",
+    "time": "05:48:14",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "05",
+    "minute": "48",
+    "second": "14"
+  },
+  {
+    "id": 8696,
+    "heading": "credibilità",
+    "created": "2001-07-26 06:07:17",
+    "linked_file": null,
+    "hugo": "8696-credibilita",
+    "date": "2001-07-26",
+    "time": "06:07:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "07",
+    "second": "17"
+  },
+  {
+    "id": 8695,
+    "heading": "NON BISOGNA AVER PAURA DI DENCIARE!!!!!! LEGGI L'ARTICOLO DA REPUBBLICA ONLINE",
+    "created": "2001-07-26 06:12:35",
+    "linked_file": null,
+    "hugo": "8695-non-bisogna-aver-paura-di-denciare-leggi-larticolo-da-repubblica-online",
+    "date": "2001-07-26",
+    "time": "06:12:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "12",
+    "second": "35"
+  },
+  {
+    "id": 8602,
+    "heading": "Una proposta",
+    "created": "2001-07-26 06:15:56",
+    "linked_file": null,
+    "hugo": "8602-una-proposta",
+    "date": "2001-07-26",
+    "time": "06:15:56",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "15",
+    "second": "56"
+  },
+  {
+    "id": 8643,
+    "heading": "Fuori Orario è stato oscurato?",
+    "created": "2001-07-26 06:20:00",
+    "linked_file": null,
+    "hugo": "8643-fuori-orario-e-stato-oscurato",
+    "date": "2001-07-26",
+    "time": "06:20:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "20",
+    "second": "00"
+  },
+  {
+    "id": 8628,
+    "heading": "A volte ritornano",
+    "created": "2001-07-26 06:23:58",
+    "linked_file": null,
+    "hugo": "8628-a-volte-ritornano",
+    "date": "2001-07-26",
+    "time": "06:23:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "23",
+    "second": "58"
+  },
+  {
+    "id": 8705,
+    "heading": "TESTIMONIANZA DELL'ASSASSINIO DI CARLO",
+    "created": "2001-07-26 06:40:32",
+    "linked_file": null,
+    "hugo": "8705-testimonianza-dellassassinio-di-carlo",
+    "date": "2001-07-26",
+    "time": "06:40:32",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "40",
+    "second": "32"
+  },
+  {
+    "id": 8652,
+    "heading": "Testimonianze",
+    "created": "2001-07-26 06:40:58",
+    "linked_file": "2001/07/genovachiara.doc",
+    "hugo": "8652-testimonianze",
+    "date": "2001-07-26",
+    "time": "06:40:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "40",
+    "second": "58"
+  },
+  {
+    "id": 8728,
+    "heading": "posso profetizzare una persecuzione?...",
+    "created": "2001-07-26 06:46:55",
+    "linked_file": null,
+    "hugo": "8728-posso-profetizzare-una-persecuzione",
+    "date": "2001-07-26",
+    "time": "06:46:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "46",
+    "second": "55"
+  },
+  {
+    "id": 8303,
+    "heading": "Contro l`accerchiamento del black bloc",
+    "created": "2001-07-26 06:49:00",
+    "linked_file": null,
+    "hugo": "8303-contro-laccerchiamento-del-black-bloc",
+    "date": "2001-07-26",
+    "time": "06:49:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "49",
+    "second": "00"
+  },
+  {
+    "id": 8723,
+    "heading": "nulla è come prima. in memory of Carlo Giuliani",
+    "created": "2001-07-26 06:52:10",
+    "linked_file": null,
+    "hugo": "8723-nulla-e-come-prima-in-memory-of-carlo-giuliani",
+    "date": "2001-07-26",
+    "time": "06:52:10",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "52",
+    "second": "10"
+  },
+  {
+    "id": 8758,
+    "heading": "testimonianze di medici su http://www.mir.it",
+    "created": "2001-07-26 06:58:51",
+    "linked_file": null,
+    "hugo": "8758-testimonianze-di-medici-su-httpwwwmirit",
+    "date": "2001-07-26",
+    "time": "06:58:51",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "58",
+    "second": "51"
+  },
+  {
+    "id": 8762,
+    "heading": "info Genova",
+    "created": "2001-07-26 06:59:57",
+    "linked_file": null,
+    "hugo": "8762-info-genova",
+    "date": "2001-07-26",
+    "time": "06:59:57",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "06",
+    "minute": "59",
+    "second": "57"
+  },
+  {
+    "id": 8765,
+    "heading": "Alternative media in Genoa",
+    "created": "2001-07-26 07:03:40",
+    "linked_file": null,
+    "hugo": "8765-alternative-media-in-genoa",
+    "date": "2001-07-26",
+    "time": "07:03:40",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "03",
+    "second": "40"
+  },
+  {
+    "id": 8745,
+    "heading": "genova per noi",
+    "created": "2001-07-26 07:10:34",
+    "linked_file": null,
+    "hugo": "8745-genova-per-noi",
+    "date": "2001-07-26",
+    "time": "07:10:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "10",
+    "second": "34"
+  },
+  {
+    "id": 8697,
+    "heading": "Body Bags???",
+    "created": "2001-07-26 07:18:11",
+    "linked_file": null,
+    "hugo": "8697-body-bags",
+    "date": "2001-07-26",
+    "time": "07:18:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "18",
+    "second": "11"
+  },
+  {
+    "id": 8693,
+    "heading": "NEONAZISTI ITALIANI INFILTRATI NEL CORTEO",
+    "created": "2001-07-26 07:22:10",
+    "linked_file": null,
+    "hugo": "8693-neonazisti-italiani-infiltrati-nel-corteo",
+    "date": "2001-07-26",
+    "time": "07:22:10",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "22",
+    "second": "10"
+  },
+  {
+    "id": 8773,
+    "heading": "Uno dei tanti pestaggi",
+    "created": "2001-07-26 07:29:28",
+    "linked_file": "2001/07/dopoaifzrz.jpg",
+    "hugo": "8773-uno-dei-tanti-pestaggi",
+    "date": "2001-07-26",
+    "time": "07:29:28",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "29",
+    "second": "28"
+  },
+  {
+    "id": 8781,
+    "heading": "FORSE LI SODOMIZZANO (facendogli cantare \"faccetta nera\", che tanto gli piace)",
+    "created": "2001-07-26 07:33:16",
+    "linked_file": null,
+    "hugo": "8781-forse-li-sodomizzano-facendogli-cantare-faccetta-nera-che-tanto-gli-piace",
+    "date": "2001-07-26",
+    "time": "07:33:16",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "33",
+    "second": "16"
+  },
+  {
+    "id": 8702,
+    "heading": "Plizziotto o Carabiniere devasta una banca",
+    "created": "2001-07-26 07:36:16",
+    "linked_file": null,
+    "hugo": "8702-plizziotto-o-carabiniere-devasta-una-banca",
+    "date": "2001-07-26",
+    "time": "07:36:16",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "36",
+    "second": "16"
+  },
+  {
+    "id": 8726,
+    "heading": "credi alle favole?",
+    "created": "2001-07-26 07:39:02",
+    "linked_file": null,
+    "hugo": "8726-credi-alle-favole",
+    "date": "2001-07-26",
+    "time": "07:39:02",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "39",
+    "second": "02"
+  },
+  {
+    "id": 7331,
+    "heading": "Genova - LA VARITA' DEVE USCIRE!",
+    "created": "2001-07-26 07:47:23",
+    "linked_file": null,
+    "hugo": "7331-genova-la-varita-deve-uscire",
+    "date": "2001-07-26",
+    "time": "07:47:23",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "47",
+    "second": "23"
+  },
+  {
+    "id": 2111,
+    "heading": "Goteborg calling",
+    "created": "2001-07-26 07:55:58",
+    "linked_file": null,
+    "hugo": "2111-goteborg-calling",
+    "date": "2001-07-26",
+    "time": "07:55:58",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "55",
+    "second": "58"
+  },
+  {
+    "id": 8552,
+    "heading": "G8: A chi giova tutto cio`? [lungo]",
+    "created": "2001-07-26 07:59:11",
+    "linked_file": null,
+    "hugo": "8552-g8-a-chi-giova-tutto-cio-lungo",
+    "date": "2001-07-26",
+    "time": "07:59:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "07",
+    "minute": "59",
+    "second": "11"
+  },
+  {
+    "id": 8782,
+    "heading": "Lettera di un padre venuto a Genova per proteggere sua figlia [it/en]",
+    "created": "2001-07-26 08:07:31",
+    "linked_file": null,
+    "hugo": "8782-lettera-di-un-padre-venuto-a-genova-per-proteggere-sua-figlia-iten",
+    "date": "2001-07-26",
+    "time": "08:07:31",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "07",
+    "second": "31"
+  },
+  {
+    "id": 8736,
+    "heading": "IL GOVERNO SAPEVA",
+    "created": "2001-07-26 08:07:53",
+    "linked_file": null,
+    "hugo": "8736-il-governo-sapeva",
+    "date": "2001-07-26",
+    "time": "08:07:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "07",
+    "second": "53"
+  },
+  {
+    "id": 5577,
+    "heading": "THE PEOPLE DECIDED TO STAY PEACEFUL",
+    "created": "2001-07-26 08:09:48",
+    "linked_file": "2001/07/zapatistas_20arrive_20in_20mexico_20city.jpg",
+    "hugo": "5577-the-people-decided-to-stay-peaceful",
+    "date": "2001-07-26",
+    "time": "08:09:48",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "09",
+    "second": "48"
+  },
+  {
+    "id": 8783,
+    "heading": "Un cronista pestato alla Diaz racconta",
+    "created": "2001-07-26 08:15:05",
+    "linked_file": null,
+    "hugo": "8783-un-cronista-pestato-alla-diaz-racconta",
+    "date": "2001-07-26",
+    "time": "08:15:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "15",
+    "second": "05"
+  },
+  {
+    "id": 8621,
+    "heading": "COP CONFESSES: \"IT'S ALL TRUE\"",
+    "created": "2001-07-26 08:21:57",
+    "linked_file": null,
+    "hugo": "8621-cop-confesses-its-all-true",
+    "date": "2001-07-26",
+    "time": "08:21:57",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "21",
+    "second": "57"
+  },
+  {
+    "id": 8759,
+    "heading": "Cities of Protest (actualized)",
+    "created": "2001-07-26 08:41:11",
+    "linked_file": null,
+    "hugo": "8759-cities-of-protest-actualized",
+    "date": "2001-07-26",
+    "time": "08:41:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "41",
+    "second": "11"
+  },
+  {
+    "id": 8819,
+    "heading": "Teniamoli d'occhio... tutti!!",
+    "created": "2001-07-26 08:50:36",
+    "linked_file": null,
+    "hugo": "8819-teniamoli-docchio-tutti",
+    "date": "2001-07-26",
+    "time": "08:50:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "08",
+    "minute": "50",
+    "second": "36"
+  },
+  {
+    "id": 8735,
+    "heading": "Dove sono!!!",
+    "created": "2001-07-26 09:01:57",
+    "linked_file": null,
+    "hugo": "8735-dove-sono",
+    "date": "2001-07-26",
+    "time": "09:01:57",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "01",
+    "second": "57"
+  },
+  {
+    "id": 8823,
+    "heading": "scavalcano e ignorano la giustizia",
+    "created": "2001-07-26 09:15:53",
+    "linked_file": null,
+    "hugo": "8823-scavalcano-e-ignorano-la-giustizia",
+    "date": "2001-07-26",
+    "time": "09:15:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "15",
+    "second": "53"
+  },
+  {
+    "id": 8729,
+    "heading": "l'opinione di un magistrato",
+    "created": "2001-07-26 09:16:21",
+    "linked_file": null,
+    "hugo": "8729-lopinione-di-un-magistrato",
+    "date": "2001-07-26",
+    "time": "09:16:21",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "16",
+    "second": "21"
+  },
+  {
+    "id": 8740,
+    "heading": "Comunicato del 25/07/2001",
+    "created": "2001-07-26 09:22:42",
+    "linked_file": null,
+    "hugo": "8740-comunicato-del-25072001",
+    "date": "2001-07-26",
+    "time": "09:22:42",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "22",
+    "second": "42"
+  },
+  {
+    "id": 8846,
+    "heading": "CASTELLI: <<A BOLZANETO NON HO VISTO VIOLENZE>>",
+    "created": "2001-07-26 09:26:26",
+    "linked_file": null,
+    "hugo": "8846-castelli-a-bolzaneto-non-ho-visto-violenze",
+    "date": "2001-07-26",
+    "time": "09:26:26",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "26",
+    "second": "26"
+  },
+  {
+    "id": 8607,
+    "heading": "no comment",
+    "created": "2001-07-26 09:34:34",
+    "linked_file": null,
+    "hugo": "8607-no-comment",
+    "date": "2001-07-26",
+    "time": "09:34:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "34",
+    "second": "34"
+  },
+  {
+    "id": 8829,
+    "heading": "Spinte e schiaffi agli operai.",
+    "created": "2001-07-26 09:43:59",
+    "linked_file": null,
+    "hugo": "8829-spinte-e-schiaffi-agli-operai",
+    "date": "2001-07-26",
+    "time": "09:43:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "43",
+    "second": "59"
+  },
+  {
+    "id": 8828,
+    "heading": "SINDACATO GUARDIA DI FINANZA",
+    "created": "2001-07-26 09:53:30",
+    "linked_file": null,
+    "hugo": "8828-sindacato-guardia-di-finanza",
+    "date": "2001-07-26",
+    "time": "09:53:30",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "53",
+    "second": "30"
+  },
+  {
+    "id": 8800,
+    "heading": "Balthazar Garzon, brave judges and lawyers everywhere: MAKE THEM PAY",
+    "created": "2001-07-26 09:56:07",
+    "linked_file": null,
+    "hugo": "8800-balthazar-garzon-brave-judges-and-lawyers-everywhere-make-them-pay",
+    "date": "2001-07-26",
+    "time": "09:56:07",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "09",
+    "minute": "56",
+    "second": "07"
+  },
+  {
+    "id": 7517,
+    "heading": "IMC NEWS BLAST | GENOA G8: What happened?",
+    "created": "2001-07-26 10:01:40",
+    "linked_file": null,
+    "hugo": "7517-imc-news-blast-genoa-g8-what-happened",
+    "date": "2001-07-26",
+    "time": "10:01:40",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "01",
+    "second": "40"
+  },
+  {
+    "id": 8590,
+    "heading": "FUCK YES!!! A COP TESIFIES THE BRUTALITY!!!",
+    "created": "2001-07-26 10:04:20",
+    "linked_file": null,
+    "hugo": "8590-fuck-yes-a-cop-tesifies-the-brutality",
+    "date": "2001-07-26",
+    "time": "10:04:20",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "04",
+    "second": "20"
+  },
+  {
+    "id": 8890,
+    "heading": "Infermiere, e allora?",
+    "created": "2001-07-26 10:06:36",
+    "linked_file": null,
+    "hugo": "8890-infermiere-e-allora",
+    "date": "2001-07-26",
+    "time": "10:06:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "06",
+    "second": "36"
+  },
+  {
+    "id": 8891,
+    "heading": "Infermiere, e allora?",
+    "created": "2001-07-26 10:06:50",
+    "linked_file": "2001/07/infermiere.jpg",
+    "hugo": "8891-infermiere-e-allora",
+    "date": "2001-07-26",
+    "time": "10:06:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "06",
+    "second": "50"
+  },
+  {
+    "id": 8806,
+    "heading": "è.....è stao...poteva essere....",
+    "created": "2001-07-26 10:07:12",
+    "linked_file": null,
+    "hugo": "8806-ee-staopoteva-essere",
+    "date": "2001-07-26",
+    "time": "10:07:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "07",
+    "second": "12"
+  },
+  {
+    "id": 8857,
+    "heading": "Teniamoli d'occhio... tutti!!",
+    "created": "2001-07-26 10:19:00",
+    "linked_file": null,
+    "hugo": "8857-teniamoli-docchio-tutti",
+    "date": "2001-07-26",
+    "time": "10:19:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "19",
+    "second": "00"
+  },
+  {
+    "id": 8899,
+    "heading": "BLACK POLICE BLOCK",
+    "created": "2001-07-26 10:23:55",
+    "linked_file": null,
+    "hugo": "8899-black-police-block",
+    "date": "2001-07-26",
+    "time": "10:23:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "23",
+    "second": "55"
+  },
+  {
+    "id": 8900,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 1",
+    "created": "2001-07-26 10:24:36",
+    "linked_file": null,
+    "hugo": "8900-a-womble-in-genoa-part-1",
+    "date": "2001-07-26",
+    "time": "10:24:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "24",
+    "second": "36"
+  },
+  {
+    "id": 8901,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 2",
+    "created": "2001-07-26 10:26:22",
+    "linked_file": null,
+    "hugo": "8901-a-womble-in-genoa-part-2",
+    "date": "2001-07-26",
+    "time": "10:26:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "26",
+    "second": "22"
+  },
+  {
+    "id": 8885,
+    "heading": "Mazzate anche a Parma",
+    "created": "2001-07-26 10:28:31",
+    "linked_file": null,
+    "hugo": "8885-mazzate-anche-a-parma",
+    "date": "2001-07-26",
+    "time": "10:28:31",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "28",
+    "second": "31"
+  },
+  {
+    "id": 8814,
+    "heading": "Elementos para una síntesis de las luchas globales.",
+    "created": "2001-07-26 10:29:01",
+    "linked_file": null,
+    "hugo": "8814-elementos-para-una-sintesis-de-las-luchas-globales",
+    "date": "2001-07-26",
+    "time": "10:29:01",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "29",
+    "second": "01"
+  },
+  {
+    "id": 8908,
+    "heading": "AUTODIFESA",
+    "created": "2001-07-26 10:38:36",
+    "linked_file": null,
+    "hugo": "8908-autodifesa",
+    "date": "2001-07-26",
+    "time": "10:38:36",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "38",
+    "second": "36"
+  },
+  {
+    "id": 8858,
+    "heading": "Occhi aperti!!!",
+    "created": "2001-07-26 10:58:35",
+    "linked_file": null,
+    "hugo": "8858-occhi-aperti",
+    "date": "2001-07-26",
+    "time": "10:58:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "58",
+    "second": "35"
+  },
+  {
+    "id": 8816,
+    "heading": "O YES, YES!!!",
+    "created": "2001-07-26 10:59:35",
+    "linked_file": null,
+    "hugo": "8816-o-yes-yes",
+    "date": "2001-07-26",
+    "time": "10:59:35",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "10",
+    "minute": "59",
+    "second": "35"
+  },
+  {
+    "id": 8902,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 3",
+    "created": "2001-07-26 11:08:00",
+    "linked_file": null,
+    "hugo": "8902-a-womble-in-genoa-part-3",
+    "date": "2001-07-26",
+    "time": "11:08:00",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "08",
+    "second": "00"
+  },
+  {
+    "id": 8855,
+    "heading": "«Neonazisti infiltrati nel corteo»",
+    "created": "2001-07-26 11:17:53",
+    "linked_file": null,
+    "hugo": "8855-neonazisti-infiltrati-nel-corteo",
+    "date": "2001-07-26",
+    "time": "11:17:53",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "17",
+    "second": "53"
+  },
+  {
+    "id": 8918,
+    "heading": "genoaResistance site is up and running",
+    "created": "2001-07-26 11:18:05",
+    "linked_file": null,
+    "hugo": "8918-genoaresistance-site-is-up-and-running",
+    "date": "2001-07-26",
+    "time": "11:18:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "18",
+    "second": "05"
+  },
+  {
+    "id": 8933,
+    "heading": "BLITZ DIAZ; COWELL, FINTO MORTO MA POI ANCORA BOTTE",
+    "created": "2001-07-26 11:48:22",
+    "linked_file": null,
+    "hugo": "8933-blitz-diaz-cowell-finto-morto-ma-poi-ancora-botte",
+    "date": "2001-07-26",
+    "time": "11:48:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "11",
+    "minute": "48",
+    "second": "22"
+  },
+  {
+    "id": 8943,
+    "heading": "Basterà un risarcimento di 300 milioni?",
+    "created": "2001-07-26 12:06:28",
+    "linked_file": null,
+    "hugo": "8943-bastera-un-risarcimento-di-300-milioni",
+    "date": "2001-07-26",
+    "time": "12:06:28",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "06",
+    "second": "28"
+  },
+  {
+    "id": 8949,
+    "heading": "Basterà un risarcimento di 300 milioni?",
+    "created": "2001-07-26 12:17:45",
+    "linked_file": null,
+    "hugo": "8949-bastera-un-risarcimento-di-300-milioni",
+    "date": "2001-07-26",
+    "time": "12:17:45",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "17",
+    "second": "45"
+  },
+  {
+    "id": 8951,
+    "heading": "Le poco sinuose curve di Laffer",
+    "created": "2001-07-26 12:17:46",
+    "linked_file": null,
+    "hugo": "8951-le-poco-sinuose-curve-di-laffer",
+    "date": "2001-07-26",
+    "time": "12:17:46",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "17",
+    "second": "46"
+  },
+  {
+    "id": 8883,
+    "heading": "MAINSTREAM MEDIA LIES",
+    "created": "2001-07-26 12:23:06",
+    "linked_file": "2001/07/cbs1.gif",
+    "hugo": "8883-mainstream-media-lies",
+    "date": "2001-07-26",
+    "time": "12:23:06",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "23",
+    "second": "06"
+  },
+  {
+    "id": 8851,
+    "heading": "CASTELLI: <<A BOLZANETO NON HO VISTO VIOLENZE>>",
+    "created": "2001-07-26 12:34:19",
+    "linked_file": null,
+    "hugo": "8851-castelli-a-bolzaneto-non-ho-visto-violenze",
+    "date": "2001-07-26",
+    "time": "12:34:19",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "34",
+    "second": "19"
+  },
+  {
+    "id": 8914,
+    "heading": "1000 Manifestants a Genève",
+    "created": "2001-07-26 12:38:55",
+    "linked_file": "2001/07/pic00057.jpg",
+    "hugo": "8914-1000-manifestants-a-geneve",
+    "date": "2001-07-26",
+    "time": "12:38:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "12",
+    "minute": "38",
+    "second": "55"
+  },
+  {
+    "id": 4288,
+    "heading": "Berkeley Protest In Solidarity With Activists in Genoa",
+    "created": "2001-07-26 13:03:37",
+    "linked_file": "2001/07/berkeley_solidarity.jpg",
+    "hugo": "4288-berkeley-protest-in-solidarity-with-activists-in-genoa",
+    "date": "2001-07-26",
+    "time": "13:03:37",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "13",
+    "minute": "03",
+    "second": "37"
+  },
+  {
+    "id": 8922,
+    "heading": "Sulla Violenza",
+    "created": "2001-07-26 13:05:54",
+    "linked_file": null,
+    "hugo": "8922-sulla-violenza",
+    "date": "2001-07-26",
+    "time": "13:05:54",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "13",
+    "minute": "05",
+    "second": "54"
+  },
+  {
+    "id": 8941,
+    "heading": "TESTIMONIANZA DELL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 13:07:47",
+    "linked_file": null,
+    "hugo": "8941-testimonianza-dellomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "13:07:47",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "13",
+    "minute": "07",
+    "second": "47"
+  },
+  {
+    "id": 8948,
+    "heading": "...IO AL POSTO LORO SCAPPEREI...",
+    "created": "2001-07-26 14:01:47",
+    "linked_file": null,
+    "hugo": "8948-io-al-posto-loro-scapperei",
+    "date": "2001-07-26",
+    "time": "14:01:47",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "01",
+    "second": "47"
+  },
+  {
+    "id": 8909,
+    "heading": "DOVE SONO?",
+    "created": "2001-07-26 14:11:27",
+    "linked_file": null,
+    "hugo": "8909-dove-sono",
+    "date": "2001-07-26",
+    "time": "14:11:27",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "11",
+    "second": "27"
+  },
+  {
+    "id": 8997,
+    "heading": "Enrico Ruggiero said",
+    "created": "2001-07-26 14:24:43",
+    "linked_file": null,
+    "hugo": "8997-enrico-ruggiero-said",
+    "date": "2001-07-26",
+    "time": "14:24:43",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "24",
+    "second": "43"
+  },
+  {
+    "id": 7946,
+    "heading": "cingolato con pestaggio 2",
+    "created": "2001-07-26 14:57:55",
+    "linked_file": "2001/07/6.jpg",
+    "hugo": "7946-cingolato-con-pestaggio-2",
+    "date": "2001-07-26",
+    "time": "14:57:55",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "14",
+    "minute": "57",
+    "second": "55"
+  },
+  {
+    "id": 8905,
+    "heading": "A TUTTI GLI ITALIANI",
+    "created": "2001-07-26 15:06:46",
+    "linked_file": null,
+    "hugo": "8905-a-tutti-gli-italiani",
+    "date": "2001-07-26",
+    "time": "15:06:46",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "06",
+    "second": "46"
+  },
+  {
+    "id": 9007,
+    "heading": "Memorial, Thunder Bay, Ontario, Canada",
+    "created": "2001-07-26 15:09:25",
+    "linked_file": "2001/07/memorial.jpg",
+    "hugo": "9007-memorial-thunder-bay-ontario-canada",
+    "date": "2001-07-26",
+    "time": "15:09:25",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "09",
+    "second": "25"
+  },
+  {
+    "id": 9008,
+    "heading": "bordercamp frankfurt",
+    "created": "2001-07-26 15:17:44",
+    "linked_file": null,
+    "hugo": "9008-bordercamp-frankfurt",
+    "date": "2001-07-26",
+    "time": "15:17:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "17",
+    "second": "44"
+  },
+  {
+    "id": 8967,
+    "heading": "SOSPESA TRASMISSIONE DI RAI 2 DI STASERA",
+    "created": "2001-07-26 15:28:54",
+    "linked_file": null,
+    "hugo": "8967-sospesa-trasmissione-di-rai-2-di-stasera",
+    "date": "2001-07-26",
+    "time": "15:28:54",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "28",
+    "second": "54"
+  },
+  {
+    "id": 9018,
+    "heading": "war in the backstage of television",
+    "created": "2001-07-26 15:46:15",
+    "linked_file": null,
+    "hugo": "9018-war-in-the-backstage-of-television",
+    "date": "2001-07-26",
+    "time": "15:46:15",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "46",
+    "second": "15"
+  },
+  {
+    "id": 8930,
+    "heading": "BLITZ DIAZ; COWELL, FINTO MORTO MA POI ANCORA BOTTE",
+    "created": "2001-07-26 15:48:08",
+    "linked_file": null,
+    "hugo": "8930-blitz-diaz-cowell-finto-morto-ma-poi-ancora-botte",
+    "date": "2001-07-26",
+    "time": "15:48:08",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "15",
+    "minute": "48",
+    "second": "08"
+  },
+  {
+    "id": 1872,
+    "heading": "vota CONTRO",
+    "created": "2001-07-26 16:09:34",
+    "linked_file": "2001/07/gruppo.jpg",
+    "hugo": "1872-vota-contro",
+    "date": "2001-07-26",
+    "time": "16:09:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "09",
+    "second": "34"
+  },
+  {
+    "id": 8929,
+    "heading": "BLITZ DIAZ; ANNA E JOSE',PICCHIATI CON MANGANELLI E SEDIE",
+    "created": "2001-07-26 16:21:34",
+    "linked_file": null,
+    "hugo": "8929-blitz-diaz-anna-e-josepicchiati-con-manganelli-e-sedie",
+    "date": "2001-07-26",
+    "time": "16:21:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "21",
+    "second": "34"
+  },
+  {
+    "id": 8916,
+    "heading": "Verbale di sequestro",
+    "created": "2001-07-26 16:33:11",
+    "linked_file": null,
+    "hugo": "8916-verbale-di-sequestro",
+    "date": "2001-07-26",
+    "time": "16:33:11",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "33",
+    "second": "11"
+  },
+  {
+    "id": 8926,
+    "heading": "PER SCAJOLA LA MATTANZA ERA UNA NORMALE OPERAZIONE DI ORDINE PUBBLICO",
+    "created": "2001-07-26 16:35:41",
+    "linked_file": null,
+    "hugo": "8926-per-scajola-la-mattanza-era-una-normale-operazione-di-ordine-pubblico",
+    "date": "2001-07-26",
+    "time": "16:35:41",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "16",
+    "minute": "35",
+    "second": "41"
+  },
+  {
+    "id": 8794,
+    "heading": "AUTOPSIA FASULLA? OMISSIONI D'ATTI DI UFFICIO PER PROCURA E  VERTICI DELL'ARMA?",
+    "created": "2001-07-26 17:19:20",
+    "linked_file": null,
+    "hugo": "8794-autopsia-fasulla-omissioni-datti-di-ufficio-per-procura-e-vertici-dellarma",
+    "date": "2001-07-26",
+    "time": "17:19:20",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "17",
+    "minute": "19",
+    "second": "20"
+  },
+  {
+    "id": 7913,
+    "heading": "presidio a verona",
+    "created": "2001-07-26 17:28:04",
+    "linked_file": "2001/07/dscf1215.jpg",
+    "hugo": "7913-presidio-a-verona",
+    "date": "2001-07-26",
+    "time": "17:28:04",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "17",
+    "minute": "28",
+    "second": "04"
+  },
+  {
+    "id": 9019,
+    "heading": "war in the backstage of television",
+    "created": "2001-07-26 17:43:40",
+    "linked_file": null,
+    "hugo": "9019-war-in-the-backstage-of-television",
+    "date": "2001-07-26",
+    "time": "17:43:40",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "17",
+    "minute": "43",
+    "second": "40"
+  },
+  {
+    "id": 7903,
+    "heading": "Scajola black bloc",
+    "created": "2001-07-26 18:16:05",
+    "linked_file": "2001/07/berlusca_bloc.jpg",
+    "hugo": "7903-scajola-black-bloc",
+    "date": "2001-07-26",
+    "time": "18:16:05",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "16",
+    "second": "05"
+  },
+  {
+    "id": 8944,
+    "heading": "Arriba el Diablo: F.M.I.",
+    "created": "2001-07-26 18:28:03",
+    "linked_file": null,
+    "hugo": "8944-arriba-el-diablo-fmi",
+    "date": "2001-07-26",
+    "time": "18:28:03",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "28",
+    "second": "03"
+  },
+  {
+    "id": 8982,
+    "heading": "Il famoso estintore.. fu lanciato dalla camionetta (altra prova)",
+    "created": "2001-07-26 18:30:44",
+    "linked_file": null,
+    "hugo": "8982-il-famoso-estintore-fu-lanciato-dalla-camionetta-altra-prova",
+    "date": "2001-07-26",
+    "time": "18:30:44",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "30",
+    "second": "44"
+  },
+  {
+    "id": 8938,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-26 18:48:17",
+    "linked_file": null,
+    "hugo": "8938-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-26",
+    "time": "18:48:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "48",
+    "second": "17"
+  },
+  {
+    "id": 8952,
+    "heading": "Le poco sinuose curve di Laffer",
+    "created": "2001-07-26 18:51:17",
+    "linked_file": null,
+    "hugo": "8952-le-poco-sinuose-curve-di-laffer",
+    "date": "2001-07-26",
+    "time": "18:51:17",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "18",
+    "minute": "51",
+    "second": "17"
+  },
+  {
+    "id": 8924,
+    "heading": "STANNO GIA' RITRATTANDO",
+    "created": "2001-07-26 19:08:50",
+    "linked_file": null,
+    "hugo": "8924-stanno-gia-ritrattando",
+    "date": "2001-07-26",
+    "time": "19:08:50",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "08",
+    "second": "50"
+  },
+  {
+    "id": 9058,
+    "heading": "\"Bush Daddy Delusions\"",
+    "created": "2001-07-26 19:13:51",
+    "linked_file": null,
+    "hugo": "9058-bush-daddy-delusions",
+    "date": "2001-07-26",
+    "time": "19:13:51",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "13",
+    "second": "51"
+  },
+  {
+    "id": 9089,
+    "heading": "Belfast with Sunshine- the Battle of Genoa through Irish eyes (Part One)",
+    "created": "2001-07-26 19:29:59",
+    "linked_file": null,
+    "hugo": "9089-belfast-with-sunshine-the-battle-of-genoa-through-irish-eyes-part-one",
+    "date": "2001-07-26",
+    "time": "19:29:59",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "29",
+    "second": "59"
+  },
+  {
+    "id": 9090,
+    "heading": "Belfast with Sunshine (Part Two)- the Battle of Genoa through Irish eyes",
+    "created": "2001-07-26 19:32:22",
+    "linked_file": null,
+    "hugo": "9090-belfast-with-sunshine-part-two-the-battle-of-genoa-through-irish-eyes",
+    "date": "2001-07-26",
+    "time": "19:32:22",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "32",
+    "second": "22"
+  },
+  {
+    "id": 9051,
+    "heading": "non ci sono scorciatoie",
+    "created": "2001-07-26 19:36:38",
+    "linked_file": null,
+    "hugo": "9051-non-ci-sono-scorciatoie",
+    "date": "2001-07-26",
+    "time": "19:36:38",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "36",
+    "second": "38"
+  },
+  {
+    "id": 9092,
+    "heading": "Belfast with Sunshine (Part Two)- the Battle of Genoa through Irish eyes",
+    "created": "2001-07-26 19:37:34",
+    "linked_file": null,
+    "hugo": "9092-belfast-with-sunshine-part-two-the-battle-of-genoa-through-irish-eyes",
+    "date": "2001-07-26",
+    "time": "19:37:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "19",
+    "minute": "37",
+    "second": "34"
+  },
+  {
+    "id": 9072,
+    "heading": "Genoa, a policeofficer tells what happened",
+    "created": "2001-07-26 20:02:02",
+    "linked_file": null,
+    "hugo": "9072-genoa-a-policeofficer-tells-what-happened",
+    "date": "2001-07-26",
+    "time": "20:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "20",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 9010,
+    "heading": "sorpresa",
+    "created": "2001-07-26 20:05:34",
+    "linked_file": null,
+    "hugo": "9010-sorpresa",
+    "date": "2001-07-26",
+    "time": "20:05:34",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "20",
+    "minute": "05",
+    "second": "34"
+  },
+  {
+    "id": 8946,
+    "heading": "D'ALEMA S'E' BEVUTO IL CERVELLO",
+    "created": "2001-07-26 20:42:27",
+    "linked_file": null,
+    "hugo": "8946-dalema-se-bevuto-il-cervello",
+    "date": "2001-07-26",
+    "time": "20:42:27",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "20",
+    "minute": "42",
+    "second": "27"
+  },
+  {
+    "id": 9093,
+    "heading": "NORTH AMERICAN MEDIA SILENT ON MASSIVE POST-G8 ITALIAN PROTESTS",
+    "created": "2001-07-26 21:08:56",
+    "linked_file": null,
+    "hugo": "9093-north-american-media-silent-on-massive-postg8-italian-protests",
+    "date": "2001-07-26",
+    "time": "21:08:56",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "08",
+    "second": "56"
+  },
+  {
+    "id": 9108,
+    "heading": "time to pressure genoese authorities for numbers of dead!",
+    "created": "2001-07-26 21:19:12",
+    "linked_file": null,
+    "hugo": "9108-time-to-pressure-genoese-authorities-for-numbers-of-dead",
+    "date": "2001-07-26",
+    "time": "21:19:12",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "19",
+    "second": "12"
+  },
+  {
+    "id": 9109,
+    "heading": "recovering from trauma",
+    "created": "2001-07-26 21:26:15",
+    "linked_file": null,
+    "hugo": "9109-recovering-from-trauma",
+    "date": "2001-07-26",
+    "time": "21:26:15",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "26",
+    "second": "15"
+  },
+  {
+    "id": 9110,
+    "heading": "en, it, ca, fr, de) more genoa info & solidarity on anarchist list",
+    "created": "2001-07-26 21:31:23",
+    "linked_file": null,
+    "hugo": "9110-en-it-ca-fr-de-more-genoa-info-solidarity-on-anarchist-list",
+    "date": "2001-07-26",
+    "time": "21:31:23",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "31",
+    "second": "23"
+  },
+  {
+    "id": 9112,
+    "heading": "en) anarchist and corporate reports, photos on infoshop.org",
+    "created": "2001-07-26 21:34:45",
+    "linked_file": null,
+    "hugo": "9112-en-anarchist-and-corporate-reports-photos-on-infoshoporg",
+    "date": "2001-07-26",
+    "time": "21:34:45",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "21",
+    "minute": "34",
+    "second": "45"
+  },
+  {
+    "id": 9087,
+    "heading": "CITIES IN PROTEST (new)",
+    "created": "2001-07-26 23:05:37",
+    "linked_file": null,
+    "hugo": "9087-cities-in-protest-new",
+    "date": "2001-07-26",
+    "time": "23:05:37",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "23",
+    "minute": "05",
+    "second": "37"
+  },
+  {
+    "id": 9119,
+    "heading": "World Leaders Creating Another Crisis",
+    "created": "2001-07-26 23:10:24",
+    "linked_file": "2001/07/israel8srh2ql.jpg",
+    "hugo": "9119-world-leaders-creating-another-crisis",
+    "date": "2001-07-26",
+    "time": "23:10:24",
+    "year": "2001",
+    "month": "07",
+    "day": "26",
+    "hour": "23",
+    "minute": "10",
+    "second": "24"
+  },
+  {
+    "id": 9121,
+    "heading": "\"Genoa\" - a protest song",
+    "created": "2001-07-27 00:14:24",
+    "linked_file": null,
+    "hugo": "9121-genoa-a-protest-song",
+    "date": "2001-07-27",
+    "time": "00:14:24",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "00",
+    "minute": "14",
+    "second": "24"
+  },
+  {
+    "id": 9077,
+    "heading": "FREE Marcus Covell",
+    "created": "2001-07-27 00:56:13",
+    "linked_file": null,
+    "hugo": "9077-free-marcus-covell",
+    "date": "2001-07-27",
+    "time": "00:56:13",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "00",
+    "minute": "56",
+    "second": "13"
+  },
+  {
+    "id": 9128,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 1",
+    "created": "2001-07-27 01:29:34",
+    "linked_file": null,
+    "hugo": "9128-a-womble-in-genoa-part-1",
+    "date": "2001-07-27",
+    "time": "01:29:34",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "01",
+    "minute": "29",
+    "second": "34"
+  },
+  {
+    "id": 9129,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 3",
+    "created": "2001-07-27 01:35:41",
+    "linked_file": null,
+    "hugo": "9129-a-womble-in-genoa-part-3",
+    "date": "2001-07-27",
+    "time": "01:35:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "01",
+    "minute": "35",
+    "second": "41"
+  },
+  {
+    "id": 9130,
+    "heading": "A W.O.M.B.L.E. in Genoa: Part 2",
+    "created": "2001-07-27 01:38:24",
+    "linked_file": null,
+    "hugo": "9130-a-womble-in-genoa-part-2",
+    "date": "2001-07-27",
+    "time": "01:38:24",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "01",
+    "minute": "38",
+    "second": "24"
+  },
+  {
+    "id": 9134,
+    "heading": "Anche a Bergamo",
+    "created": "2001-07-27 02:00:39",
+    "linked_file": "2001/07/08.jpg",
+    "hugo": "9134-anche-a-bergamo",
+    "date": "2001-07-27",
+    "time": "02:00:39",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "00",
+    "second": "39"
+  },
+  {
+    "id": 1367,
+    "heading": "ancora il noglobal",
+    "created": "2001-07-27 02:24:06",
+    "linked_file": "2001/07/carica_piazza_borsa02.jpg",
+    "hugo": "1367-ancora-il-noglobal",
+    "date": "2001-07-27",
+    "time": "02:24:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "24",
+    "second": "06"
+  },
+  {
+    "id": 9116,
+    "heading": "G-8: ----> BUSH IS PLANNING A MILITARY ATTACK AGAINST IRAQ",
+    "created": "2001-07-27 02:41:40",
+    "linked_file": null,
+    "hugo": "9116-g8-bush-is-planning-a-military-attack-against-iraq",
+    "date": "2001-07-27",
+    "time": "02:41:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "41",
+    "second": "40"
+  },
+  {
+    "id": 9062,
+    "heading": "cose strane a canale 5",
+    "created": "2001-07-27 02:48:36",
+    "linked_file": null,
+    "hugo": "9062-cose-strane-a-canale-5",
+    "date": "2001-07-27",
+    "time": "02:48:36",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "02",
+    "minute": "48",
+    "second": "36"
+  },
+  {
+    "id": 8541,
+    "heading": "International Progressive Librarians' Open Letter on Genoa",
+    "created": "2001-07-27 03:05:21",
+    "linked_file": null,
+    "hugo": "8541-international-progressive-librarians-open-letter-on-genoa",
+    "date": "2001-07-27",
+    "time": "03:05:21",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "03",
+    "minute": "05",
+    "second": "21"
+  },
+  {
+    "id": 9114,
+    "heading": "U.S. Super Volcano-Yellowstone Park",
+    "created": "2001-07-27 03:37:32",
+    "linked_file": null,
+    "hugo": "9114-us-super-volcanoyellowstone-park",
+    "date": "2001-07-27",
+    "time": "03:37:32",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "03",
+    "minute": "37",
+    "second": "32"
+  },
+  {
+    "id": 7970,
+    "heading": "a terra",
+    "created": "2001-07-27 03:41:52",
+    "linked_file": "2001/07/pestaggi-208qs939.jpg",
+    "hugo": "7970-a-terra",
+    "date": "2001-07-27",
+    "time": "03:41:52",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "03",
+    "minute": "41",
+    "second": "52"
+  },
+  {
+    "id": 9068,
+    "heading": "Tracce di sangue sui muri e sui termosifoni (tedesco, prego tradurre)",
+    "created": "2001-07-27 04:05:50",
+    "linked_file": null,
+    "hugo": "9068-tracce-di-sangue-sui-muri-e-sui-termosifoni-tedesco-prego-tradurre",
+    "date": "2001-07-27",
+    "time": "04:05:50",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "05",
+    "second": "50"
+  },
+  {
+    "id": 9184,
+    "heading": "Parlamentari tedeschi vogliono una Commissione d'inchiesta internazionale",
+    "created": "2001-07-27 04:09:06",
+    "linked_file": null,
+    "hugo": "9184-parlamentari-tedeschi-vogliono-una-commissione-dinchiesta-internazionale",
+    "date": "2001-07-27",
+    "time": "04:09:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "09",
+    "second": "06"
+  },
+  {
+    "id": 9195,
+    "heading": "Foto Genova",
+    "created": "2001-07-27 04:34:50",
+    "linked_file": "2001/07/jul22_25.jpg",
+    "hugo": "9195-foto-genova",
+    "date": "2001-07-27",
+    "time": "04:34:50",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "34",
+    "second": "50"
+  },
+  {
+    "id": 8235,
+    "heading": "funerali carlo",
+    "created": "2001-07-27 04:42:54",
+    "linked_file": null,
+    "hugo": "8235-funerali-carlo",
+    "date": "2001-07-27",
+    "time": "04:42:54",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "42",
+    "second": "54"
+  },
+  {
+    "id": 9162,
+    "heading": "HO FINTO DI ESSERE MORTO, CONTINUAVANO A PICCHIARMI",
+    "created": "2001-07-27 04:51:51",
+    "linked_file": null,
+    "hugo": "9162-ho-finto-di-essere-morto-continuavano-a-picchiarmi",
+    "date": "2001-07-27",
+    "time": "04:51:51",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "51",
+    "second": "51"
+  },
+  {
+    "id": 9160,
+    "heading": "PAGHERETE TUTTO",
+    "created": "2001-07-27 04:52:07",
+    "linked_file": null,
+    "hugo": "9160-pagherete-tutto",
+    "date": "2001-07-27",
+    "time": "04:52:07",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "04",
+    "minute": "52",
+    "second": "07"
+  },
+  {
+    "id": 9206,
+    "heading": "scajola//mussolini",
+    "created": "2001-07-27 05:15:03",
+    "linked_file": null,
+    "hugo": "9206-scajolamussolini",
+    "date": "2001-07-27",
+    "time": "05:15:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "15",
+    "second": "03"
+  },
+  {
+    "id": 9111,
+    "heading": "SBAGLIO ?",
+    "created": "2001-07-27 05:21:22",
+    "linked_file": null,
+    "hugo": "9111-sbaglio-",
+    "date": "2001-07-27",
+    "time": "05:21:22",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "21",
+    "second": "22"
+  },
+  {
+    "id": 9219,
+    "heading": "Mussolini 2 su Rai3",
+    "created": "2001-07-27 05:21:23",
+    "linked_file": null,
+    "hugo": "9219-mussolini-2-su-rai3",
+    "date": "2001-07-27",
+    "time": "05:21:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "21",
+    "second": "23"
+  },
+  {
+    "id": 9210,
+    "heading": "Cose strane...",
+    "created": "2001-07-27 05:24:40",
+    "linked_file": null,
+    "hugo": "9210-cose-strane",
+    "date": "2001-07-27",
+    "time": "05:24:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "24",
+    "second": "40"
+  },
+  {
+    "id": 9223,
+    "heading": "Democrats from all around the world HELP ITALY",
+    "created": "2001-07-27 05:26:04",
+    "linked_file": null,
+    "hugo": "9223-democrats-from-all-around-the-world-help-italy",
+    "date": "2001-07-27",
+    "time": "05:26:04",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "26",
+    "second": "04"
+  },
+  {
+    "id": 9224,
+    "heading": "Mussolini 2 su Rai3",
+    "created": "2001-07-27 05:26:05",
+    "linked_file": null,
+    "hugo": "9224-mussolini-2-su-rai3",
+    "date": "2001-07-27",
+    "time": "05:26:05",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "26",
+    "second": "05"
+  },
+  {
+    "id": 9218,
+    "heading": "Mussolini 2 su Rai3",
+    "created": "2001-07-27 05:34:11",
+    "linked_file": null,
+    "hugo": "9218-mussolini-2-su-rai3",
+    "date": "2001-07-27",
+    "time": "05:34:11",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "34",
+    "second": "11"
+  },
+  {
+    "id": 8920,
+    "heading": "Osservate",
+    "created": "2001-07-27 05:46:23",
+    "linked_file": null,
+    "hugo": "8920-osservate",
+    "date": "2001-07-27",
+    "time": "05:46:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "46",
+    "second": "23"
+  },
+  {
+    "id": 9167,
+    "heading": "I CASSONETTI DI GENOVA",
+    "created": "2001-07-27 05:51:37",
+    "linked_file": null,
+    "hugo": "9167-i-cassonetti-di-genova",
+    "date": "2001-07-27",
+    "time": "05:51:37",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "51",
+    "second": "37"
+  },
+  {
+    "id": 8495,
+    "heading": "L'estintore è stato lanciato dalla jeep conto i manifestanti?",
+    "created": "2001-07-27 05:53:40",
+    "linked_file": "2001/07/diapositiva4.jpg",
+    "hugo": "8495-lestintore-e-stato-lanciato-dalla-jeep-conto-i-manifestanti",
+    "date": "2001-07-27",
+    "time": "05:53:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "53",
+    "second": "40"
+  },
+  {
+    "id": 9233,
+    "heading": "COMPLIMENTI, SIG. MINISTRO",
+    "created": "2001-07-27 05:57:39",
+    "linked_file": null,
+    "hugo": "9233-complimenti-sig-ministro",
+    "date": "2001-07-27",
+    "time": "05:57:39",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "57",
+    "second": "39"
+  },
+  {
+    "id": 9234,
+    "heading": "la conta dei violenti...",
+    "created": "2001-07-27 05:59:16",
+    "linked_file": null,
+    "hugo": "9234-la-conta-dei-violenti",
+    "date": "2001-07-27",
+    "time": "05:59:16",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "05",
+    "minute": "59",
+    "second": "16"
+  },
+  {
+    "id": 9235,
+    "heading": "Guiltiness",
+    "created": "2001-07-27 06:02:03",
+    "linked_file": null,
+    "hugo": "9235-guiltiness",
+    "date": "2001-07-27",
+    "time": "06:02:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "02",
+    "second": "03"
+  },
+  {
+    "id": 9225,
+    "heading": "in Rai hanno avuto paura",
+    "created": "2001-07-27 06:13:10",
+    "linked_file": null,
+    "hugo": "9225-in-rai-hanno-avuto-paura",
+    "date": "2001-07-27",
+    "time": "06:13:10",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "13",
+    "second": "10"
+  },
+  {
+    "id": 9136,
+    "heading": "Another testimony of a policemen",
+    "created": "2001-07-27 06:17:34",
+    "linked_file": null,
+    "hugo": "9136-another-testimony-of-a-policemen",
+    "date": "2001-07-27",
+    "time": "06:17:34",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "17",
+    "second": "34"
+  },
+  {
+    "id": 9132,
+    "heading": "Come arrestare sto vespaio.......",
+    "created": "2001-07-27 06:54:44",
+    "linked_file": null,
+    "hugo": "9132-come-arrestare-sto-vespaio",
+    "date": "2001-07-27",
+    "time": "06:54:44",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "54",
+    "second": "44"
+  },
+  {
+    "id": 9257,
+    "heading": "genova venerdì 20 - un po'di foto",
+    "created": "2001-07-27 06:58:08",
+    "linked_file": "2001/07/poli1.jpg",
+    "hugo": "9257-genova-venerdi-20-un-podi-foto",
+    "date": "2001-07-27",
+    "time": "06:58:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "06",
+    "minute": "58",
+    "second": "08"
+  },
+  {
+    "id": 9261,
+    "heading": "Reporters Sans Frontieres",
+    "created": "2001-07-27 07:07:23",
+    "linked_file": null,
+    "hugo": "9261-reporters-sans-frontieres",
+    "date": "2001-07-27",
+    "time": "07:07:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "07",
+    "minute": "07",
+    "second": "23"
+  },
+  {
+    "id": 9264,
+    "heading": "PLEASE, SPREAD THIS MESSAGE - PER FAVORE, DIFFONDI QUESTO MESSAGGIO",
+    "created": "2001-07-27 07:09:25",
+    "linked_file": null,
+    "hugo": "9264-please-spread-this-message-per-favore-diffondi-questo-messaggio",
+    "date": "2001-07-27",
+    "time": "07:09:25",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "07",
+    "minute": "09",
+    "second": "25"
+  },
+  {
+    "id": 9205,
+    "heading": "Chi manca all'appello?",
+    "created": "2001-07-27 07:46:59",
+    "linked_file": null,
+    "hugo": "9205-chi-manca-allappello",
+    "date": "2001-07-27",
+    "time": "07:46:59",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "07",
+    "minute": "46",
+    "second": "59"
+  },
+  {
+    "id": 9286,
+    "heading": "Es hora de cambiar las formas de lucha?",
+    "created": "2001-07-27 08:10:36",
+    "linked_file": null,
+    "hugo": "9286-es-hora-de-cambiar-las-formas-de-lucha",
+    "date": "2001-07-27",
+    "time": "08:10:36",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "10",
+    "second": "36"
+  },
+  {
+    "id": 9248,
+    "heading": "Cassonetti, una conferma",
+    "created": "2001-07-27 08:22:06",
+    "linked_file": null,
+    "hugo": "9248-cassonetti-una-conferma",
+    "date": "2001-07-27",
+    "time": "08:22:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "22",
+    "second": "06"
+  },
+  {
+    "id": 9280,
+    "heading": "Images from Genoa",
+    "created": "2001-07-27 08:22:06",
+    "linked_file": "2001/07/zaun.jpg",
+    "hugo": "9280-images-from-genoa",
+    "date": "2001-07-27",
+    "time": "08:22:06",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "22",
+    "second": "06"
+  },
+  {
+    "id": 9272,
+    "heading": "UK coverage",
+    "created": "2001-07-27 08:26:54",
+    "linked_file": null,
+    "hugo": "9272-uk-coverage",
+    "date": "2001-07-27",
+    "time": "08:26:54",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "26",
+    "second": "54"
+  },
+  {
+    "id": 9249,
+    "heading": "ALLARME!!TG2 ore 13:00 : La procura di Genova orientata per la leggittima difesa",
+    "created": "2001-07-27 08:27:35",
+    "linked_file": null,
+    "hugo": "9249-allarmetg2-ore-1300-la-procura-di-genova-orientata-per-la-leggittima-difesa",
+    "date": "2001-07-27",
+    "time": "08:27:35",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "08",
+    "minute": "27",
+    "second": "35"
+  },
+  {
+    "id": 9302,
+    "heading": "IMMAGINI DI UN FERITO - GENOVA 21/7",
+    "created": "2001-07-27 09:19:00",
+    "linked_file": "2001/07/ferito2.jpg",
+    "hugo": "9302-immagini-di-un-ferito-genova-217",
+    "date": "2001-07-27",
+    "time": "09:19:00",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "19",
+    "second": "00"
+  },
+  {
+    "id": 9250,
+    "heading": "detriti ?",
+    "created": "2001-07-27 09:19:03",
+    "linked_file": null,
+    "hugo": "9250-detriti-",
+    "date": "2001-07-27",
+    "time": "09:19:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "19",
+    "second": "03"
+  },
+  {
+    "id": 9105,
+    "heading": "6000 turisti tedeschi cancellano viaggio a Genova",
+    "created": "2001-07-27 09:21:03",
+    "linked_file": null,
+    "hugo": "9105-6000-turisti-tedeschi-cancellano-viaggio-a-genova",
+    "date": "2001-07-27",
+    "time": "09:21:03",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "21",
+    "second": "03"
+  },
+  {
+    "id": 9306,
+    "heading": "A Carlo (per sempre)",
+    "created": "2001-07-27 09:30:47",
+    "linked_file": null,
+    "hugo": "9306-a-carlo-per-sempre",
+    "date": "2001-07-27",
+    "time": "09:30:47",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "30",
+    "second": "47"
+  },
+  {
+    "id": 9244,
+    "heading": "Intervista Black Bloc",
+    "created": "2001-07-27 09:30:48",
+    "linked_file": null,
+    "hugo": "9244-intervista-black-bloc",
+    "date": "2001-07-27",
+    "time": "09:30:48",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "30",
+    "second": "48"
+  },
+  {
+    "id": 9309,
+    "heading": "prova",
+    "created": "2001-07-27 09:39:40",
+    "linked_file": null,
+    "hugo": "9309-prova",
+    "date": "2001-07-27",
+    "time": "09:39:40",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "09",
+    "minute": "39",
+    "second": "40"
+  },
+  {
+    "id": 9315,
+    "heading": "GENOVA NELL'ANALISI DI S. PALIDDA  (lungo)",
+    "created": "2001-07-27 10:06:28",
+    "linked_file": null,
+    "hugo": "9315-genova-nellanalisi-di-s-palidda-lungo",
+    "date": "2001-07-27",
+    "time": "10:06:28",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "06",
+    "second": "28"
+  },
+  {
+    "id": 9318,
+    "heading": "indirizzi email",
+    "created": "2001-07-27 10:15:30",
+    "linked_file": null,
+    "hugo": "9318-indirizzi-email",
+    "date": "2001-07-27",
+    "time": "10:15:30",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "15",
+    "second": "30"
+  },
+  {
+    "id": 9273,
+    "heading": "translation: another testimony of a policeman",
+    "created": "2001-07-27 10:18:41",
+    "linked_file": null,
+    "hugo": "9273-translation-another-testimony-of-a-policeman",
+    "date": "2001-07-27",
+    "time": "10:18:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "18",
+    "second": "41"
+  },
+  {
+    "id": 9238,
+    "heading": "GENOVA E L'ESTREMA DESRA",
+    "created": "2001-07-27 10:19:08",
+    "linked_file": null,
+    "hugo": "9238-genova-e-lestrema-desra",
+    "date": "2001-07-27",
+    "time": "10:19:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "19",
+    "second": "08"
+  },
+  {
+    "id": 9190,
+    "heading": "che fare del servizio militare volontario?",
+    "created": "2001-07-27 10:36:10",
+    "linked_file": null,
+    "hugo": "9190-che-fare-del-servizio-militare-volontario",
+    "date": "2001-07-27",
+    "time": "10:36:10",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "36",
+    "second": "10"
+  },
+  {
+    "id": 9324,
+    "heading": "G8: The Empire Strikes Back",
+    "created": "2001-07-27 10:38:51",
+    "linked_file": null,
+    "hugo": "9324-g8-the-empire-strikes-back",
+    "date": "2001-07-27",
+    "time": "10:38:51",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "10",
+    "minute": "38",
+    "second": "51"
+  },
+  {
+    "id": 9145,
+    "heading": "ancora foto da Bg",
+    "created": "2001-07-27 11:16:44",
+    "linked_file": "2001/07/07.jpg",
+    "hugo": "9145-ancora-foto-da-bg",
+    "date": "2001-07-27",
+    "time": "11:16:44",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "16",
+    "second": "44"
+  },
+  {
+    "id": 9294,
+    "heading": "intervista a Kirsten Wagenschein jornalista tedesca rilasciata ieri (tedesco)",
+    "created": "2001-07-27 11:39:15",
+    "linked_file": null,
+    "hugo": "9294-intervista-a-kirsten-wagenschein-jornalista-tedesca-rilasciata-ieri-tedesco",
+    "date": "2001-07-27",
+    "time": "11:39:15",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "39",
+    "second": "15"
+  },
+  {
+    "id": 9326,
+    "heading": "Blows agsinst the Empire",
+    "created": "2001-07-27 11:48:28",
+    "linked_file": null,
+    "hugo": "9326-blows-agsinst-the-empire",
+    "date": "2001-07-27",
+    "time": "11:48:28",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "48",
+    "second": "28"
+  },
+  {
+    "id": 9316,
+    "heading": "GENOVA NELL'ANALISI DI S. PALIDDA  (lungo)",
+    "created": "2001-07-27 11:56:24",
+    "linked_file": null,
+    "hugo": "9316-genova-nellanalisi-di-s-palidda-lungo",
+    "date": "2001-07-27",
+    "time": "11:56:24",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "11",
+    "minute": "56",
+    "second": "24"
+  },
+  {
+    "id": 9300,
+    "heading": "discrepanza di orari",
+    "created": "2001-07-27 12:21:43",
+    "linked_file": "2001/07/image04-59.jpg",
+    "hugo": "9300-discrepanza-di-orari",
+    "date": "2001-07-27",
+    "time": "12:21:43",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "21",
+    "second": "43"
+  },
+  {
+    "id": 9311,
+    "heading": "26/7: mille persone in assemblea a Roma",
+    "created": "2001-07-27 12:21:43",
+    "linked_file": null,
+    "hugo": "9311-267-mille-persone-in-assemblea-a-roma",
+    "date": "2001-07-27",
+    "time": "12:21:43",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "21",
+    "second": "43"
+  },
+  {
+    "id": 8461,
+    "heading": "L'estintore era stato lanciato dai carabinieri verso i manifestanti?",
+    "created": "2001-07-27 12:45:33",
+    "linked_file": "2001/07/i1l3107k.jpg",
+    "hugo": "8461-lestintore-era-stato-lanciato-dai-carabinieri-verso-i-manifestanti",
+    "date": "2001-07-27",
+    "time": "12:45:33",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "45",
+    "second": "33"
+  },
+  {
+    "id": 9353,
+    "heading": "Kirsten Wagenschein interview - english translation",
+    "created": "2001-07-27 12:46:11",
+    "linked_file": null,
+    "hugo": "9353-kirsten-wagenschein-interview-english-translation",
+    "date": "2001-07-27",
+    "time": "12:46:11",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "12",
+    "minute": "46",
+    "second": "11"
+  },
+  {
+    "id": 9328,
+    "heading": "Blows agsinst the Empire",
+    "created": "2001-07-27 13:05:20",
+    "linked_file": null,
+    "hugo": "9328-blows-agsinst-the-empire",
+    "date": "2001-07-27",
+    "time": "13:05:20",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "13",
+    "minute": "05",
+    "second": "20"
+  },
+  {
+    "id": 6967,
+    "heading": "Don't Let Them Reverse Our Momentum",
+    "created": "2001-07-27 13:42:58",
+    "linked_file": null,
+    "hugo": "6967-dont-let-them-reverse-our-momentum",
+    "date": "2001-07-27",
+    "time": "13:42:58",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "13",
+    "minute": "42",
+    "second": "58"
+  },
+  {
+    "id": 9329,
+    "heading": "FOTO SHOC FERITO (anche sotto)",
+    "created": "2001-07-27 14:12:33",
+    "linked_file": "2001/07/ferito9s22ll.jpg",
+    "hugo": "9329-foto-shoc-ferito-anche-sotto",
+    "date": "2001-07-27",
+    "time": "14:12:33",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "12",
+    "second": "33"
+  },
+  {
+    "id": 9374,
+    "heading": "Detroit marches for Genoa",
+    "created": "2001-07-27 14:16:21",
+    "linked_file": null,
+    "hugo": "9374-detroit-marches-for-genoa",
+    "date": "2001-07-27",
+    "time": "14:16:21",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "16",
+    "second": "21"
+  },
+  {
+    "id": 8827,
+    "heading": "Una trappola per Carlo Giuliani?",
+    "created": "2001-07-27 14:32:46",
+    "linked_file": null,
+    "hugo": "8827-una-trappola-per-carlo-giuliani",
+    "date": "2001-07-27",
+    "time": "14:32:46",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "32",
+    "second": "46"
+  },
+  {
+    "id": 9337,
+    "heading": "No border Theater",
+    "created": "2001-07-27 14:50:20",
+    "linked_file": null,
+    "hugo": "9337-no-border-theater",
+    "date": "2001-07-27",
+    "time": "14:50:20",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "50",
+    "second": "20"
+  },
+  {
+    "id": 9287,
+    "heading": "Mussolini-Berlusconi",
+    "created": "2001-07-27 14:55:08",
+    "linked_file": "2001/07/mussolini-berlusconi.html",
+    "hugo": "9287-mussoliniberlusconi",
+    "date": "2001-07-27",
+    "time": "14:55:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "14",
+    "minute": "55",
+    "second": "08"
+  },
+  {
+    "id": 9138,
+    "heading": "Sequenza fotografica sull'assassinio di Carlo",
+    "created": "2001-07-27 15:31:01",
+    "linked_file": null,
+    "hugo": "9138-sequenza-fotografica-sullassassinio-di-carlo",
+    "date": "2001-07-27",
+    "time": "15:31:01",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "15",
+    "minute": "31",
+    "second": "01"
+  },
+  {
+    "id": 9339,
+    "heading": "Testimonianze dei carabinieri va bene,ma....",
+    "created": "2001-07-27 16:29:00",
+    "linked_file": null,
+    "hugo": "9339-testimonianze-dei-carabinieri-va-benema",
+    "date": "2001-07-27",
+    "time": "16:29:00",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "29",
+    "second": "00"
+  },
+  {
+    "id": 9124,
+    "heading": "Desaparecidos = Turisti",
+    "created": "2001-07-27 16:33:47",
+    "linked_file": null,
+    "hugo": "9124-desaparecidos-turisti",
+    "date": "2001-07-27",
+    "time": "16:33:47",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "33",
+    "second": "47"
+  },
+  {
+    "id": 9314,
+    "heading": "ferite",
+    "created": "2001-07-27 16:34:04",
+    "linked_file": "2001/07/bastonato2707.jpg",
+    "hugo": "9314-ferite",
+    "date": "2001-07-27",
+    "time": "16:34:04",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "34",
+    "second": "04"
+  },
+  {
+    "id": 9323,
+    "heading": "Pestaggio di stato premeditato? Prime conferme",
+    "created": "2001-07-27 16:48:41",
+    "linked_file": null,
+    "hugo": "9323-pestaggio-di-stato-premeditato-prime-conferme",
+    "date": "2001-07-27",
+    "time": "16:48:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "48",
+    "second": "41"
+  },
+  {
+    "id": 9123,
+    "heading": "IL 68 CON L'EROINA..IL 2001...??????",
+    "created": "2001-07-27 16:53:58",
+    "linked_file": null,
+    "hugo": "9123-il-68-con-leroinail-2001",
+    "date": "2001-07-27",
+    "time": "16:53:58",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "16",
+    "minute": "53",
+    "second": "58"
+  },
+  {
+    "id": 9317,
+    "heading": "le giornate di genova. impressioni e pensieri",
+    "created": "2001-07-27 17:04:00",
+    "linked_file": null,
+    "hugo": "9317-le-giornate-di-genova-impressioni-e-pensieri",
+    "date": "2001-07-27",
+    "time": "17:04:00",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "04",
+    "second": "00"
+  },
+  {
+    "id": 9435,
+    "heading": "Si squarcia",
+    "created": "2001-07-27 17:18:43",
+    "linked_file": null,
+    "hugo": "9435-si-squarcia",
+    "date": "2001-07-27",
+    "time": "17:18:43",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "18",
+    "second": "43"
+  },
+  {
+    "id": 9049,
+    "heading": "polizia al potere(?)",
+    "created": "2001-07-27 17:21:19",
+    "linked_file": null,
+    "hugo": "9049-polizia-al-potere",
+    "date": "2001-07-27",
+    "time": "17:21:19",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "21",
+    "second": "19"
+  },
+  {
+    "id": 9439,
+    "heading": "Limiti di questo forum e proposta",
+    "created": "2001-07-27 17:37:02",
+    "linked_file": null,
+    "hugo": "9439-limiti-di-questo-forum-e-proposta",
+    "date": "2001-07-27",
+    "time": "17:37:02",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "37",
+    "second": "02"
+  },
+  {
+    "id": 9440,
+    "heading": "Chi sono sti gom?",
+    "created": "2001-07-27 17:42:52",
+    "linked_file": null,
+    "hugo": "9440-chi-sono-sti-gom",
+    "date": "2001-07-27",
+    "time": "17:42:52",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "42",
+    "second": "52"
+  },
+  {
+    "id": 9029,
+    "heading": "Attacchi a computer che si collegano a mir.it?",
+    "created": "2001-07-27 17:47:34",
+    "linked_file": null,
+    "hugo": "9029-attacchi-a-computer-che-si-collegano-a-mirit",
+    "date": "2001-07-27",
+    "time": "17:47:34",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "17",
+    "minute": "47",
+    "second": "34"
+  },
+  {
+    "id": 9383,
+    "heading": "Isoliamo la violenza - Keep us off the violence",
+    "created": "2001-07-27 18:51:23",
+    "linked_file": null,
+    "hugo": "9383-isoliamo-la-violenza-keep-us-off-the-violence",
+    "date": "2001-07-27",
+    "time": "18:51:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "18",
+    "minute": "51",
+    "second": "23"
+  },
+  {
+    "id": 9385,
+    "heading": "compagni di benevento massacrati e spariti",
+    "created": "2001-07-27 18:52:26",
+    "linked_file": null,
+    "hugo": "9385-compagni-di-benevento-massacrati-e-spariti",
+    "date": "2001-07-27",
+    "time": "18:52:26",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "18",
+    "minute": "52",
+    "second": "26"
+  },
+  {
+    "id": 9401,
+    "heading": "Sequenza fotografica sull'assassinio di Carlo di Sherwood.it in formato PDF",
+    "created": "2001-07-27 19:25:08",
+    "linked_file": "2001/07/carlo-photofilez6nkqg.pdf",
+    "hugo": "9401-sequenza-fotografica-sullassassinio-di-carlo-di-sherwoodit-in-formato-pdf",
+    "date": "2001-07-27",
+    "time": "19:25:08",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "25",
+    "second": "08"
+  },
+  {
+    "id": 9463,
+    "heading": "Il ministro degil esteri tedesco esige chiarezza (da Spiegelonline)(tedesco)",
+    "created": "2001-07-27 19:26:42",
+    "linked_file": null,
+    "hugo": "9463-il-ministro-degil-esteri-tedesco-esige-chiarezza-da-spiegelonlinetedesco",
+    "date": "2001-07-27",
+    "time": "19:26:42",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "26",
+    "second": "42"
+  },
+  {
+    "id": 9459,
+    "heading": "solidarietà internazionale",
+    "created": "2001-07-27 19:30:22",
+    "linked_file": null,
+    "hugo": "9459-solidarieta-internazionale",
+    "date": "2001-07-27",
+    "time": "19:30:22",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "30",
+    "second": "22"
+  },
+  {
+    "id": 9137,
+    "heading": "Another testimony of a policemen",
+    "created": "2001-07-27 19:42:23",
+    "linked_file": null,
+    "hugo": "9137-another-testimony-of-a-policemen",
+    "date": "2001-07-27",
+    "time": "19:42:23",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "19",
+    "minute": "42",
+    "second": "23"
+  },
+  {
+    "id": 8836,
+    "heading": "FORZA NUOVA ERA A GENOVA",
+    "created": "2001-07-27 21:01:02",
+    "linked_file": null,
+    "hugo": "8836-forza-nuova-era-a-genova",
+    "date": "2001-07-27",
+    "time": "21:01:02",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "21",
+    "minute": "01",
+    "second": "02"
+  },
+  {
+    "id": 9474,
+    "heading": "dal sud america",
+    "created": "2001-07-27 21:29:46",
+    "linked_file": "2001/07/carlo.gif",
+    "hugo": "9474-dal-sud-america",
+    "date": "2001-07-27",
+    "time": "21:29:46",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "21",
+    "minute": "29",
+    "second": "46"
+  },
+  {
+    "id": 9428,
+    "heading": "Mr Berlusconi's response is entirely inadequate",
+    "created": "2001-07-27 23:12:35",
+    "linked_file": null,
+    "hugo": "9428-mr-berlusconis-response-is-entirely-inadequate",
+    "date": "2001-07-27",
+    "time": "23:12:35",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "23",
+    "minute": "12",
+    "second": "35"
+  },
+  {
+    "id": 9388,
+    "heading": "songs of resistance",
+    "created": "2001-07-27 23:21:41",
+    "linked_file": null,
+    "hugo": "9388-songs-of-resistance",
+    "date": "2001-07-27",
+    "time": "23:21:41",
+    "year": "2001",
+    "month": "07",
+    "day": "27",
+    "hour": "23",
+    "minute": "21",
+    "second": "41"
+  },
+  {
+    "id": 9399,
+    "heading": "Who is counting the missing persons",
+    "created": "2001-07-28 01:21:17",
+    "linked_file": null,
+    "hugo": "9399-who-is-counting-the-missing-persons",
+    "date": "2001-07-28",
+    "time": "01:21:17",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "01",
+    "minute": "21",
+    "second": "17"
+  },
+  {
+    "id": 9489,
+    "heading": "test ignore",
+    "created": "2001-07-28 01:35:40",
+    "linked_file": null,
+    "hugo": "9489-test-ignore",
+    "date": "2001-07-28",
+    "time": "01:35:40",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "01",
+    "minute": "35",
+    "second": "40"
+  },
+  {
+    "id": 9485,
+    "heading": "Dalla Cina alla Francia",
+    "created": "2001-07-28 01:43:47",
+    "linked_file": null,
+    "hugo": "9485-dalla-cina-alla-francia",
+    "date": "2001-07-28",
+    "time": "01:43:47",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "01",
+    "minute": "43",
+    "second": "47"
+  },
+  {
+    "id": 9486,
+    "heading": "abbiamo visto abbiamo sentito abbiamo saputo",
+    "created": "2001-07-28 02:12:50",
+    "linked_file": null,
+    "hugo": "9486-abbiamo-visto-abbiamo-sentito-abbiamo-saputo",
+    "date": "2001-07-28",
+    "time": "02:12:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "12",
+    "second": "50"
+  },
+  {
+    "id": 9497,
+    "heading": "Protestate: Indirizzi email dei deputati italiani",
+    "created": "2001-07-28 02:15:29",
+    "linked_file": null,
+    "hugo": "9497-protestate-indirizzi-email-dei-deputati-italiani",
+    "date": "2001-07-28",
+    "time": "02:15:29",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "15",
+    "second": "29"
+  },
+  {
+    "id": 9415,
+    "heading": "From the Independent (UK Newspaper web site)",
+    "created": "2001-07-28 02:17:11",
+    "linked_file": null,
+    "hugo": "9415-from-the-independent-uk-newspaper-web-site",
+    "date": "2001-07-28",
+    "time": "02:17:11",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "17",
+    "second": "11"
+  },
+  {
+    "id": 9500,
+    "heading": "Know your enemy: two links to articles about fascism",
+    "created": "2001-07-28 02:23:31",
+    "linked_file": null,
+    "hugo": "9500-know-your-enemy-two-links-to-articles-about-fascism",
+    "date": "2001-07-28",
+    "time": "02:23:31",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "23",
+    "second": "31"
+  },
+  {
+    "id": 9503,
+    "heading": "che vita e'",
+    "created": "2001-07-28 02:42:15",
+    "linked_file": null,
+    "hugo": "9503-che-vita-e",
+    "date": "2001-07-28",
+    "time": "02:42:15",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "42",
+    "second": "15"
+  },
+  {
+    "id": 9504,
+    "heading": "G8: IL DEBITO DEI PAESI RICCHI\r(cronache genovesi, n°3)\r",
+    "created": "2001-07-28 02:49:45",
+    "linked_file": null,
+    "hugo": "9504-g8-il-debito-dei-paesi-ricchicronache-genovesi-n3",
+    "date": "2001-07-28",
+    "time": "02:49:45",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "02",
+    "minute": "49",
+    "second": "45"
+  },
+  {
+    "id": 9506,
+    "heading": "Carabinieri had a high profile and low tactics",
+    "created": "2001-07-28 03:00:51",
+    "linked_file": null,
+    "hugo": "9506-carabinieri-had-a-high-profile-and-low-tactics",
+    "date": "2001-07-28",
+    "time": "03:00:51",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "00",
+    "second": "51"
+  },
+  {
+    "id": 9508,
+    "heading": "L'Avvenire chiede le dimissioni di De Gennaro!",
+    "created": "2001-07-28 03:02:14",
+    "linked_file": null,
+    "hugo": "9508-lavvenire-chiede-le-dimissioni-di-de-gennaro",
+    "date": "2001-07-28",
+    "time": "03:02:14",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "02",
+    "second": "14"
+  },
+  {
+    "id": 9516,
+    "heading": "considerazioni personali su genova",
+    "created": "2001-07-28 03:27:27",
+    "linked_file": null,
+    "hugo": "9516-considerazioni-personali-su-genova",
+    "date": "2001-07-28",
+    "time": "03:27:27",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "27",
+    "second": "27"
+  },
+  {
+    "id": 9521,
+    "heading": "\"Il Foglio\" del servo Ferrara chiede chiarezza al governo",
+    "created": "2001-07-28 03:51:12",
+    "linked_file": null,
+    "hugo": "9521-il-foglio-del-servo-ferrara-chiede-chiarezza-al-governo",
+    "date": "2001-07-28",
+    "time": "03:51:12",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "03",
+    "minute": "51",
+    "second": "12"
+  },
+  {
+    "id": 6279,
+    "heading": "Addio Carlo!",
+    "created": "2001-07-28 04:03:54",
+    "linked_file": "2001/07/carlo_giuliani_1.jpg",
+    "hugo": "6279-addio-carlo",
+    "date": "2001-07-28",
+    "time": "04:03:54",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "04",
+    "minute": "03",
+    "second": "54"
+  },
+  {
+    "id": 9443,
+    "heading": "Chi sono sti gom? (rimando, sperando che venga + ordinato...!)",
+    "created": "2001-07-28 04:10:46",
+    "linked_file": null,
+    "hugo": "9443-chi-sono-sti-gom-rimando-sperando-che-venga-+-ordinato",
+    "date": "2001-07-28",
+    "time": "04:10:46",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "04",
+    "minute": "10",
+    "second": "46"
+  },
+  {
+    "id": 9451,
+    "heading": "TESTIMONIANZA DELL'OMICIDIO DI CARLO",
+    "created": "2001-07-28 04:49:11",
+    "linked_file": null,
+    "hugo": "9451-testimonianza-dellomicidio-di-carlo",
+    "date": "2001-07-28",
+    "time": "04:49:11",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "04",
+    "minute": "49",
+    "second": "11"
+  },
+  {
+    "id": 9553,
+    "heading": "L'ESTINTORE ESCE A SPINTA  E QUALCUNO CI LASCIA LO ZAMPINO",
+    "created": "2001-07-28 05:19:32",
+    "linked_file": null,
+    "hugo": "9553-lestintore-esce-a-spinta-e-qualcuno-ci-lascia-lo-zampino",
+    "date": "2001-07-28",
+    "time": "05:19:32",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "05",
+    "minute": "19",
+    "second": "32"
+  },
+  {
+    "id": 9527,
+    "heading": "foto di ordinaria violenza",
+    "created": "2001-07-28 05:21:27",
+    "linked_file": "2001/07/calci.gif",
+    "hugo": "9527-foto-di-ordinaria-violenza",
+    "date": "2001-07-28",
+    "time": "05:21:27",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "05",
+    "minute": "21",
+    "second": "27"
+  },
+  {
+    "id": 9499,
+    "heading": "Cocer Carabinieri, un documento",
+    "created": "2001-07-28 05:25:40",
+    "linked_file": null,
+    "hugo": "9499-cocer-carabinieri-un-documento",
+    "date": "2001-07-28",
+    "time": "05:25:40",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "05",
+    "minute": "25",
+    "second": "40"
+  },
+  {
+    "id": 9338,
+    "heading": "Piazza virtuale no-global",
+    "created": "2001-07-28 06:52:59",
+    "linked_file": null,
+    "hugo": "9338-piazza-virtuale-noglobal",
+    "date": "2001-07-28",
+    "time": "06:52:59",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "06",
+    "minute": "52",
+    "second": "59"
+  },
+  {
+    "id": 9502,
+    "heading": "Carlo non è stato ucciso per \"legittima difesa\"",
+    "created": "2001-07-28 06:56:03",
+    "linked_file": "2001/07/indexitalianoon4yss.ppt",
+    "hugo": "9502-carlo-non-e-stato-ucciso-per-legittima-difesa",
+    "date": "2001-07-28",
+    "time": "06:56:03",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "06",
+    "minute": "56",
+    "second": "03"
+  },
+  {
+    "id": 9579,
+    "heading": "VECCHIO FILM",
+    "created": "2001-07-28 07:12:20",
+    "linked_file": "2001/07/carbbb.jpg",
+    "hugo": "9579-vecchio-film",
+    "date": "2001-07-28",
+    "time": "07:12:20",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "12",
+    "second": "20"
+  },
+  {
+    "id": 9568,
+    "heading": "London:ore 15 italiane inizio manifestazione amb.italiana",
+    "created": "2001-07-28 07:15:46",
+    "linked_file": null,
+    "hugo": "9568-londonore-15-italiane-inizio-manifestazione-ambitaliana",
+    "date": "2001-07-28",
+    "time": "07:15:46",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "15",
+    "second": "46"
+  },
+  {
+    "id": 9380,
+    "heading": "controinformazione",
+    "created": "2001-07-28 07:25:40",
+    "linked_file": null,
+    "hugo": "9380-controinformazione",
+    "date": "2001-07-28",
+    "time": "07:25:40",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "25",
+    "second": "40"
+  },
+  {
+    "id": 9591,
+    "heading": "Manifestazione a Pescara del 24/7",
+    "created": "2001-07-28 07:30:45",
+    "linked_file": null,
+    "hugo": "9591-manifestazione-a-pescara-del-247",
+    "date": "2001-07-28",
+    "time": "07:30:45",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "30",
+    "second": "45"
+  },
+  {
+    "id": 1911,
+    "heading": "Regalo di un Carabiniere Vigliacco !",
+    "created": "2001-07-28 07:56:39",
+    "linked_file": "2001/07/freelance24h_copyright_.jpg",
+    "hugo": "1911-regalo-di-un-carabiniere-vigliacco-",
+    "date": "2001-07-28",
+    "time": "07:56:39",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "07",
+    "minute": "56",
+    "second": "39"
+  },
+  {
+    "id": 9518,
+    "heading": "La \"Canzoncina\" di Bolzaneto",
+    "created": "2001-07-28 08:28:55",
+    "linked_file": null,
+    "hugo": "9518-la-canzoncina-di-bolzaneto",
+    "date": "2001-07-28",
+    "time": "08:28:55",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "08",
+    "minute": "28",
+    "second": "55"
+  },
+  {
+    "id": 9549,
+    "heading": "I magistrati vogliono foto e video...",
+    "created": "2001-07-28 08:49:42",
+    "linked_file": null,
+    "hugo": "9549-i-magistrati-vogliono-foto-e-video",
+    "date": "2001-07-28",
+    "time": "08:49:42",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "08",
+    "minute": "49",
+    "second": "42"
+  },
+  {
+    "id": 9369,
+    "heading": "2 considerazioni sull'assassinio di giuliani",
+    "created": "2001-07-28 09:19:49",
+    "linked_file": null,
+    "hugo": "9369-2-considerazioni-sullassassinio-di-giuliani",
+    "date": "2001-07-28",
+    "time": "09:19:49",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "19",
+    "second": "49"
+  },
+  {
+    "id": 9522,
+    "heading": "G8: IL DEBITO DEI PAESI RICCHI\r(cronache genovesi, n°3)\r",
+    "created": "2001-07-28 09:27:08",
+    "linked_file": null,
+    "hugo": "9522-g8-il-debito-dei-paesi-ricchicronache-genovesi-n3",
+    "date": "2001-07-28",
+    "time": "09:27:08",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "27",
+    "second": "08"
+  },
+  {
+    "id": 9535,
+    "heading": "G8: LE BOTTE VERE NELLE FINTE LOTTE\r",
+    "created": "2001-07-28 09:35:26",
+    "linked_file": null,
+    "hugo": "9535-g8-le-botte-vere-nelle-finte-lotte",
+    "date": "2001-07-28",
+    "time": "09:35:26",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "35",
+    "second": "26"
+  },
+  {
+    "id": 9590,
+    "heading": "**IMPORTANTE** - LA CONDANNA DEL PRESIDENTE DEL SINDACATO EUROPEO DI POLIZIA",
+    "created": "2001-07-28 09:38:29",
+    "linked_file": null,
+    "hugo": "9590-importante-la-condanna-del-presidente-del-sindacato-europeo-di-polizia",
+    "date": "2001-07-28",
+    "time": "09:38:29",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "38",
+    "second": "29"
+  },
+  {
+    "id": 9592,
+    "heading": "Echelon in azione a Genova: Repressione Globale Fase 1",
+    "created": "2001-07-28 09:52:24",
+    "linked_file": null,
+    "hugo": "9592-echelon-in-azione-a-genova-repressione-globale-fase-1",
+    "date": "2001-07-28",
+    "time": "09:52:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "52",
+    "second": "24"
+  },
+  {
+    "id": 9509,
+    "heading": "ECCO LA FOTO di un funzionario carcerario complice GOM e storia documentata GOM",
+    "created": "2001-07-28 09:54:58",
+    "linked_file": "2001/07/dellavecchia1p03tgsd.jpg",
+    "hugo": "9509-ecco-la-foto-di-un-funzionario-carcerario-complice-gom-e-storia-documentata-gom",
+    "date": "2001-07-28",
+    "time": "09:54:58",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "09",
+    "minute": "54",
+    "second": "58"
+  },
+  {
+    "id": 9594,
+    "heading": "Echelon in azione a Genova: Repressione Globale Fase 2",
+    "created": "2001-07-28 10:00:46",
+    "linked_file": null,
+    "hugo": "9594-echelon-in-azione-a-genova-repressione-globale-fase-2",
+    "date": "2001-07-28",
+    "time": "10:00:46",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "00",
+    "second": "46"
+  },
+  {
+    "id": 8296,
+    "heading": "3.500 personas en la manifestacion a Atenas (text and pictures)",
+    "created": "2001-07-28 10:12:26",
+    "linked_file": "2001/07/athens1.jpg",
+    "hugo": "8296-3500-personas-en-la-manifestacion-a-atenas-text-and-pictures",
+    "date": "2001-07-28",
+    "time": "10:12:26",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "12",
+    "second": "26"
+  },
+  {
+    "id": 9336,
+    "heading": "Berlusca comincia a scaricare il barile!",
+    "created": "2001-07-28 10:17:09",
+    "linked_file": null,
+    "hugo": "9336-berlusca-comincia-a-scaricare-il-barile",
+    "date": "2001-07-28",
+    "time": "10:17:09",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "17",
+    "second": "09"
+  },
+  {
+    "id": 9679,
+    "heading": "Berlino: in 1000  protestano contro violenze polizia italiana",
+    "created": "2001-07-28 10:48:38",
+    "linked_file": null,
+    "hugo": "9679-berlino-in-1000-protestano-contro-violenze-polizia-italiana",
+    "date": "2001-07-28",
+    "time": "10:48:38",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "10",
+    "minute": "48",
+    "second": "38"
+  },
+  {
+    "id": 9588,
+    "heading": "BLACK FLOP",
+    "created": "2001-07-28 11:00:47",
+    "linked_file": null,
+    "hugo": "9588-black-flop",
+    "date": "2001-07-28",
+    "time": "11:00:47",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "11",
+    "minute": "00",
+    "second": "47"
+  },
+  {
+    "id": 9530,
+    "heading": "G8: LA LIBERTA' FA MALE?\r",
+    "created": "2001-07-28 11:01:42",
+    "linked_file": null,
+    "hugo": "9530-g8-la-liberta-fa-male",
+    "date": "2001-07-28",
+    "time": "11:01:42",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "11",
+    "minute": "01",
+    "second": "42"
+  },
+  {
+    "id": 9702,
+    "heading": "Maltese group Moviment Graffiti protests against abuse of power by Italian G8 po",
+    "created": "2001-07-28 11:30:52",
+    "linked_file": "2001/07/graffitti8.jpg",
+    "hugo": "9702-maltese-group-moviment-graffiti-protests-against-abuse-of-power-by-italian-g8-po",
+    "date": "2001-07-28",
+    "time": "11:30:52",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "11",
+    "minute": "30",
+    "second": "52"
+  },
+  {
+    "id": 9475,
+    "heading": "New illustration about Carlo Giuliani's murder (free distribution)",
+    "created": "2001-07-28 12:12:10",
+    "linked_file": "2001/07/carlox21mlv.gif",
+    "hugo": "9475-new-illustration-about-carlo-giulianis-murder-free-distribution",
+    "date": "2001-07-28",
+    "time": "12:12:10",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "12",
+    "second": "10"
+  },
+  {
+    "id": 9720,
+    "heading": "da altri siti",
+    "created": "2001-07-28 12:30:57",
+    "linked_file": null,
+    "hugo": "9720-da-altri-siti",
+    "date": "2001-07-28",
+    "time": "12:30:57",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "30",
+    "second": "57"
+  },
+  {
+    "id": 9246,
+    "heading": "poliziotto \"ambiguo\"",
+    "created": "2001-07-28 12:33:17",
+    "linked_file": "2001/07/inf2.jpg",
+    "hugo": "9246-poliziotto-ambiguo",
+    "date": "2001-07-28",
+    "time": "12:33:17",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "33",
+    "second": "17"
+  },
+  {
+    "id": 9542,
+    "heading": "DE GENNARO MENTE - DE GENNARO IS LYING",
+    "created": "2001-07-28 12:33:48",
+    "linked_file": null,
+    "hugo": "9542-de-gennaro-mente-de-gennaro-is-lying",
+    "date": "2001-07-28",
+    "time": "12:33:48",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "33",
+    "second": "48"
+  },
+  {
+    "id": 9658,
+    "heading": "NIENTE CENSURA, MA VIGILANZA!!!",
+    "created": "2001-07-28 12:46:53",
+    "linked_file": null,
+    "hugo": "9658-niente-censura-ma-vigilanza",
+    "date": "2001-07-28",
+    "time": "12:46:53",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "46",
+    "second": "53"
+  },
+  {
+    "id": 6869,
+    "heading": "imc raid ...personal reflections",
+    "created": "2001-07-28 12:47:51",
+    "linked_file": null,
+    "hugo": "6869-imc-raid-personal-reflections",
+    "date": "2001-07-28",
+    "time": "12:47:51",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "12",
+    "minute": "47",
+    "second": "51"
+  },
+  {
+    "id": 9578,
+    "heading": "Police face sack for Genoa 'brutality'",
+    "created": "2001-07-28 13:07:18",
+    "linked_file": null,
+    "hugo": "9578-police-face-sack-for-genoa-brutality",
+    "date": "2001-07-28",
+    "time": "13:07:18",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "07",
+    "second": "18"
+  },
+  {
+    "id": 9665,
+    "heading": "Secolo XIX su Black Bloc",
+    "created": "2001-07-28 13:08:11",
+    "linked_file": null,
+    "hugo": "9665-secolo-xix-su-black-bloc",
+    "date": "2001-07-28",
+    "time": "13:08:11",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "08",
+    "second": "11"
+  },
+  {
+    "id": 9672,
+    "heading": "L'informazione è davvero obiettiva a Mediaset come si afferma da più parti?",
+    "created": "2001-07-28 13:38:39",
+    "linked_file": null,
+    "hugo": "9672-linformazione-e-davvero-obiettiva-a-mediaset-come-si-afferma-da-piu-parti",
+    "date": "2001-07-28",
+    "time": "13:38:39",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "38",
+    "second": "39"
+  },
+  {
+    "id": 9565,
+    "heading": "PLEASE, SPREAD THIS MESSAGE - PER FAVORE, DIFFONDI QUESTO MESSAGGIO",
+    "created": "2001-07-28 13:48:44",
+    "linked_file": null,
+    "hugo": "9565-please-spread-this-message-per-favore-diffondi-questo-messaggio",
+    "date": "2001-07-28",
+    "time": "13:48:44",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "13",
+    "minute": "48",
+    "second": "44"
+  },
+  {
+    "id": 9589,
+    "heading": "**IMPORTANTE** - LA CONDANNA DEL PRESIDENTE DEL SINDACATO EUROPEO DI POLIZIA",
+    "created": "2001-07-28 14:03:50",
+    "linked_file": null,
+    "hugo": "9589-importante-la-condanna-del-presidente-del-sindacato-europeo-di-polizia",
+    "date": "2001-07-28",
+    "time": "14:03:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "14",
+    "minute": "03",
+    "second": "50"
+  },
+  {
+    "id": 9767,
+    "heading": "\"Report on Lawlessness from the Deaf Messenger\"",
+    "created": "2001-07-28 14:35:50",
+    "linked_file": null,
+    "hugo": "9767-report-on-lawlessness-from-the-deaf-messenger",
+    "date": "2001-07-28",
+    "time": "14:35:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "14",
+    "minute": "35",
+    "second": "50"
+  },
+  {
+    "id": 9728,
+    "heading": "Testimony  from a police  custody (El Veneto)",
+    "created": "2001-07-28 14:48:01",
+    "linked_file": null,
+    "hugo": "9728-testimony-from-a-police-custody-el-veneto",
+    "date": "2001-07-28",
+    "time": "14:48:01",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "14",
+    "minute": "48",
+    "second": "01"
+  },
+  {
+    "id": 9752,
+    "heading": "CONSIGLIO X I NAVIGANTI",
+    "created": "2001-07-28 15:00:24",
+    "linked_file": null,
+    "hugo": "9752-consiglio-x-i-naviganti",
+    "date": "2001-07-28",
+    "time": "15:00:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "00",
+    "second": "24"
+  },
+  {
+    "id": 9495,
+    "heading": "macchine parcheggiate lungo un corteo?",
+    "created": "2001-07-28 15:03:56",
+    "linked_file": "2001/07/scontri_11.jpg",
+    "hugo": "9495-macchine-parcheggiate-lungo-un-corteo",
+    "date": "2001-07-28",
+    "time": "15:03:56",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "03",
+    "second": "56"
+  },
+  {
+    "id": 9778,
+    "heading": "aiutateci a rispondere alle domande su carlo",
+    "created": "2001-07-28 15:06:50",
+    "linked_file": null,
+    "hugo": "9778-aiutateci-a-rispondere-alle-domande-su-carlo",
+    "date": "2001-07-28",
+    "time": "15:06:50",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "06",
+    "second": "50"
+  },
+  {
+    "id": 9725,
+    "heading": "Straw tackles Italy's envoy over'shocking' violence",
+    "created": "2001-07-28 15:08:06",
+    "linked_file": null,
+    "hugo": "9725-straw-tackles-italys-envoy-overshocking-violence",
+    "date": "2001-07-28",
+    "time": "15:08:06",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "08",
+    "second": "06"
+  },
+  {
+    "id": 9739,
+    "heading": "FUORI ORARIO NON E' STATO OSCURATO",
+    "created": "2001-07-28 15:32:24",
+    "linked_file": null,
+    "hugo": "9739-fuori-orario-non-e-stato-oscurato",
+    "date": "2001-07-28",
+    "time": "15:32:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "32",
+    "second": "24"
+  },
+  {
+    "id": 9453,
+    "heading": "Genova - 20/21 luglio 2001",
+    "created": "2001-07-28 15:32:30",
+    "linked_file": null,
+    "hugo": "9453-genova-2021-luglio-2001",
+    "date": "2001-07-28",
+    "time": "15:32:30",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "32",
+    "second": "30"
+  },
+  {
+    "id": 9795,
+    "heading": "CALL UP FOR SOLIDARITY: publiXtheatreCaravane still in jail",
+    "created": "2001-07-28 15:36:23",
+    "linked_file": null,
+    "hugo": "9795-call-up-for-solidarity-publixtheatrecaravane-still-in-jail",
+    "date": "2001-07-28",
+    "time": "15:36:23",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "15",
+    "minute": "36",
+    "second": "23"
+  },
+  {
+    "id": 8998,
+    "heading": "Destra al potere!",
+    "created": "2001-07-28 16:05:34",
+    "linked_file": null,
+    "hugo": "8998-destra-al-potere",
+    "date": "2001-07-28",
+    "time": "16:05:34",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "16",
+    "minute": "05",
+    "second": "34"
+  },
+  {
+    "id": 9802,
+    "heading": "anarchie et facade... suite de del'interieur",
+    "created": "2001-07-28 16:46:33",
+    "linked_file": null,
+    "hugo": "9802-anarchie-et-facade-suite-de-delinterieur",
+    "date": "2001-07-28",
+    "time": "16:46:33",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "16",
+    "minute": "46",
+    "second": "33"
+  },
+  {
+    "id": 9593,
+    "heading": "BLACK BLOC IS BLACK FLOP",
+    "created": "2001-07-28 16:54:24",
+    "linked_file": null,
+    "hugo": "9593-black-bloc-is-black-flop",
+    "date": "2001-07-28",
+    "time": "16:54:24",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "16",
+    "minute": "54",
+    "second": "24"
+  },
+  {
+    "id": 9400,
+    "heading": "Foto Da Genova",
+    "created": "2001-07-28 17:18:29",
+    "linked_file": null,
+    "hugo": "9400-foto-da-genova",
+    "date": "2001-07-28",
+    "time": "17:18:29",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "18",
+    "second": "29"
+  },
+  {
+    "id": 9817,
+    "heading": " Genoa 'police brutality' dossier handed over",
+    "created": "2001-07-28 17:44:28",
+    "linked_file": null,
+    "hugo": "9817-genoa-police-brutality-dossier-handed-over",
+    "date": "2001-07-28",
+    "time": "17:44:28",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "44",
+    "second": "28"
+  },
+  {
+    "id": 6097,
+    "heading": "MAINSTREAM MEDIA WHORES",
+    "created": "2001-07-28 17:59:25",
+    "linked_file": "2001/07/fox.jpg",
+    "hugo": "6097-mainstream-media-whores",
+    "date": "2001-07-28",
+    "time": "17:59:25",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "59",
+    "second": "25"
+  },
+  {
+    "id": 9734,
+    "heading": "INTERVISTA FANTOCCIO del capo carcerario SABELLA A DIFESA DEI TORTURATORI GOM",
+    "created": "2001-07-28 17:59:34",
+    "linked_file": null,
+    "hugo": "9734-intervista-fantoccio-del-capo-carcerario-sabella-a-difesa-dei-torturatori-gom",
+    "date": "2001-07-28",
+    "time": "17:59:34",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "17",
+    "minute": "59",
+    "second": "34"
+  },
+  {
+    "id": 9139,
+    "heading": "sempre da Bergamo.",
+    "created": "2001-07-28 18:24:57",
+    "linked_file": null,
+    "hugo": "9139-sempre-da-bergamo",
+    "date": "2001-07-28",
+    "time": "18:24:57",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "18",
+    "minute": "24",
+    "second": "57"
+  },
+  {
+    "id": 9829,
+    "heading": "AUTO E CASSONETTI",
+    "created": "2001-07-28 18:46:20",
+    "linked_file": null,
+    "hugo": "9829-auto-e-cassonetti",
+    "date": "2001-07-28",
+    "time": "18:46:20",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "18",
+    "minute": "46",
+    "second": "20"
+  },
+  {
+    "id": 9832,
+    "heading": "fotos: Giuliani solidarity in Boston, USA",
+    "created": "2001-07-28 19:34:19",
+    "linked_file": null,
+    "hugo": "9832-fotos-giuliani-solidarity-in-boston-usa",
+    "date": "2001-07-28",
+    "time": "19:34:19",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "19",
+    "minute": "34",
+    "second": "19"
+  },
+  {
+    "id": 9766,
+    "heading": "Defacing di protesta/Protest defacing",
+    "created": "2001-07-28 20:59:39",
+    "linked_file": null,
+    "hugo": "9766-defacing-di-protestaprotest-defacing",
+    "date": "2001-07-28",
+    "time": "20:59:39",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "20",
+    "minute": "59",
+    "second": "39"
+  },
+  {
+    "id": 9844,
+    "heading": "American, Su Thomas held at Voghera prison.",
+    "created": "2001-07-28 23:14:56",
+    "linked_file": null,
+    "hugo": "9844-american-su-thomas-held-at-voghera-prison",
+    "date": "2001-07-28",
+    "time": "23:14:56",
+    "year": "2001",
+    "month": "07",
+    "day": "28",
+    "hour": "23",
+    "minute": "14",
+    "second": "56"
+  },
+  {
+    "id": 9849,
+    "heading": ":: Requiem in Italy and the World :: 20 July 2001 ::",
+    "created": "2001-07-29 02:00:59",
+    "linked_file": null,
+    "hugo": "9849-requiem-in-italy-and-the-world-20-july-2001-",
+    "date": "2001-07-29",
+    "time": "02:00:59",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "02",
+    "minute": "00",
+    "second": "59"
+  },
+  {
+    "id": 9850,
+    "heading": ":: Genoa :: Requiem in Italy and the World :: 20 July 2001",
+    "created": "2001-07-29 02:08:59",
+    "linked_file": null,
+    "hugo": "9850-genoa-requiem-in-italy-and-the-world-20-july-2001",
+    "date": "2001-07-29",
+    "time": "02:08:59",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "02",
+    "minute": "08",
+    "second": "59"
+  },
+  {
+    "id": 9854,
+    "heading": "en, fr,it, de ...) genoa info and solidarity info multilingual on ainfos archive",
+    "created": "2001-07-29 02:32:35",
+    "linked_file": null,
+    "hugo": "9854-en-frit-de-genoa-info-and-solidarity-info-multilingual-on-ainfos-archive",
+    "date": "2001-07-29",
+    "time": "02:32:35",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "02",
+    "minute": "32",
+    "second": "35"
+  },
+  {
+    "id": 9878,
+    "heading": "pace",
+    "created": "2001-07-29 04:16:21",
+    "linked_file": "2001/07/doc1.rtf",
+    "hugo": "9878-pace",
+    "date": "2001-07-29",
+    "time": "04:16:21",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "04",
+    "minute": "16",
+    "second": "21"
+  },
+  {
+    "id": 9857,
+    "heading": "achtung!",
+    "created": "2001-07-29 04:21:38",
+    "linked_file": "2001/07/maglietta_copia.gif",
+    "hugo": "9857-achtung",
+    "date": "2001-07-29",
+    "time": "04:21:38",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "04",
+    "minute": "21",
+    "second": "38"
+  },
+  {
+    "id": 9624,
+    "heading": "Ci sono altri morti? Facciamo luce",
+    "created": "2001-07-29 05:01:13",
+    "linked_file": null,
+    "hugo": "9624-ci-sono-altri-morti-facciamo-luce",
+    "date": "2001-07-29",
+    "time": "05:01:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "05",
+    "minute": "01",
+    "second": "13"
+  },
+  {
+    "id": 9828,
+    "heading": "SECONDO APPELLO AI NAVIGANTI",
+    "created": "2001-07-29 05:30:19",
+    "linked_file": null,
+    "hugo": "9828-secondo-appello-ai-naviganti",
+    "date": "2001-07-29",
+    "time": "05:30:19",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "05",
+    "minute": "30",
+    "second": "19"
+  },
+  {
+    "id": 9834,
+    "heading": "Voi cosa ne pensate? (Carlo i CC ecc...)",
+    "created": "2001-07-29 06:03:03",
+    "linked_file": null,
+    "hugo": "9834-voi-cosa-ne-pensate-carlo-i-cc-ecc",
+    "date": "2001-07-29",
+    "time": "06:03:03",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "06",
+    "minute": "03",
+    "second": "03"
+  },
+  {
+    "id": 9822,
+    "heading": "L'appello della Procura su Genova",
+    "created": "2001-07-29 06:27:53",
+    "linked_file": null,
+    "hugo": "9822-lappello-della-procura-su-genova",
+    "date": "2001-07-29",
+    "time": "06:27:53",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "06",
+    "minute": "27",
+    "second": "53"
+  },
+  {
+    "id": 9915,
+    "heading": "Boycott!",
+    "created": "2001-07-29 07:09:15",
+    "linked_file": "2001/07/boycott3.jpg",
+    "hugo": "9915-boycott",
+    "date": "2001-07-29",
+    "time": "07:09:15",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "09",
+    "second": "15"
+  },
+  {
+    "id": 9674,
+    "heading": "Catarro di poliziotto su Fausto",
+    "created": "2001-07-29 07:12:51",
+    "linked_file": "2001/07/testimone.doc",
+    "hugo": "9674-catarro-di-poliziotto-su-fausto",
+    "date": "2001-07-29",
+    "time": "07:12:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "12",
+    "second": "51"
+  },
+  {
+    "id": 9816,
+    "heading": "Attenzione Virus",
+    "created": "2001-07-29 07:20:28",
+    "linked_file": null,
+    "hugo": "9816-attenzione-virus",
+    "date": "2001-07-29",
+    "time": "07:20:28",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "20",
+    "second": "28"
+  },
+  {
+    "id": 9538,
+    "heading": "VIOLANTE, COMMISSIONE INCHIESTA O CI MOBILITIAMO (Ansa)",
+    "created": "2001-07-29 07:44:55",
+    "linked_file": null,
+    "hugo": "9538-violante-commissione-inchiesta-o-ci-mobilitiamo-ansa",
+    "date": "2001-07-29",
+    "time": "07:44:55",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "44",
+    "second": "55"
+  },
+  {
+    "id": 9801,
+    "heading": " General faces Genoa inquiry",
+    "created": "2001-07-29 07:47:42",
+    "linked_file": null,
+    "hugo": "9801-general-faces-genoa-inquiry",
+    "date": "2001-07-29",
+    "time": "07:47:42",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "47",
+    "second": "42"
+  },
+  {
+    "id": 9928,
+    "heading": "Lights, camera, protest... G8",
+    "created": "2001-07-29 07:50:32",
+    "linked_file": null,
+    "hugo": "9928-lights-camera-protest-g8",
+    "date": "2001-07-29",
+    "time": "07:50:32",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "50",
+    "second": "32"
+  },
+  {
+    "id": 9866,
+    "heading": " \"Ci picchiavano senza pietà\"",
+    "created": "2001-07-29 07:59:22",
+    "linked_file": null,
+    "hugo": "9866-ci-picchiavano-senza-pieta",
+    "date": "2001-07-29",
+    "time": "07:59:22",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "07",
+    "minute": "59",
+    "second": "22"
+  },
+  {
+    "id": 9873,
+    "heading": "let's paint on our t-shirt",
+    "created": "2001-07-29 08:03:03",
+    "linked_file": "2001/07/maglietta_copiaxjqnab.gif",
+    "hugo": "9873-lets-paint-on-our-tshirt",
+    "date": "2001-07-29",
+    "time": "08:03:03",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "03",
+    "second": "03"
+  },
+  {
+    "id": 9941,
+    "heading": "Revolutionary Peoples Liberation Front from Turkey about Genua",
+    "created": "2001-07-29 08:30:40",
+    "linked_file": null,
+    "hugo": "9941-revolutionary-peoples-liberation-front-from-turkey-about-genua",
+    "date": "2001-07-29",
+    "time": "08:30:40",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "30",
+    "second": "40"
+  },
+  {
+    "id": 9940,
+    "heading": "Lapsus freudiano",
+    "created": "2001-07-29 08:31:08",
+    "linked_file": null,
+    "hugo": "9940-lapsus-freudiano",
+    "date": "2001-07-29",
+    "time": "08:31:08",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "31",
+    "second": "08"
+  },
+  {
+    "id": 9464,
+    "heading": "Solidarity with Tomas Aleinikovas",
+    "created": "2001-07-29 08:35:18",
+    "linked_file": null,
+    "hugo": "9464-solidarity-with-tomas-aleinikovas",
+    "date": "2001-07-29",
+    "time": "08:35:18",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "08",
+    "minute": "35",
+    "second": "18"
+  },
+  {
+    "id": 6699,
+    "heading": "VERGONA!!!",
+    "created": "2001-07-29 09:05:13",
+    "linked_file": "2001/07/jul22_11.jpg",
+    "hugo": "6699-vergona",
+    "date": "2001-07-29",
+    "time": "09:05:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "05",
+    "second": "13"
+  },
+  {
+    "id": 9952,
+    "heading": "Comunicato di guerra.",
+    "created": "2001-07-29 09:11:17",
+    "linked_file": null,
+    "hugo": "9952-comunicato-di-guerra",
+    "date": "2001-07-29",
+    "time": "09:11:17",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "11",
+    "second": "17"
+  },
+  {
+    "id": 9756,
+    "heading": "BOICOTTA L'ESPRESSO",
+    "created": "2001-07-29 09:12:54",
+    "linked_file": null,
+    "hugo": "9756-boicotta-lespresso",
+    "date": "2001-07-29",
+    "time": "09:12:54",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "12",
+    "second": "54"
+  },
+  {
+    "id": 5457,
+    "heading": "TV camera tossed into burning car (PHOTO)",
+    "created": "2001-07-29 09:13:00",
+    "linked_file": "2001/07/camfire.jpg",
+    "hugo": "5457-tv-camera-tossed-into-burning-car-photo",
+    "date": "2001-07-29",
+    "time": "09:13:00",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "13",
+    "second": "00"
+  },
+  {
+    "id": 9536,
+    "heading": "VIDEO SU BLIZ DIAZ (QUALCUNO RIESCE A VEDERLI?)",
+    "created": "2001-07-29 09:23:16",
+    "linked_file": null,
+    "hugo": "9536-video-su-bliz-diaz-qualcuno-riesce-a-vederli",
+    "date": "2001-07-29",
+    "time": "09:23:16",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "23",
+    "second": "16"
+  },
+  {
+    "id": 8241,
+    "heading": "IO VOGLIO SAPERE",
+    "created": "2001-07-29 09:29:25",
+    "linked_file": null,
+    "hugo": "8241-io-voglio-sapere",
+    "date": "2001-07-29",
+    "time": "09:29:25",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "29",
+    "second": "25"
+  },
+  {
+    "id": 9846,
+    "heading": "Firewall e sicurezza",
+    "created": "2001-07-29 09:38:46",
+    "linked_file": null,
+    "hugo": "9846-firewall-e-sicurezza",
+    "date": "2001-07-29",
+    "time": "09:38:46",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "38",
+    "second": "46"
+  },
+  {
+    "id": 9864,
+    "heading": "Infiltrati al corteo a Taranto",
+    "created": "2001-07-29 09:39:51",
+    "linked_file": null,
+    "hugo": "9864-infiltrati-al-corteo-a-taranto",
+    "date": "2001-07-29",
+    "time": "09:39:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "39",
+    "second": "51"
+  },
+  {
+    "id": 9898,
+    "heading": "qualcuno è risucito a riprodurre i filmati sul G8?",
+    "created": "2001-07-29 09:45:59",
+    "linked_file": null,
+    "hugo": "9898-qualcuno-e-risucito-a-riprodurre-i-filmati-sul-g8",
+    "date": "2001-07-29",
+    "time": "09:45:59",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "45",
+    "second": "59"
+  },
+  {
+    "id": 9993,
+    "heading": "E' USCITO SU INTERNET L'INSERTO G8 di organizzazione comunista internazionalista",
+    "created": "2001-07-29 09:59:12",
+    "linked_file": null,
+    "hugo": "9993-e-uscito-su-internet-linserto-g8-di-organizzazione-comunista-internazionalista",
+    "date": "2001-07-29",
+    "time": "09:59:12",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "09",
+    "minute": "59",
+    "second": "12"
+  },
+  {
+    "id": 9996,
+    "heading": "SI CHIAMA ALFONSO SABELLA e non SABELLI il capo carcarario Dap (vedi Gom)",
+    "created": "2001-07-29 10:05:11",
+    "linked_file": null,
+    "hugo": "9996-si-chiama-alfonso-sabella-e-non-sabelli-il-capo-carcarario-dap-vedi-gom",
+    "date": "2001-07-29",
+    "time": "10:05:11",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "05",
+    "second": "11"
+  },
+  {
+    "id": 9947,
+    "heading": "Black Bloc vero e Black Bloc finto: da Il Secolo XIX",
+    "created": "2001-07-29 10:27:51",
+    "linked_file": null,
+    "hugo": "9947-black-bloc-vero-e-black-bloc-finto-da-il-secolo-xix",
+    "date": "2001-07-29",
+    "time": "10:27:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "27",
+    "second": "51"
+  },
+  {
+    "id": 9922,
+    "heading": "SABELLI A LA7,LE VIOLENZE CI SONO STATE, I REFERTI PARLANO (Ansa)",
+    "created": "2001-07-29 10:36:54",
+    "linked_file": null,
+    "hugo": "9922-sabelli-a-la7le-violenze-ci-sono-state-i-referti-parlano-ansa",
+    "date": "2001-07-29",
+    "time": "10:36:54",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "36",
+    "second": "54"
+  },
+  {
+    "id": 9935,
+    "heading": "\"Sono stato rapito e torturato dallo Stato italiano\"",
+    "created": "2001-07-29 10:52:11",
+    "linked_file": null,
+    "hugo": "9935-sono-stato-rapito-e-torturato-dallo-stato-italiano",
+    "date": "2001-07-29",
+    "time": "10:52:11",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "10",
+    "minute": "52",
+    "second": "11"
+  },
+  {
+    "id": 9585,
+    "heading": "estintori e trappole",
+    "created": "2001-07-29 11:11:28",
+    "linked_file": null,
+    "hugo": "9585-estintori-e-trappole",
+    "date": "2001-07-29",
+    "time": "11:11:28",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "11",
+    "minute": "11",
+    "second": "28"
+  },
+  {
+    "id": 9990,
+    "heading": "BBC  \"Something clearly went very badly wrong with the policing.",
+    "created": "2001-07-29 11:43:12",
+    "linked_file": null,
+    "hugo": "9990-bbc-something-clearly-went-very-badly-wrong-with-the-policing",
+    "date": "2001-07-29",
+    "time": "11:43:12",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "11",
+    "minute": "43",
+    "second": "12"
+  },
+  {
+    "id": 9714,
+    "heading": "Ci sono altri morti? (2)",
+    "created": "2001-07-29 12:18:45",
+    "linked_file": null,
+    "hugo": "9714-ci-sono-altri-morti-2",
+    "date": "2001-07-29",
+    "time": "12:18:45",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "18",
+    "second": "45"
+  },
+  {
+    "id": 9929,
+    "heading": "a tutto il movimento no global",
+    "created": "2001-07-29 12:19:14",
+    "linked_file": null,
+    "hugo": "9929-a-tutto-il-movimento-no-global",
+    "date": "2001-07-29",
+    "time": "12:19:14",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "19",
+    "second": "14"
+  },
+  {
+    "id": 9962,
+    "heading": "Relato de un zaragozano detenido en Scuola Diaz (es)",
+    "created": "2001-07-29 12:19:19",
+    "linked_file": null,
+    "hugo": "9962-relato-de-un-zaragozano-detenido-en-scuola-diaz-es",
+    "date": "2001-07-29",
+    "time": "12:19:19",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "19",
+    "second": "19"
+  },
+  {
+    "id": 8373,
+    "heading": "COSA SI PUO' FARE CON LA DIVISA",
+    "created": "2001-07-29 12:27:07",
+    "linked_file": "2001/07/soppruso.jpg.jpg",
+    "hugo": "8373-cosa-si-puo-fare-con-la-divisa",
+    "date": "2001-07-29",
+    "time": "12:27:07",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "27",
+    "second": "07"
+  },
+  {
+    "id": 10040,
+    "heading": "Governo italiano sotto pressione (dalla taz di oggi) (tedesco)",
+    "created": "2001-07-29 12:35:21",
+    "linked_file": null,
+    "hugo": "10040-governo-italiano-sotto-pressione-dalla-taz-di-oggi-tedesco",
+    "date": "2001-07-29",
+    "time": "12:35:21",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "12",
+    "minute": "35",
+    "second": "21"
+  },
+  {
+    "id": 9988,
+    "heading": "ancora sulle auto",
+    "created": "2001-07-29 13:13:37",
+    "linked_file": null,
+    "hugo": "9988-ancora-sulle-auto",
+    "date": "2001-07-29",
+    "time": "13:13:37",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "13",
+    "second": "37"
+  },
+  {
+    "id": 9984,
+    "heading": "APPELLO AI NAVIGANTI",
+    "created": "2001-07-29 13:22:24",
+    "linked_file": null,
+    "hugo": "9984-appello-ai-naviganti",
+    "date": "2001-07-29",
+    "time": "13:22:24",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "22",
+    "second": "24"
+  },
+  {
+    "id": 10059,
+    "heading": "drop_the_debt",
+    "created": "2001-07-29 13:24:17",
+    "linked_file": "2001/07/dropthedebt.jpg",
+    "hugo": "10059-dropthedebt",
+    "date": "2001-07-29",
+    "time": "13:24:17",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "24",
+    "second": "17"
+  },
+  {
+    "id": 9916,
+    "heading": "Cileni un cazzo...",
+    "created": "2001-07-29 13:25:19",
+    "linked_file": null,
+    "hugo": "9916-cileni-un-cazzo",
+    "date": "2001-07-29",
+    "time": "13:25:19",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "25",
+    "second": "19"
+  },
+  {
+    "id": 9450,
+    "heading": "L'ESTINTORE ESCE A SPINTA  E QUALCUNO CI LASCIA LO ZAMPINO",
+    "created": "2001-07-29 13:35:29",
+    "linked_file": null,
+    "hugo": "9450-lestintore-esce-a-spinta-e-qualcuno-ci-lascia-lo-zampino",
+    "date": "2001-07-29",
+    "time": "13:35:29",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "35",
+    "second": "29"
+  },
+  {
+    "id": 10061,
+    "heading": "Genoa Prisoner Update",
+    "created": "2001-07-29 13:39:05",
+    "linked_file": null,
+    "hugo": "10061-genoa-prisoner-update",
+    "date": "2001-07-29",
+    "time": "13:39:05",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "39",
+    "second": "05"
+  },
+  {
+    "id": 9892,
+    "heading": "CONTINUIAMO COSì...FACCIAMOCI DEL MALE",
+    "created": "2001-07-29 13:49:26",
+    "linked_file": null,
+    "hugo": "9892-continuiamo-cosifacciamoci-del-male",
+    "date": "2001-07-29",
+    "time": "13:49:26",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "13",
+    "minute": "49",
+    "second": "26"
+  },
+  {
+    "id": 10073,
+    "heading": "c'é da spostare una macchina!",
+    "created": "2001-07-29 14:10:01",
+    "linked_file": "2001/07/pula.jpg",
+    "hugo": "10073-ce-da-spostare-una-macchina",
+    "date": "2001-07-29",
+    "time": "14:10:01",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "10",
+    "second": "01"
+  },
+  {
+    "id": 10074,
+    "heading": "IMC NEWS BLAST | Monday, July 23, 2001 [it/en]",
+    "created": "2001-07-29 14:11:47",
+    "linked_file": null,
+    "hugo": "10074-imc-news-blast-monday-july-23-2001-iten",
+    "date": "2001-07-29",
+    "time": "14:11:47",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "11",
+    "second": "47"
+  },
+  {
+    "id": 10018,
+    "heading": "un sito per approfondire",
+    "created": "2001-07-29 14:13:32",
+    "linked_file": null,
+    "hugo": "10018-un-sito-per-approfondire",
+    "date": "2001-07-29",
+    "time": "14:13:32",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "13",
+    "second": "32"
+  },
+  {
+    "id": 10082,
+    "heading": "la verità sulle torture sta finalmente emergendo (dall'observer di oggi)(en)",
+    "created": "2001-07-29 14:44:03",
+    "linked_file": null,
+    "hugo": "10082-la-verita-sulle-torture-sta-finalmente-emergendo-dallobserver-di-oggien",
+    "date": "2001-07-29",
+    "time": "14:44:03",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "14",
+    "minute": "44",
+    "second": "03"
+  },
+  {
+    "id": 10070,
+    "heading": "Un appello / An appeal",
+    "created": "2001-07-29 15:03:55",
+    "linked_file": null,
+    "hugo": "10070-un-appello-an-appeal",
+    "date": "2001-07-29",
+    "time": "15:03:55",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "03",
+    "second": "55"
+  },
+  {
+    "id": 9812,
+    "heading": "GENOVA: TRE IPOTESI",
+    "created": "2001-07-29 15:24:05",
+    "linked_file": null,
+    "hugo": "9812-genova-tre-ipotesi",
+    "date": "2001-07-29",
+    "time": "15:24:05",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "24",
+    "second": "05"
+  },
+  {
+    "id": 10072,
+    "heading": "Urgente x Firenze...",
+    "created": "2001-07-29 15:34:47",
+    "linked_file": null,
+    "hugo": "10072-urgente-x-firenze",
+    "date": "2001-07-29",
+    "time": "15:34:47",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "34",
+    "second": "47"
+  },
+  {
+    "id": 9973,
+    "heading": "Ci spiano, non ci spiano",
+    "created": "2001-07-29 15:53:10",
+    "linked_file": null,
+    "hugo": "9973-ci-spiano-non-ci-spiano",
+    "date": "2001-07-29",
+    "time": "15:53:10",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "53",
+    "second": "10"
+  },
+  {
+    "id": 9552,
+    "heading": "TESTIMONIANZA SULL'OMICIDIO DI CARLO",
+    "created": "2001-07-29 15:54:04",
+    "linked_file": null,
+    "hugo": "9552-testimonianza-sullomicidio-di-carlo",
+    "date": "2001-07-29",
+    "time": "15:54:04",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "15",
+    "minute": "54",
+    "second": "04"
+  },
+  {
+    "id": 10109,
+    "heading": "GENOVA PER NOI",
+    "created": "2001-07-29 16:09:25",
+    "linked_file": null,
+    "hugo": "10109-genova-per-noi",
+    "date": "2001-07-29",
+    "time": "16:09:25",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "09",
+    "second": "25"
+  },
+  {
+    "id": 10104,
+    "heading": "POLIZIOTTI IN RIUNIONE DI PROTESTA IL 30-07-2001 A FIRENZE CON Alleanza NazionaN",
+    "created": "2001-07-29 16:30:14",
+    "linked_file": null,
+    "hugo": "10104-poliziotti-in-riunione-di-protesta-il-30072001-a-firenze-con-alleanza-nazionan",
+    "date": "2001-07-29",
+    "time": "16:30:14",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "30",
+    "second": "14"
+  },
+  {
+    "id": 10099,
+    "heading": "manifesto presidio",
+    "created": "2001-07-29 16:31:04",
+    "linked_file": "2001/07/presidio.jpg",
+    "hugo": "10099-manifesto-presidio",
+    "date": "2001-07-29",
+    "time": "16:31:04",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "31",
+    "second": "04"
+  },
+  {
+    "id": 9875,
+    "heading": "testimonianze su genova tratte dal quotidiano siciliano \"L'ORA\"",
+    "created": "2001-07-29 16:34:31",
+    "linked_file": null,
+    "hugo": "9875-testimonianze-su-genova-tratte-dal-quotidiano-siciliano-lora",
+    "date": "2001-07-29",
+    "time": "16:34:31",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "34",
+    "second": "31"
+  },
+  {
+    "id": 10105,
+    "heading": "Censura",
+    "created": "2001-07-29 16:35:15",
+    "linked_file": null,
+    "hugo": "10105-censura",
+    "date": "2001-07-29",
+    "time": "16:35:15",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "35",
+    "second": "15"
+  },
+  {
+    "id": 10098,
+    "heading": "PRESIDIO AD ALESSANDRIA",
+    "created": "2001-07-29 16:42:37",
+    "linked_file": null,
+    "hugo": "10098-presidio-ad-alessandria",
+    "date": "2001-07-29",
+    "time": "16:42:37",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "42",
+    "second": "37"
+  },
+  {
+    "id": 10024,
+    "heading": "VENERDI 20 LUGLIO..IL RISVEGLIO",
+    "created": "2001-07-29 16:52:35",
+    "linked_file": null,
+    "hugo": "10024-venerdi-20-luglioil-risveglio",
+    "date": "2001-07-29",
+    "time": "16:52:35",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "16",
+    "minute": "52",
+    "second": "35"
+  },
+  {
+    "id": 10134,
+    "heading": "Night of Chile",
+    "created": "2001-07-29 17:14:56",
+    "linked_file": null,
+    "hugo": "10134-night-of-chile",
+    "date": "2001-07-29",
+    "time": "17:14:56",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "14",
+    "second": "56"
+  },
+  {
+    "id": 10086,
+    "heading": "Articolo della giornalista di Junge Welt  tenuta in carcere per 4 giorni (ted)",
+    "created": "2001-07-29 17:30:16",
+    "linked_file": null,
+    "hugo": "10086-articolo-della-giornalista-di-junge-welt-tenuta-in-carcere-per-4-giorni-ted",
+    "date": "2001-07-29",
+    "time": "17:30:16",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "30",
+    "second": "16"
+  },
+  {
+    "id": 10131,
+    "heading": "Traduzione articolo  della giornalista Kirsten Wagenschein",
+    "created": "2001-07-29 17:48:33",
+    "linked_file": null,
+    "hugo": "10131-traduzione-articolo-della-giornalista-kirsten-wagenschein",
+    "date": "2001-07-29",
+    "time": "17:48:33",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "48",
+    "second": "33"
+  },
+  {
+    "id": 10146,
+    "heading": "Britons among 18 missing in Genoa",
+    "created": "2001-07-29 17:49:13",
+    "linked_file": null,
+    "hugo": "10146-britons-among-18-missing-in-genoa",
+    "date": "2001-07-29",
+    "time": "17:49:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "17",
+    "minute": "49",
+    "second": "13"
+  },
+  {
+    "id": 10139,
+    "heading": "Indignazione",
+    "created": "2001-07-29 18:01:26",
+    "linked_file": null,
+    "hugo": "10139-indignazione",
+    "date": "2001-07-29",
+    "time": "18:01:26",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "01",
+    "second": "26"
+  },
+  {
+    "id": 9547,
+    "heading": "non vivo bene da genova!",
+    "created": "2001-07-29 18:02:13",
+    "linked_file": null,
+    "hugo": "9547-non-vivo-bene-da-genova",
+    "date": "2001-07-29",
+    "time": "18:02:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "02",
+    "second": "13"
+  },
+  {
+    "id": 10124,
+    "heading": "L'ORA  - UNA SERIE DI IMMAGINI MOSTRA IMPORTANTI PARTICOLARI SULL' OMICIDIO",
+    "created": "2001-07-29 18:04:13",
+    "linked_file": "2001/07/ora1vjubc7.pdf",
+    "hugo": "10124-lora-una-serie-di-immagini-mostra-importanti-particolari-sull-omicidio",
+    "date": "2001-07-29",
+    "time": "18:04:13",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "04",
+    "second": "13"
+  },
+  {
+    "id": 10132,
+    "heading": "ci picchiavano senza pietà",
+    "created": "2001-07-29 18:16:26",
+    "linked_file": null,
+    "hugo": "10132-ci-picchiavano-senza-pieta",
+    "date": "2001-07-29",
+    "time": "18:16:26",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "18",
+    "minute": "16",
+    "second": "26"
+  },
+  {
+    "id": 8694,
+    "heading": "Fascisti infiltrati: è dimostrato",
+    "created": "2001-07-29 19:31:04",
+    "linked_file": null,
+    "hugo": "8694-fascisti-infiltrati-e-dimostrato",
+    "date": "2001-07-29",
+    "time": "19:31:04",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "19",
+    "minute": "31",
+    "second": "04"
+  },
+  {
+    "id": 8238,
+    "heading": "bologna 24/07/01 manifestazione contro la violenza",
+    "created": "2001-07-29 20:57:25",
+    "linked_file": "2001/07/totale1.jpg",
+    "hugo": "8238-bologna-240701-manifestazione-contro-la-violenza",
+    "date": "2001-07-29",
+    "time": "20:57:25",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "20",
+    "minute": "57",
+    "second": "25"
+  },
+  {
+    "id": 10190,
+    "heading": "tr, fr,en, it ...) ainfos genoa info",
+    "created": "2001-07-29 20:57:51",
+    "linked_file": null,
+    "hugo": "10190-tr-fren-it-ainfos-genoa-info",
+    "date": "2001-07-29",
+    "time": "20:57:51",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "20",
+    "minute": "57",
+    "second": "51"
+  },
+  {
+    "id": 6681,
+    "heading": "Birthdata of CArlo Giuliani",
+    "created": "2001-07-29 21:13:43",
+    "linked_file": "2001/07/carlogiuliani.gif",
+    "hugo": "6681-birthdata-of-carlo-giuliani",
+    "date": "2001-07-29",
+    "time": "21:13:43",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "21",
+    "minute": "13",
+    "second": "43"
+  },
+  {
+    "id": 10138,
+    "heading": "L'ignoranza",
+    "created": "2001-07-29 23:57:23",
+    "linked_file": null,
+    "hugo": "10138-lignoranza",
+    "date": "2001-07-29",
+    "time": "23:57:23",
+    "year": "2001",
+    "month": "07",
+    "day": "29",
+    "hour": "23",
+    "minute": "57",
+    "second": "23"
+  },
+  {
+    "id": 9366,
+    "heading": "ECCO LA FOTO di un funzionario carcerario compliceGOM e storia documenta dei GOM",
+    "created": "2001-07-30 01:04:24",
+    "linked_file": "2001/07/dellavecchia1p6nvps9.jpg",
+    "hugo": "9366-ecco-la-foto-di-un-funzionario-carcerario-complicegom-e-storia-documenta-dei-gom",
+    "date": "2001-07-30",
+    "time": "01:04:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "01",
+    "minute": "04",
+    "second": "24"
+  },
+  {
+    "id": 10221,
+    "heading": "S-Top hopping!",
+    "created": "2001-07-30 02:35:24",
+    "linked_file": null,
+    "hugo": "10221-stop-hopping",
+    "date": "2001-07-30",
+    "time": "02:35:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "02",
+    "minute": "35",
+    "second": "24"
+  },
+  {
+    "id": 10224,
+    "heading": "Los Angeles, July 21",
+    "created": "2001-07-30 02:35:44",
+    "linked_file": "2001/07/in-italian.jpg",
+    "hugo": "10224-los-angeles-july-21",
+    "date": "2001-07-30",
+    "time": "02:35:44",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "02",
+    "minute": "35",
+    "second": "44"
+  },
+  {
+    "id": 10208,
+    "heading": "Cervelli in vacanza",
+    "created": "2001-07-30 03:05:04",
+    "linked_file": null,
+    "hugo": "10208-cervelli-in-vacanza",
+    "date": "2001-07-30",
+    "time": "03:05:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "05",
+    "second": "04"
+  },
+  {
+    "id": 10218,
+    "heading": "E' inutile colpire il cuore dello Stato",
+    "created": "2001-07-30 03:09:35",
+    "linked_file": null,
+    "hugo": "10218-e-inutile-colpire-il-cuore-dello-stato",
+    "date": "2001-07-30",
+    "time": "03:09:35",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "09",
+    "second": "35"
+  },
+  {
+    "id": 10162,
+    "heading": "Farnetico?",
+    "created": "2001-07-30 03:30:17",
+    "linked_file": null,
+    "hugo": "10162-farnetico",
+    "date": "2001-07-30",
+    "time": "03:30:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "30",
+    "second": "17"
+  },
+  {
+    "id": 10254,
+    "heading": "Looking for Legal Updates on Genoa",
+    "created": "2001-07-30 03:33:40",
+    "linked_file": "2001/07/legalindex.html",
+    "hugo": "10254-looking-for-legal-updates-on-genoa",
+    "date": "2001-07-30",
+    "time": "03:33:40",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "33",
+    "second": "40"
+  },
+  {
+    "id": 10137,
+    "heading": "SI, MA... GLI \"INTELLETTUALI\" DOVE SONO?",
+    "created": "2001-07-30 03:44:44",
+    "linked_file": null,
+    "hugo": "10137-si-ma-gli-intellettuali-dove-sono",
+    "date": "2001-07-30",
+    "time": "03:44:44",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "03",
+    "minute": "44",
+    "second": "44"
+  },
+  {
+    "id": 10083,
+    "heading": "ANCHE LA CHIESA CONDANNA LE VIOLENZE E CHIEDE INDAGINE",
+    "created": "2001-07-30 04:06:52",
+    "linked_file": null,
+    "hugo": "10083-anche-la-chiesa-condanna-le-violenze-e-chiede-indagine",
+    "date": "2001-07-30",
+    "time": "04:06:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "06",
+    "second": "52"
+  },
+  {
+    "id": 10151,
+    "heading": "Indignazione",
+    "created": "2001-07-30 04:08:49",
+    "linked_file": null,
+    "hugo": "10151-indignazione",
+    "date": "2001-07-30",
+    "time": "04:08:49",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "08",
+    "second": "49"
+  },
+  {
+    "id": 10172,
+    "heading": "Anarchia",
+    "created": "2001-07-30 04:22:30",
+    "linked_file": null,
+    "hugo": "10172-anarchia",
+    "date": "2001-07-30",
+    "time": "04:22:30",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "22",
+    "second": "30"
+  },
+  {
+    "id": 9613,
+    "heading": "99 Posse di ritorno da Genova",
+    "created": "2001-07-30 04:33:07",
+    "linked_file": null,
+    "hugo": "9613-99-posse-di-ritorno-da-genova",
+    "date": "2001-07-30",
+    "time": "04:33:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "33",
+    "second": "07"
+  },
+  {
+    "id": 8005,
+    "heading": "dopo",
+    "created": "2001-07-30 04:35:35",
+    "linked_file": "2001/07/dopozrayeu.jpg",
+    "hugo": "8005-dopo",
+    "date": "2001-07-30",
+    "time": "04:35:35",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "35",
+    "second": "35"
+  },
+  {
+    "id": 10205,
+    "heading": "weekend al buio",
+    "created": "2001-07-30 04:41:47",
+    "linked_file": null,
+    "hugo": "10205-weekend-al-buio",
+    "date": "2001-07-30",
+    "time": "04:41:47",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "41",
+    "second": "47"
+  },
+  {
+    "id": 10272,
+    "heading": "Berlusconi: \"Sinistra masochista io sto con la polizia\"",
+    "created": "2001-07-30 04:44:33",
+    "linked_file": null,
+    "hugo": "10272-berlusconi-sinistra-masochista-io-sto-con-la-polizia",
+    "date": "2001-07-30",
+    "time": "04:44:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "44",
+    "second": "33"
+  },
+  {
+    "id": 10214,
+    "heading": "ATTENZIONE: PER LA DIFFUSIONE DEL LIBRO BIANCO SUI FATTI DI GENOVA",
+    "created": "2001-07-30 04:57:25",
+    "linked_file": null,
+    "hugo": "10214-attenzione-per-la-diffusione-del-libro-bianco-sui-fatti-di-genova",
+    "date": "2001-07-30",
+    "time": "04:57:25",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "04",
+    "minute": "57",
+    "second": "25"
+  },
+  {
+    "id": 10276,
+    "heading": "\"Sinistra masochista io sto con la polizia\"",
+    "created": "2001-07-30 05:11:04",
+    "linked_file": null,
+    "hugo": "10276-sinistra-masochista-io-sto-con-la-polizia",
+    "date": "2001-07-30",
+    "time": "05:11:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "11",
+    "second": "04"
+  },
+  {
+    "id": 10286,
+    "heading": "Rapporto Genova a Scajola agenti-Gsf, confronto dai pm",
+    "created": "2001-07-30 05:29:52",
+    "linked_file": null,
+    "hugo": "10286-rapporto-genova-a-scajola-agentigsf-confronto-dai-pm",
+    "date": "2001-07-30",
+    "time": "05:29:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "29",
+    "second": "52"
+  },
+  {
+    "id": 9953,
+    "heading": "Comunicato di guerra.",
+    "created": "2001-07-30 05:35:06",
+    "linked_file": null,
+    "hugo": "9953-comunicato-di-guerra",
+    "date": "2001-07-30",
+    "time": "05:35:06",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "35",
+    "second": "06"
+  },
+  {
+    "id": 10285,
+    "heading": "Perquisizioni a Salerno",
+    "created": "2001-07-30 05:52:54",
+    "linked_file": null,
+    "hugo": "10285-perquisizioni-a-salerno",
+    "date": "2001-07-30",
+    "time": "05:52:54",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "05",
+    "minute": "52",
+    "second": "54"
+  },
+  {
+    "id": 10308,
+    "heading": "Italy investigates allegations of police brutality against protesters in Genoa",
+    "created": "2001-07-30 06:27:31",
+    "linked_file": null,
+    "hugo": "10308-italy-investigates-allegations-of-police-brutality-against-protesters-in-genoa",
+    "date": "2001-07-30",
+    "time": "06:27:31",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "27",
+    "second": "31"
+  },
+  {
+    "id": 10293,
+    "heading": "a trieste è già cominciata la persecuzione",
+    "created": "2001-07-30 06:37:00",
+    "linked_file": null,
+    "hugo": "10293-a-trieste-e-gia-cominciata-la-persecuzione",
+    "date": "2001-07-30",
+    "time": "06:37:00",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "37",
+    "second": "00"
+  },
+  {
+    "id": 10156,
+    "heading": "sui ragazzi scomparsi",
+    "created": "2001-07-30 06:37:53",
+    "linked_file": null,
+    "hugo": "10156-sui-ragazzi-scomparsi",
+    "date": "2001-07-30",
+    "time": "06:37:53",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "37",
+    "second": "53"
+  },
+  {
+    "id": 7080,
+    "heading": "Photos of Fascist action",
+    "created": "2001-07-30 06:39:50",
+    "linked_file": "2001/07/italy_blood_floors.jpg",
+    "hugo": "7080-photos-of-fascist-action",
+    "date": "2001-07-30",
+    "time": "06:39:50",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "39",
+    "second": "50"
+  },
+  {
+    "id": 10320,
+    "heading": "I nostri nemici",
+    "created": "2001-07-30 06:43:54",
+    "linked_file": null,
+    "hugo": "10320-i-nostri-nemici",
+    "date": "2001-07-30",
+    "time": "06:43:54",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "43",
+    "second": "54"
+  },
+  {
+    "id": 10348,
+    "heading": "my Genoa Report J13-22",
+    "created": "2001-07-30 06:52:49",
+    "linked_file": null,
+    "hugo": "10348-my-genoa-report-j1322",
+    "date": "2001-07-30",
+    "time": "06:52:49",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "52",
+    "second": "49"
+  },
+  {
+    "id": 10261,
+    "heading": "MISTERI DI ITALIA - INTERESSANTE",
+    "created": "2001-07-30 06:54:17",
+    "linked_file": null,
+    "hugo": "10261-misteri-di-italia-interessante",
+    "date": "2001-07-30",
+    "time": "06:54:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "06",
+    "minute": "54",
+    "second": "17"
+  },
+  {
+    "id": 10354,
+    "heading": "I NOMI DEI 70 POLIZIOTTI-MASSACRATORI DI GENOVA ALLA DIAZ LI HA IL PROCURATORE",
+    "created": "2001-07-30 07:00:46",
+    "linked_file": null,
+    "hugo": "10354-i-nomi-dei-70-poliziottimassacratori-di-genova-alla-diaz-li-ha-il-procuratore",
+    "date": "2001-07-30",
+    "time": "07:00:46",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "00",
+    "second": "46"
+  },
+  {
+    "id": 10183,
+    "heading": "IMC NEWS BLAST |  GENOA LEGAL AND HUMAN RIGHTS ISSUES",
+    "created": "2001-07-30 07:05:27",
+    "linked_file": null,
+    "hugo": "10183-imc-news-blast-genoa-legal-and-human-rights-issues",
+    "date": "2001-07-30",
+    "time": "07:05:27",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "05",
+    "second": "27"
+  },
+  {
+    "id": 10267,
+    "heading": "SIlenzio....",
+    "created": "2001-07-30 07:28:42",
+    "linked_file": null,
+    "hugo": "10267-silenzio",
+    "date": "2001-07-30",
+    "time": "07:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 10342,
+    "heading": "Massive Attack",
+    "created": "2001-07-30 07:33:42",
+    "linked_file": null,
+    "hugo": "10342-massive-attack",
+    "date": "2001-07-30",
+    "time": "07:33:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "33",
+    "second": "42"
+  },
+  {
+    "id": 10309,
+    "heading": "Perché nio?",
+    "created": "2001-07-30 07:35:06",
+    "linked_file": null,
+    "hugo": "10309-perche-nio",
+    "date": "2001-07-30",
+    "time": "07:35:06",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "35",
+    "second": "06"
+  },
+  {
+    "id": 10232,
+    "heading": "La sinistra abbandoni il parlamento....",
+    "created": "2001-07-30 07:41:05",
+    "linked_file": null,
+    "hugo": "10232-la-sinistra-abbandoni-il-parlamento",
+    "date": "2001-07-30",
+    "time": "07:41:05",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "41",
+    "second": "05"
+  },
+  {
+    "id": 10356,
+    "heading": "I NOMI DEI 70 POLIZIOTTI-MASSACRATORI DI GENOVA ALLA DIAZ LI HA IL PROCURATORE",
+    "created": "2001-07-30 07:44:01",
+    "linked_file": null,
+    "hugo": "10356-i-nomi-dei-70-poliziottimassacratori-di-genova-alla-diaz-li-ha-il-procuratore",
+    "date": "2001-07-30",
+    "time": "07:44:01",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "44",
+    "second": "01"
+  },
+  {
+    "id": 10391,
+    "heading": "Genova: rassegna stampa aggiornata",
+    "created": "2001-07-30 07:52:17",
+    "linked_file": null,
+    "hugo": "10391-genova-rassegna-stampa-aggiornata",
+    "date": "2001-07-30",
+    "time": "07:52:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "52",
+    "second": "17"
+  },
+  {
+    "id": 10260,
+    "heading": "l'estintore",
+    "created": "2001-07-30 07:53:18",
+    "linked_file": null,
+    "hugo": "10260-lestintore",
+    "date": "2001-07-30",
+    "time": "07:53:18",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "53",
+    "second": "18"
+  },
+  {
+    "id": 10235,
+    "heading": "Verità su Carlo x Carlo",
+    "created": "2001-07-30 07:55:52",
+    "linked_file": null,
+    "hugo": "10235-verita-su-carlo-x-carlo",
+    "date": "2001-07-30",
+    "time": "07:55:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "07",
+    "minute": "55",
+    "second": "52"
+  },
+  {
+    "id": 10244,
+    "heading": "chi è?",
+    "created": "2001-07-30 08:02:38",
+    "linked_file": null,
+    "hugo": "10244-chi-e",
+    "date": "2001-07-30",
+    "time": "08:02:38",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "02",
+    "second": "38"
+  },
+  {
+    "id": 10405,
+    "heading": "ATTENZIONE: PER LA DIFFUSIONE DEL LIBRO BIANCO SUI FATTI DI GENOVA",
+    "created": "2001-07-30 08:24:40",
+    "linked_file": null,
+    "hugo": "10405-attenzione-per-la-diffusione-del-libro-bianco-sui-fatti-di-genova",
+    "date": "2001-07-30",
+    "time": "08:24:40",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "24",
+    "second": "40"
+  },
+  {
+    "id": 10092,
+    "heading": "E' inutile colpire il cuore dello Stato.Lo stato non ha un cuore: ha solo un por",
+    "created": "2001-07-30 08:36:28",
+    "linked_file": null,
+    "hugo": "10092-e-inutile-colpire-il-cuore-dello-statolo-stato-non-ha-un-cuore-ha-solo-un-por",
+    "date": "2001-07-30",
+    "time": "08:36:28",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "36",
+    "second": "28"
+  },
+  {
+    "id": 10266,
+    "heading": "Ulivo e Polo",
+    "created": "2001-07-30 08:36:29",
+    "linked_file": null,
+    "hugo": "10266-ulivo-e-polo",
+    "date": "2001-07-30",
+    "time": "08:36:29",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "36",
+    "second": "29"
+  },
+  {
+    "id": 10287,
+    "heading": "Il figlio del capo della polizia(De Gennaro) operatore RAI a Genova",
+    "created": "2001-07-30 08:49:04",
+    "linked_file": null,
+    "hugo": "10287-il-figlio-del-capo-della-poliziade-gennaro-operatore-rai-a-genova",
+    "date": "2001-07-30",
+    "time": "08:49:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "08",
+    "minute": "49",
+    "second": "04"
+  },
+  {
+    "id": 8522,
+    "heading": "Scontri di venerdi 20",
+    "created": "2001-07-30 09:03:03",
+    "linked_file": "2001/07/7.jpg",
+    "hugo": "8522-scontri-di-venerdi-20",
+    "date": "2001-07-30",
+    "time": "09:03:03",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "03",
+    "second": "03"
+  },
+  {
+    "id": 10150,
+    "heading": "CONSIGLIO",
+    "created": "2001-07-30 09:08:14",
+    "linked_file": null,
+    "hugo": "10150-consiglio",
+    "date": "2001-07-30",
+    "time": "09:08:14",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "08",
+    "second": "14"
+  },
+  {
+    "id": 10097,
+    "heading": "Roberto Colaninno",
+    "created": "2001-07-30 09:11:57",
+    "linked_file": null,
+    "hugo": "10097-roberto-colaninno",
+    "date": "2001-07-30",
+    "time": "09:11:57",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "11",
+    "second": "57"
+  },
+  {
+    "id": 10362,
+    "heading": "super-violenti",
+    "created": "2001-07-30 09:22:55",
+    "linked_file": null,
+    "hugo": "10362-superviolenti",
+    "date": "2001-07-30",
+    "time": "09:22:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "22",
+    "second": "55"
+  },
+  {
+    "id": 9948,
+    "heading": "Assassini",
+    "created": "2001-07-30 09:35:48",
+    "linked_file": null,
+    "hugo": "9948-assassini",
+    "date": "2001-07-30",
+    "time": "09:35:48",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "35",
+    "second": "48"
+  },
+  {
+    "id": 10332,
+    "heading": "Consiglio da Compagno!",
+    "created": "2001-07-30 09:37:33",
+    "linked_file": null,
+    "hugo": "10332-consiglio-da-compagno",
+    "date": "2001-07-30",
+    "time": "09:37:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "37",
+    "second": "33"
+  },
+  {
+    "id": 10160,
+    "heading": "Italy in the dock, Our Government stands accused, too",
+    "created": "2001-07-30 09:41:56",
+    "linked_file": null,
+    "hugo": "10160-italy-in-the-dock-our-government-stands-accused-too",
+    "date": "2001-07-30",
+    "time": "09:41:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "41",
+    "second": "56"
+  },
+  {
+    "id": 10347,
+    "heading": "welcome to G Hate",
+    "created": "2001-07-30 09:42:28",
+    "linked_file": null,
+    "hugo": "10347-welcome-to-g-hate",
+    "date": "2001-07-30",
+    "time": "09:42:28",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "42",
+    "second": "28"
+  },
+  {
+    "id": 10468,
+    "heading": "Contromano: mi sa che sono stati profetici!!!!",
+    "created": "2001-07-30 09:53:59",
+    "linked_file": null,
+    "hugo": "10468-contromano-mi-sa-che-sono-stati-profetici",
+    "date": "2001-07-30",
+    "time": "09:53:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "53",
+    "second": "59"
+  },
+  {
+    "id": 10472,
+    "heading": "spettacolo su genova",
+    "created": "2001-07-30 09:55:37",
+    "linked_file": null,
+    "hugo": "10472-spettacolo-su-genova",
+    "date": "2001-07-30",
+    "time": "09:55:37",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "55",
+    "second": "37"
+  },
+  {
+    "id": 10473,
+    "heading": "F.A.Q. sul G8 a Genova",
+    "created": "2001-07-30 09:55:45",
+    "linked_file": null,
+    "hugo": "10473-faq-sul-g8-a-genova",
+    "date": "2001-07-30",
+    "time": "09:55:45",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "55",
+    "second": "45"
+  },
+  {
+    "id": 3657,
+    "heading": "Anti-G8 Demonstration in Athens at 19.30",
+    "created": "2001-07-30 09:58:31",
+    "linked_file": null,
+    "hugo": "3657-antig8-demonstration-in-athens-at-1930",
+    "date": "2001-07-30",
+    "time": "09:58:31",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "09",
+    "minute": "58",
+    "second": "31"
+  },
+  {
+    "id": 10480,
+    "heading": "sbirri news",
+    "created": "2001-07-30 10:03:41",
+    "linked_file": null,
+    "hugo": "10480-sbirri-news",
+    "date": "2001-07-30",
+    "time": "10:03:41",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "03",
+    "second": "41"
+  },
+  {
+    "id": 10373,
+    "heading": "carabinieri ? bravi ragazzi!!! gestori dell'ordine e portatori di pace",
+    "created": "2001-07-30 10:06:49",
+    "linked_file": null,
+    "hugo": "10373-carabinieri-bravi-ragazzi-gestori-dellordine-e-portatori-di-pace",
+    "date": "2001-07-30",
+    "time": "10:06:49",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "06",
+    "second": "49"
+  },
+  {
+    "id": 10482,
+    "heading": "Wait A Second",
+    "created": "2001-07-30 10:17:56",
+    "linked_file": null,
+    "hugo": "10482-wait-a-second",
+    "date": "2001-07-30",
+    "time": "10:17:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "17",
+    "second": "56"
+  },
+  {
+    "id": 9994,
+    "heading": "IL MURO DI GENOVA E QUELLO DI BERLINO: ANALOGIE",
+    "created": "2001-07-30 10:24:09",
+    "linked_file": "2001/07/mur03.jpg",
+    "hugo": "9994-il-muro-di-genova-e-quello-di-berlino-analogie",
+    "date": "2001-07-30",
+    "time": "10:24:09",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "24",
+    "second": "09"
+  },
+  {
+    "id": 10401,
+    "heading": "PROPOSTA ((SECONDO ME CONCRETA!!!!))",
+    "created": "2001-07-30 10:32:46",
+    "linked_file": null,
+    "hugo": "10401-proposta-secondo-me-concreta",
+    "date": "2001-07-30",
+    "time": "10:32:46",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "32",
+    "second": "46"
+  },
+  {
+    "id": 10466,
+    "heading": "BoBi",
+    "created": "2001-07-30 10:36:56",
+    "linked_file": null,
+    "hugo": "10466-bobi",
+    "date": "2001-07-30",
+    "time": "10:36:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "36",
+    "second": "56"
+  },
+  {
+    "id": 10442,
+    "heading": "Roma, 16:57 G8: capigruppo Ulivo, occorre commissione inchiesta",
+    "created": "2001-07-30 10:54:26",
+    "linked_file": null,
+    "hugo": "10442-roma-1657-g8-capigruppo-ulivo-occorre-commissione-inchiesta",
+    "date": "2001-07-30",
+    "time": "10:54:26",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "10",
+    "minute": "54",
+    "second": "26"
+  },
+  {
+    "id": 10416,
+    "heading": "PER ME CI SONO IN MEZZO GLI AMERICANI",
+    "created": "2001-07-30 11:01:39",
+    "linked_file": null,
+    "hugo": "10416-per-me-ci-sono-in-mezzo-gli-americani",
+    "date": "2001-07-30",
+    "time": "11:01:39",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "01",
+    "second": "39"
+  },
+  {
+    "id": 10498,
+    "heading": "\"MASSACRATI DI BOTTE? NON C'ENTRIAMO UN CAZZO\"continua lo show di SABELLA(INFOTO",
+    "created": "2001-07-30 11:13:34",
+    "linked_file": "2001/07/sabella1riux0m.jpg",
+    "hugo": "10498-massacrati-di-botte-non-centriamo-un-cazzocontinua-lo-show-di-sabellainfoto",
+    "date": "2001-07-30",
+    "time": "11:13:34",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "13",
+    "second": "34"
+  },
+  {
+    "id": 10409,
+    "heading": "What special Force is the GOM",
+    "created": "2001-07-30 11:17:01",
+    "linked_file": null,
+    "hugo": "10409-what-special-force-is-the-gom",
+    "date": "2001-07-30",
+    "time": "11:17:01",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "17",
+    "second": "01"
+  },
+  {
+    "id": 10467,
+    "heading": "chi mi spia?",
+    "created": "2001-07-30 11:21:55",
+    "linked_file": null,
+    "hugo": "10467-chi-mi-spia",
+    "date": "2001-07-30",
+    "time": "11:21:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "21",
+    "second": "55"
+  },
+  {
+    "id": 10423,
+    "heading": "Chi sono i GOM",
+    "created": "2001-07-30 11:45:55",
+    "linked_file": null,
+    "hugo": "10423-chi-sono-i-gom",
+    "date": "2001-07-30",
+    "time": "11:45:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "45",
+    "second": "55"
+  },
+  {
+    "id": 10434,
+    "heading": "guardie penitenziarie",
+    "created": "2001-07-30 11:52:58",
+    "linked_file": null,
+    "hugo": "10434-guardie-penitenziarie",
+    "date": "2001-07-30",
+    "time": "11:52:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "52",
+    "second": "58"
+  },
+  {
+    "id": 10496,
+    "heading": "\"MASSACRATI DI BOTTE? NON C'ENTRIAMO UN CAZZO\"continua lo show di SABELLA(INFOTO",
+    "created": "2001-07-30 11:53:59",
+    "linked_file": "2001/07/sabella12zhxhx.jpg",
+    "hugo": "10496-massacrati-di-botte-non-centriamo-un-cazzocontinua-lo-show-di-sabellainfoto",
+    "date": "2001-07-30",
+    "time": "11:53:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "11",
+    "minute": "53",
+    "second": "59"
+  },
+  {
+    "id": 10404,
+    "heading": "Lettera alle forze dell'ordine",
+    "created": "2001-07-30 12:03:22",
+    "linked_file": null,
+    "hugo": "10404-lettera-alle-forze-dellordine",
+    "date": "2001-07-30",
+    "time": "12:03:22",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "03",
+    "second": "22"
+  },
+  {
+    "id": 10502,
+    "heading": "Greece, 20-27 July, Solidarity Actions with Genova.",
+    "created": "2001-07-30 12:04:24",
+    "linked_file": null,
+    "hugo": "10502-greece-2027-july-solidarity-actions-with-genova",
+    "date": "2001-07-30",
+    "time": "12:04:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "04",
+    "second": "24"
+  },
+  {
+    "id": 10324,
+    "heading": "i peggiori",
+    "created": "2001-07-30 12:09:45",
+    "linked_file": null,
+    "hugo": "10324-i-peggiori",
+    "date": "2001-07-30",
+    "time": "12:09:45",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "09",
+    "second": "45"
+  },
+  {
+    "id": 10522,
+    "heading": "2 articoli da Repubblica: F. Rampini e M.Vargas Llosa",
+    "created": "2001-07-30 12:11:08",
+    "linked_file": null,
+    "hugo": "10522-2-articoli-da-repubblica-f-rampini-e-mvargas-llosa",
+    "date": "2001-07-30",
+    "time": "12:11:08",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "11",
+    "second": "08"
+  },
+  {
+    "id": 6304,
+    "heading": "Addio Carlo! (2)",
+    "created": "2001-07-30 12:11:59",
+    "linked_file": "2001/07/carlo_giuliani2ofrd1.jpg",
+    "hugo": "6304-addio-carlo-2",
+    "date": "2001-07-30",
+    "time": "12:11:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "11",
+    "second": "59"
+  },
+  {
+    "id": 10299,
+    "heading": "Genoa revisted",
+    "created": "2001-07-30 12:12:51",
+    "linked_file": null,
+    "hugo": "10299-genoa-revisted",
+    "date": "2001-07-30",
+    "time": "12:12:51",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "12",
+    "second": "51"
+  },
+  {
+    "id": 10528,
+    "heading": "Come è stato ucciso Carlo Giuliani - Il Manifesto (sulla nova serie di foto)",
+    "created": "2001-07-30 12:37:56",
+    "linked_file": null,
+    "hugo": "10528-come-e-stato-ucciso-carlo-giuliani-il-manifesto-sulla-nova-serie-di-foto",
+    "date": "2001-07-30",
+    "time": "12:37:56",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "37",
+    "second": "56"
+  },
+  {
+    "id": 10387,
+    "heading": "dita del CC su estintre",
+    "created": "2001-07-30 12:48:05",
+    "linked_file": "2001/07/particolare_estintore_dita.jpg",
+    "hugo": "10387-dita-del-cc-su-estintre",
+    "date": "2001-07-30",
+    "time": "12:48:05",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "12",
+    "minute": "48",
+    "second": "05"
+  },
+  {
+    "id": 9478,
+    "heading": "Boston, Ma., USA Giuliani Solidarity Protest!",
+    "created": "2001-07-30 13:01:09",
+    "linked_file": null,
+    "hugo": "9478-boston-ma-usa-giuliani-solidarity-protest",
+    "date": "2001-07-30",
+    "time": "13:01:09",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "01",
+    "second": "09"
+  },
+  {
+    "id": 10507,
+    "heading": "***IMPORTANTE*** I GIUDICI CERCANO TESTIMONI ***IMPORTANTE***",
+    "created": "2001-07-30 13:25:14",
+    "linked_file": null,
+    "hugo": "10507-importante-i-giudici-cercano-testimoni-importante",
+    "date": "2001-07-30",
+    "time": "13:25:14",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "25",
+    "second": "14"
+  },
+  {
+    "id": 10541,
+    "heading": "caserma Italia3",
+    "created": "2001-07-30 13:34:17",
+    "linked_file": "2001/07/caserma2.jpg",
+    "hugo": "10541-caserma-italia3",
+    "date": "2001-07-30",
+    "time": "13:34:17",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "34",
+    "second": "17"
+  },
+  {
+    "id": 10544,
+    "heading": "lacrimogeni2",
+    "created": "2001-07-30 13:42:58",
+    "linked_file": "2001/07/lacrimogeni2.jpg",
+    "hugo": "10544-lacrimogeni2",
+    "date": "2001-07-30",
+    "time": "13:42:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "42",
+    "second": "58"
+  },
+  {
+    "id": 10545,
+    "heading": "matadores",
+    "created": "2001-07-30 13:46:36",
+    "linked_file": "2001/07/matadores.jpg",
+    "hugo": "10545-matadores",
+    "date": "2001-07-30",
+    "time": "13:46:36",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "46",
+    "second": "36"
+  },
+  {
+    "id": 10549,
+    "heading": "MANIFESTAZIONE A  TREVISO",
+    "created": "2001-07-30 13:57:42",
+    "linked_file": "2001/07/treviso1.jpg",
+    "hugo": "10549-manifestazione-a-treviso",
+    "date": "2001-07-30",
+    "time": "13:57:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "13",
+    "minute": "57",
+    "second": "42"
+  },
+  {
+    "id": 10550,
+    "heading": "TREVISO2",
+    "created": "2001-07-30 14:00:10",
+    "linked_file": "2001/07/treviso2.jpg",
+    "hugo": "10550-treviso2",
+    "date": "2001-07-30",
+    "time": "14:00:10",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "00",
+    "second": "10"
+  },
+  {
+    "id": 10306,
+    "heading": "Città + sicure",
+    "created": "2001-07-30 14:24:53",
+    "linked_file": "2001/07/pi_sicure01.jpg",
+    "hugo": "10306-citta-+-sicure",
+    "date": "2001-07-30",
+    "time": "14:24:53",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "24",
+    "second": "53"
+  },
+  {
+    "id": 10557,
+    "heading": "Action of solidarity in Kyiv, Ukraine",
+    "created": "2001-07-30 14:28:42",
+    "linked_file": null,
+    "hugo": "10557-action-of-solidarity-in-kyiv-ukraine",
+    "date": "2001-07-30",
+    "time": "14:28:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "28",
+    "second": "42"
+  },
+  {
+    "id": 10558,
+    "heading": "President(ciampi)wants answers on G8 violence",
+    "created": "2001-07-30 14:29:21",
+    "linked_file": null,
+    "hugo": "10558-presidentciampiwants-answers-on-g8-violence",
+    "date": "2001-07-30",
+    "time": "14:29:21",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "29",
+    "second": "21"
+  },
+  {
+    "id": 10561,
+    "heading": "G8, interviene Ciampi \"Sia fatta piena luce\"",
+    "created": "2001-07-30 14:44:52",
+    "linked_file": null,
+    "hugo": "10561-g8-interviene-ciampi-sia-fatta-piena-luce",
+    "date": "2001-07-30",
+    "time": "14:44:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "44",
+    "second": "52"
+  },
+  {
+    "id": 10563,
+    "heading": "Il Papa/ The Pope",
+    "created": "2001-07-30 14:45:33",
+    "linked_file": null,
+    "hugo": "10563-il-papa-the-pope",
+    "date": "2001-07-30",
+    "time": "14:45:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "14",
+    "minute": "45",
+    "second": "33"
+  },
+  {
+    "id": 10567,
+    "heading": "Picture of solidarity action in Kyiv, Ukraine (2)",
+    "created": "2001-07-30 15:02:51",
+    "linked_file": "2001/07/j27_10_small.jpg",
+    "hugo": "10567-picture-of-solidarity-action-in-kyiv-ukraine-2",
+    "date": "2001-07-30",
+    "time": "15:02:51",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "02",
+    "second": "51"
+  },
+  {
+    "id": 10568,
+    "heading": "G8, da domani la procura interrogherà i poliziotti",
+    "created": "2001-07-30 15:02:52",
+    "linked_file": null,
+    "hugo": "10568-g8-da-domani-la-procura-interroghera-i-poliziotti",
+    "date": "2001-07-30",
+    "time": "15:02:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "02",
+    "second": "52"
+  },
+  {
+    "id": 10381,
+    "heading": "Sequenza uscita estintore",
+    "created": "2001-07-30 15:10:34",
+    "linked_file": "2001/07/uscita_estintore.jpg",
+    "hugo": "10381-sequenza-uscita-estintore",
+    "date": "2001-07-30",
+    "time": "15:10:34",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "10",
+    "second": "34"
+  },
+  {
+    "id": 10571,
+    "heading": " 20th of August: Global Action Day for Genoa: Our resistance continues!",
+    "created": "2001-07-30 15:10:57",
+    "linked_file": null,
+    "hugo": "10571-20th-of-august-global-action-day-for-genoa-our-resistance-continues",
+    "date": "2001-07-30",
+    "time": "15:10:57",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "10",
+    "second": "57"
+  },
+  {
+    "id": 10572,
+    "heading": "Picture from solidarity action in Kyiv, Ukraine (3)",
+    "created": "2001-07-30 15:11:07",
+    "linked_file": "2001/07/j27_06_small.jpg",
+    "hugo": "10572-picture-from-solidarity-action-in-kyiv-ukraine-3",
+    "date": "2001-07-30",
+    "time": "15:11:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "11",
+    "second": "07"
+  },
+  {
+    "id": 10552,
+    "heading": "PASSAGGIO DEI BLACK BLOCKS",
+    "created": "2001-07-30 15:11:57",
+    "linked_file": "2001/07/wearewinning.jpg",
+    "hugo": "10552-passaggio-dei-black-blocks",
+    "date": "2001-07-30",
+    "time": "15:11:57",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "11",
+    "second": "57"
+  },
+  {
+    "id": 10576,
+    "heading": "Picture from solidaruty action in Kyiv, Ukraine (4)",
+    "created": "2001-07-30 15:16:15",
+    "linked_file": "2001/07/j27_04_small.jpg",
+    "hugo": "10576-picture-from-solidaruty-action-in-kyiv-ukraine-4",
+    "date": "2001-07-30",
+    "time": "15:16:15",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "16",
+    "second": "15"
+  },
+  {
+    "id": 10578,
+    "heading": "Picture form the solidarity action in Kyiv, Ukraine (5)",
+    "created": "2001-07-30 15:21:23",
+    "linked_file": "2001/07/j27_07_small.jpg",
+    "hugo": "10578-picture-form-the-solidarity-action-in-kyiv-ukraine-5",
+    "date": "2001-07-30",
+    "time": "15:21:23",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "21",
+    "second": "23"
+  },
+  {
+    "id": 10581,
+    "heading": "I MEZZI DI DIFESA",
+    "created": "2001-07-30 15:26:38",
+    "linked_file": "2001/07/senza_titolo-40.jpg",
+    "hugo": "10581-i-mezzi-di-difesa",
+    "date": "2001-07-30",
+    "time": "15:26:38",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "26",
+    "second": "38"
+  },
+  {
+    "id": 10495,
+    "heading": "\"MASSACRATI DI BOTTE? NON C'ENTRIAMO UN CAZZO\"continua lo show di SABELLA(INFOTO",
+    "created": "2001-07-30 15:28:55",
+    "linked_file": "2001/07/sabella1ebw8sb.jpg",
+    "hugo": "10495-massacrati-di-botte-non-centriamo-un-cazzocontinua-lo-show-di-sabellainfoto",
+    "date": "2001-07-30",
+    "time": "15:28:55",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "28",
+    "second": "55"
+  },
+  {
+    "id": 10564,
+    "heading": "SOLIDARITY BETWEEN DEMONSTRATORS",
+    "created": "2001-07-30 15:30:09",
+    "linked_file": "2001/07/senza_titolo-133q1maiq.jpg",
+    "hugo": "10564-solidarity-between-demonstrators",
+    "date": "2001-07-30",
+    "time": "15:30:09",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "30",
+    "second": "09"
+  },
+  {
+    "id": 10548,
+    "heading": "GENOVESI",
+    "created": "2001-07-30 15:36:45",
+    "linked_file": "2001/07/people1.jpg",
+    "hugo": "10548-genovesi",
+    "date": "2001-07-30",
+    "time": "15:36:45",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "36",
+    "second": "45"
+  },
+  {
+    "id": 10584,
+    "heading": "Tattica e Strategia",
+    "created": "2001-07-30 15:45:30",
+    "linked_file": null,
+    "hugo": "10584-tattica-e-strategia",
+    "date": "2001-07-30",
+    "time": "15:45:30",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "15",
+    "minute": "45",
+    "second": "30"
+  },
+  {
+    "id": 2992,
+    "heading": "Digos al Carlini - intervista audio [it]",
+    "created": "2001-07-30 16:07:24",
+    "linked_file": "2001/07/carlini.mp3",
+    "hugo": "2992-digos-al-carlini-intervista-audio-it",
+    "date": "2001-07-30",
+    "time": "16:07:24",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "07",
+    "second": "24"
+  },
+  {
+    "id": 10593,
+    "heading": "final score : riots - Genoa 1 0 , riots - democracy 1 0",
+    "created": "2001-07-30 16:18:52",
+    "linked_file": "2001/07/senza_titolo-132.jpg",
+    "hugo": "10593-final-score-riots-genoa-1-0-riots-democracy-1-0",
+    "date": "2001-07-30",
+    "time": "16:18:52",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "18",
+    "second": "52"
+  },
+  {
+    "id": 10596,
+    "heading": "GIORNATA GLOBALE DI AZIONI:solidarietà con le/i prigioniere/i di Genova!",
+    "created": "2001-07-30 16:21:07",
+    "linked_file": null,
+    "hugo": "10596-giornata-globale-di-azionisolidarieta-con-lei-prigionierei-di-genova",
+    "date": "2001-07-30",
+    "time": "16:21:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "21",
+    "second": "07"
+  },
+  {
+    "id": 10598,
+    "heading": "Thanks to the anarchist",
+    "created": "2001-07-30 16:27:33",
+    "linked_file": null,
+    "hugo": "10598-thanks-to-the-anarchist",
+    "date": "2001-07-30",
+    "time": "16:27:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "27",
+    "second": "33"
+  },
+  {
+    "id": 10113,
+    "heading": "Radio sherwood introvabile",
+    "created": "2001-07-30 16:28:33",
+    "linked_file": null,
+    "hugo": "10113-radio-sherwood-introvabile",
+    "date": "2001-07-30",
+    "time": "16:28:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "28",
+    "second": "33"
+  },
+  {
+    "id": 10543,
+    "heading": "lacrimogeni1",
+    "created": "2001-07-30 16:32:42",
+    "linked_file": "2001/07/lacrimogeni1.jpg",
+    "hugo": "10543-lacrimogeni1",
+    "date": "2001-07-30",
+    "time": "16:32:42",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "32",
+    "second": "42"
+  },
+  {
+    "id": 10580,
+    "heading": "I MEZZI DI DIFESA",
+    "created": "2001-07-30 16:51:05",
+    "linked_file": null,
+    "hugo": "10580-i-mezzi-di-difesa",
+    "date": "2001-07-30",
+    "time": "16:51:05",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "51",
+    "second": "05"
+  },
+  {
+    "id": 10539,
+    "heading": "di nuovo a genova",
+    "created": "2001-07-30 16:52:14",
+    "linked_file": null,
+    "hugo": "10539-di-nuovo-a-genova",
+    "date": "2001-07-30",
+    "time": "16:52:14",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "16",
+    "minute": "52",
+    "second": "14"
+  },
+  {
+    "id": 10615,
+    "heading": "trieste, mobilitazione in vista",
+    "created": "2001-07-30 17:21:18",
+    "linked_file": null,
+    "hugo": "10615-trieste-mobilitazione-in-vista",
+    "date": "2001-07-30",
+    "time": "17:21:18",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "21",
+    "second": "18"
+  },
+  {
+    "id": 10497,
+    "heading": "IL FORTINO INESPUGNABILE...",
+    "created": "2001-07-30 17:24:00",
+    "linked_file": "2001/07/caserma1.jpg",
+    "hugo": "10497-il-fortino-inespugnabile",
+    "date": "2001-07-30",
+    "time": "17:24:00",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "24",
+    "second": "00"
+  },
+  {
+    "id": 10608,
+    "heading": "questo e' un movimento sociale!",
+    "created": "2001-07-30 17:27:16",
+    "linked_file": null,
+    "hugo": "10608-questo-e-un-movimento-sociale",
+    "date": "2001-07-30",
+    "time": "17:27:16",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "27",
+    "second": "16"
+  },
+  {
+    "id": 10601,
+    "heading": "Vive l'anarchie!",
+    "created": "2001-07-30 17:29:47",
+    "linked_file": null,
+    "hugo": "10601-vive-lanarchie",
+    "date": "2001-07-30",
+    "time": "17:29:47",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "29",
+    "second": "47"
+  },
+  {
+    "id": 10604,
+    "heading": "una polemica spero costruttiva",
+    "created": "2001-07-30 17:34:11",
+    "linked_file": null,
+    "hugo": "10604-una-polemica-spero-costruttiva",
+    "date": "2001-07-30",
+    "time": "17:34:11",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "34",
+    "second": "11"
+  },
+  {
+    "id": 10625,
+    "heading": "PNWER: Corporate Colony or Regional Autonomy?",
+    "created": "2001-07-30 17:39:27",
+    "linked_file": null,
+    "hugo": "10625-pnwer-corporate-colony-or-regional-autonomy",
+    "date": "2001-07-30",
+    "time": "17:39:27",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "39",
+    "second": "27"
+  },
+  {
+    "id": 10627,
+    "heading": "Città piu' sicure2-3",
+    "created": "2001-07-30 17:40:04",
+    "linked_file": "2001/07/pi_sicure0292upfx.jpg",
+    "hugo": "10627-citta-piu-sicure23",
+    "date": "2001-07-30",
+    "time": "17:40:04",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "40",
+    "second": "04"
+  },
+  {
+    "id": 10628,
+    "heading": "Sherwood.it = irraggiungibile. Postare nuovasequenza foto \"estintore-camionetta\"",
+    "created": "2001-07-30 17:45:58",
+    "linked_file": null,
+    "hugo": "10628-sherwoodit-irraggiungibile-postare-nuovasequenza-foto-estintorecamionetta",
+    "date": "2001-07-30",
+    "time": "17:45:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "45",
+    "second": "58"
+  },
+  {
+    "id": 10632,
+    "heading": "New illustration about Carlo Giuliani's murder (free distribution)",
+    "created": "2001-07-30 17:56:08",
+    "linked_file": "2001/07/carloywzpjt.gif",
+    "hugo": "10632-new-illustration-about-carlo-giulianis-murder-free-distribution",
+    "date": "2001-07-30",
+    "time": "17:56:08",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "17",
+    "minute": "56",
+    "second": "08"
+  },
+  {
+    "id": 10639,
+    "heading": "Infiltrazioni BBlock nel corteo del 21",
+    "created": "2001-07-30 18:04:07",
+    "linked_file": "2001/07/001bb.jpg",
+    "hugo": "10639-infiltrazioni-bblock-nel-corteo-del-21",
+    "date": "2001-07-30",
+    "time": "18:04:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "04",
+    "second": "07"
+  },
+  {
+    "id": 10559,
+    "heading": "Action of solidarity in Kyiv, Ukraine",
+    "created": "2001-07-30 18:11:58",
+    "linked_file": null,
+    "hugo": "10559-action-of-solidarity-in-kyiv-ukraine",
+    "date": "2001-07-30",
+    "time": "18:11:58",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "11",
+    "second": "58"
+  },
+  {
+    "id": 10635,
+    "heading": "saluti",
+    "created": "2001-07-30 18:20:39",
+    "linked_file": "2001/07/brazil_large_12.jpg",
+    "hugo": "10635-saluti",
+    "date": "2001-07-30",
+    "time": "18:20:39",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "20",
+    "second": "39"
+  },
+  {
+    "id": 10527,
+    "heading": "tutto il mondo ha visto",
+    "created": "2001-07-30 18:30:07",
+    "linked_file": "2001/07/senza_titolo-136.jpg",
+    "hugo": "10527-tutto-il-mondo-ha-visto",
+    "date": "2001-07-30",
+    "time": "18:30:07",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "30",
+    "second": "07"
+  },
+  {
+    "id": 10655,
+    "heading": "guardie infami",
+    "created": "2001-07-30 18:33:33",
+    "linked_file": "2001/07/4dyiayc.jpg",
+    "hugo": "10655-guardie-infami",
+    "date": "2001-07-30",
+    "time": "18:33:33",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "33",
+    "second": "33"
+  },
+  {
+    "id": 10587,
+    "heading": "La polizia pesta un \"violento\"/Police beat up a \"violent\"",
+    "created": "2001-07-30 18:40:59",
+    "linked_file": "2001/07/bastardi_v01.rm",
+    "hugo": "10587-la-polizia-pesta-un-violentopolice-beat-up-a-violent",
+    "date": "2001-07-30",
+    "time": "18:40:59",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "40",
+    "second": "59"
+  },
+  {
+    "id": 10586,
+    "heading": "scomparsi ?",
+    "created": "2001-07-30 18:47:06",
+    "linked_file": null,
+    "hugo": "10586-scomparsi-",
+    "date": "2001-07-30",
+    "time": "18:47:06",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "18",
+    "minute": "47",
+    "second": "06"
+  },
+  {
+    "id": 10353,
+    "heading": "Attacco di pirati nella notte di domenica:",
+    "created": "2001-07-30 19:54:32",
+    "linked_file": null,
+    "hugo": "10353-attacco-di-pirati-nella-notte-di-domenica",
+    "date": "2001-07-30",
+    "time": "19:54:32",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "19",
+    "minute": "54",
+    "second": "32"
+  },
+  {
+    "id": 10672,
+    "heading": "(en) Italy, FdCA Statement THE INTERNATIONAL FIGHT AGAINST NEO-LIBERALISM",
+    "created": "2001-07-30 20:15:29",
+    "linked_file": null,
+    "hugo": "10672-en-italy-fdca-statement-the-international-fight-against-neoliberalism",
+    "date": "2001-07-30",
+    "time": "20:15:29",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "20",
+    "minute": "15",
+    "second": "29"
+  },
+  {
+    "id": 10674,
+    "heading": "schnews on genoa",
+    "created": "2001-07-30 20:28:44",
+    "linked_file": null,
+    "hugo": "10674-schnews-on-genoa",
+    "date": "2001-07-30",
+    "time": "20:28:44",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "20",
+    "minute": "28",
+    "second": "44"
+  },
+  {
+    "id": 10016,
+    "heading": "Call for volunteers for Genoa Oct20-21",
+    "created": "2001-07-30 20:52:50",
+    "linked_file": "2001/07/volunteer1rydoi.html",
+    "hugo": "10016-call-for-volunteers-for-genoa-oct2021",
+    "date": "2001-07-30",
+    "time": "20:52:50",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "20",
+    "minute": "52",
+    "second": "50"
+  },
+  {
+    "id": 10408,
+    "heading": "violante & Co.",
+    "created": "2001-07-30 22:06:02",
+    "linked_file": null,
+    "hugo": "10408-violante-co",
+    "date": "2001-07-30",
+    "time": "22:06:02",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "22",
+    "minute": "06",
+    "second": "02"
+  },
+  {
+    "id": 10683,
+    "heading": "\"The Never-Ending Wrong\"",
+    "created": "2001-07-30 23:09:32",
+    "linked_file": null,
+    "hugo": "10683-the-neverending-wrong",
+    "date": "2001-07-30",
+    "time": "23:09:32",
+    "year": "2001",
+    "month": "07",
+    "day": "30",
+    "hour": "23",
+    "minute": "09",
+    "second": "32"
+  },
+  {
+    "id": 10686,
+    "heading": "non solo balle...ma pure ridicole",
+    "created": "2001-07-31 00:35:50",
+    "linked_file": null,
+    "hugo": "10686-non-solo-ballema-pure-ridicole",
+    "date": "2001-07-31",
+    "time": "00:35:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "00",
+    "minute": "35",
+    "second": "50"
+  },
+  {
+    "id": 10618,
+    "heading": "VIRGILIO, INVITO AL NETSTRIKE",
+    "created": "2001-07-31 00:40:03",
+    "linked_file": null,
+    "hugo": "10618-virgilio-invito-al-netstrike",
+    "date": "2001-07-31",
+    "time": "00:40:03",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "00",
+    "minute": "40",
+    "second": "03"
+  },
+  {
+    "id": 10689,
+    "heading": "TODOS SOMOS BLACK BLOC",
+    "created": "2001-07-31 00:41:24",
+    "linked_file": "2001/07/brazil_large_12_copy.jpg",
+    "hugo": "10689-todos-somos-black-bloc",
+    "date": "2001-07-31",
+    "time": "00:41:24",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "00",
+    "minute": "41",
+    "second": "24"
+  },
+  {
+    "id": 10695,
+    "heading": "Genova ,lot's of stories on this link (en)",
+    "created": "2001-07-31 01:34:12",
+    "linked_file": null,
+    "hugo": "10695-genova-lots-of-stories-on-this-link-en",
+    "date": "2001-07-31",
+    "time": "01:34:12",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "01",
+    "minute": "34",
+    "second": "12"
+  },
+  {
+    "id": 10696,
+    "heading": "1970-2001",
+    "created": "2001-07-31 02:02:54",
+    "linked_file": null,
+    "hugo": "10696-19702001",
+    "date": "2001-07-31",
+    "time": "02:02:54",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "02",
+    "second": "54"
+  },
+  {
+    "id": 10675,
+    "heading": "genoa report on police violence - horrific",
+    "created": "2001-07-31 02:16:40",
+    "linked_file": null,
+    "hugo": "10675-genoa-report-on-police-violence-horrific",
+    "date": "2001-07-31",
+    "time": "02:16:40",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "16",
+    "second": "40"
+  },
+  {
+    "id": 10636,
+    "heading": "Deputati di AN in questura a \"guidare\" i celerini?",
+    "created": "2001-07-31 02:20:15",
+    "linked_file": null,
+    "hugo": "10636-deputati-di-an-in-questura-a-guidare-i-celerini",
+    "date": "2001-07-31",
+    "time": "02:20:15",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "20",
+    "second": "15"
+  },
+  {
+    "id": 10512,
+    "heading": "Chi sono i GOM",
+    "created": "2001-07-31 02:26:53",
+    "linked_file": null,
+    "hugo": "10512-chi-sono-i-gom",
+    "date": "2001-07-31",
+    "time": "02:26:53",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "26",
+    "second": "53"
+  },
+  {
+    "id": 10538,
+    "heading": "death and terror in genoa",
+    "created": "2001-07-31 02:40:29",
+    "linked_file": null,
+    "hugo": "10538-death-and-terror-in-genoa",
+    "date": "2001-07-31",
+    "time": "02:40:29",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "40",
+    "second": "29"
+  },
+  {
+    "id": 10710,
+    "heading": "G8, i superispettori \"Errori e violenze\"",
+    "created": "2001-07-31 02:42:11",
+    "linked_file": null,
+    "hugo": "10710-g8-i-superispettori-errori-e-violenze",
+    "date": "2001-07-31",
+    "time": "02:42:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "42",
+    "second": "11"
+  },
+  {
+    "id": 10713,
+    "heading": "en) UK, Manchester Genoa solidarity actions & leaflet text",
+    "created": "2001-07-31 02:52:18",
+    "linked_file": null,
+    "hugo": "10713-en-uk-manchester-genoa-solidarity-actions-leaflet-text",
+    "date": "2001-07-31",
+    "time": "02:52:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "52",
+    "second": "18"
+  },
+  {
+    "id": 10714,
+    "heading": "infiltrati nazi",
+    "created": "2001-07-31 02:52:18",
+    "linked_file": null,
+    "hugo": "10714-infiltrati-nazi",
+    "date": "2001-07-31",
+    "time": "02:52:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "52",
+    "second": "18"
+  },
+  {
+    "id": 10643,
+    "heading": "nuova sequenza foto",
+    "created": "2001-07-31 02:58:00",
+    "linked_file": null,
+    "hugo": "10643-nuova-sequenza-foto",
+    "date": "2001-07-31",
+    "time": "02:58:00",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "02",
+    "minute": "58",
+    "second": "00"
+  },
+  {
+    "id": 10641,
+    "heading": "nuova sequenza foto",
+    "created": "2001-07-31 03:03:17",
+    "linked_file": null,
+    "hugo": "10641-nuova-sequenza-foto",
+    "date": "2001-07-31",
+    "time": "03:03:17",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "03",
+    "minute": "03",
+    "second": "17"
+  },
+  {
+    "id": 9622,
+    "heading": "Prisoner solidarity action in Hamburg, Germany",
+    "created": "2001-07-31 03:28:53",
+    "linked_file": "2001/07/funeral1.jpg",
+    "hugo": "9622-prisoner-solidarity-action-in-hamburg-germany",
+    "date": "2001-07-31",
+    "time": "03:28:53",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "03",
+    "minute": "28",
+    "second": "53"
+  },
+  {
+    "id": 10694,
+    "heading": "Articolo di Scalzone",
+    "created": "2001-07-31 03:51:02",
+    "linked_file": null,
+    "hugo": "10694-articolo-di-scalzone",
+    "date": "2001-07-31",
+    "time": "03:51:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "03",
+    "minute": "51",
+    "second": "02"
+  },
+  {
+    "id": 10704,
+    "heading": "buoni e cattivi",
+    "created": "2001-07-31 04:04:47",
+    "linked_file": null,
+    "hugo": "10704-buoni-e-cattivi",
+    "date": "2001-07-31",
+    "time": "04:04:47",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "04",
+    "minute": "04",
+    "second": "47"
+  },
+  {
+    "id": 10707,
+    "heading": "Ge2021 WebRing",
+    "created": "2001-07-31 04:19:50",
+    "linked_file": null,
+    "hugo": "10707-ge2021-webring",
+    "date": "2001-07-31",
+    "time": "04:19:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "04",
+    "minute": "19",
+    "second": "50"
+  },
+  {
+    "id": 10729,
+    "heading": "il sistema è violento!",
+    "created": "2001-07-31 04:23:47",
+    "linked_file": null,
+    "hugo": "10729-il-sistema-e-violento",
+    "date": "2001-07-31",
+    "time": "04:23:47",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "04",
+    "minute": "23",
+    "second": "47"
+  },
+  {
+    "id": 10718,
+    "heading": "resistenza a pubblico ufficiale?",
+    "created": "2001-07-31 05:39:47",
+    "linked_file": null,
+    "hugo": "10718-resistenza-a-pubblico-ufficiale",
+    "date": "2001-07-31",
+    "time": "05:39:47",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "05",
+    "minute": "39",
+    "second": "47"
+  },
+  {
+    "id": 10357,
+    "heading": "Ribadisco:l'orario della \"perquisizione\" alla Diaz, non torna!!",
+    "created": "2001-07-31 06:11:59",
+    "linked_file": "2001/07/orariostrano_22anzich_00_.gif",
+    "hugo": "10357-ribadiscolorario-della-perquisizione-alla-diaz-non-torna",
+    "date": "2001-07-31",
+    "time": "06:11:59",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "11",
+    "second": "59"
+  },
+  {
+    "id": 10765,
+    "heading": "Italy: Surviving Instability",
+    "created": "2001-07-31 06:33:31",
+    "linked_file": null,
+    "hugo": "10765-italy-surviving-instability",
+    "date": "2001-07-31",
+    "time": "06:33:31",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "33",
+    "second": "31"
+  },
+  {
+    "id": 10754,
+    "heading": "we are winning  !!!!",
+    "created": "2001-07-31 06:44:13",
+    "linked_file": null,
+    "hugo": "10754-we-are-winning-",
+    "date": "2001-07-31",
+    "time": "06:44:13",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "44",
+    "second": "13"
+  },
+  {
+    "id": 10673,
+    "heading": "movimento sociale, definizione non felice",
+    "created": "2001-07-31 06:49:22",
+    "linked_file": null,
+    "hugo": "10673-movimento-sociale-definizione-non-felice",
+    "date": "2001-07-31",
+    "time": "06:49:22",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "49",
+    "second": "22"
+  },
+  {
+    "id": 10772,
+    "heading": "definizione di movimento sociale",
+    "created": "2001-07-31 06:51:59",
+    "linked_file": null,
+    "hugo": "10772-definizione-di-movimento-sociale",
+    "date": "2001-07-31",
+    "time": "06:51:59",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "06",
+    "minute": "51",
+    "second": "59"
+  },
+  {
+    "id": 7088,
+    "heading": "Solidarity actions in Poland",
+    "created": "2001-07-31 08:06:34",
+    "linked_file": "2001/07/antyglobalist.jpg",
+    "hugo": "7088-solidarity-actions-in-poland",
+    "date": "2001-07-31",
+    "time": "08:06:34",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "06",
+    "second": "34"
+  },
+  {
+    "id": 10722,
+    "heading": "CI STIAMO PERDENDO",
+    "created": "2001-07-31 08:06:59",
+    "linked_file": null,
+    "hugo": "10722-ci-stiamo-perdendo",
+    "date": "2001-07-31",
+    "time": "08:06:59",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "06",
+    "second": "59"
+  },
+  {
+    "id": 5082,
+    "heading": "Statement by Black Block activists",
+    "created": "2001-07-31 08:11:30",
+    "linked_file": null,
+    "hugo": "5082-statement-by-black-block-activists",
+    "date": "2001-07-31",
+    "time": "08:11:30",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "11",
+    "second": "30"
+  },
+  {
+    "id": 1895,
+    "heading": "BLOCCHIAMO IL G8",
+    "created": "2001-07-31 08:25:38",
+    "linked_file": "2001/07/senzacompromessi1.jpg",
+    "hugo": "1895-blocchiamo-il-g8",
+    "date": "2001-07-31",
+    "time": "08:25:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "25",
+    "second": "38"
+  },
+  {
+    "id": 10816,
+    "heading": "G8: Carta, fotografo testimone spari in Corso Gastaldi",
+    "created": "2001-07-31 08:26:12",
+    "linked_file": null,
+    "hugo": "10816-g8-carta-fotografo-testimone-spari-in-corso-gastaldi",
+    "date": "2001-07-31",
+    "time": "08:26:12",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "26",
+    "second": "12"
+  },
+  {
+    "id": 10691,
+    "heading": "repost of black art",
+    "created": "2001-07-31 08:38:50",
+    "linked_file": "2001/07/10100dmppnj.jpg",
+    "hugo": "10691-repost-of-black-art",
+    "date": "2001-07-31",
+    "time": "08:38:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "38",
+    "second": "50"
+  },
+  {
+    "id": 10697,
+    "heading": "Prisoners were denied access to lawyers",
+    "created": "2001-07-31 08:47:38",
+    "linked_file": null,
+    "hugo": "10697-prisoners-were-denied-access-to-lawyers",
+    "date": "2001-07-31",
+    "time": "08:47:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "08",
+    "minute": "47",
+    "second": "38"
+  },
+  {
+    "id": 10778,
+    "heading": "ZECCHE...PIDOCCHI...BESTIE",
+    "created": "2001-07-31 09:10:28",
+    "linked_file": null,
+    "hugo": "10778-zecchepidocchibestie",
+    "date": "2001-07-31",
+    "time": "09:10:28",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "10",
+    "second": "28"
+  },
+  {
+    "id": 10609,
+    "heading": "questo e' un movimento sociale!",
+    "created": "2001-07-31 09:18:42",
+    "linked_file": null,
+    "hugo": "10609-questo-e-un-movimento-sociale",
+    "date": "2001-07-31",
+    "time": "09:18:42",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "18",
+    "second": "42"
+  },
+  {
+    "id": 10834,
+    "heading": "Vertice Nato a Caserta",
+    "created": "2001-07-31 09:20:36",
+    "linked_file": null,
+    "hugo": "10834-vertice-nato-a-caserta",
+    "date": "2001-07-31",
+    "time": "09:20:36",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "20",
+    "second": "36"
+  },
+  {
+    "id": 10735,
+    "heading": "\"COSI' CI MASSACRAVANO IN CARCERE NEL 1980\" di Alberto Franceschini (COME GENOVA",
+    "created": "2001-07-31 09:36:00",
+    "linked_file": null,
+    "hugo": "10735-cosi-ci-massacravano-in-carcere-nel-1980-di-alberto-franceschini-come-genova",
+    "date": "2001-07-31",
+    "time": "09:36:00",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "36",
+    "second": "00"
+  },
+  {
+    "id": 10705,
+    "heading": "le automobili sfasciate a Ge",
+    "created": "2001-07-31 09:40:57",
+    "linked_file": null,
+    "hugo": "10705-le-automobili-sfasciate-a-ge",
+    "date": "2001-07-31",
+    "time": "09:40:57",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "09",
+    "minute": "40",
+    "second": "57"
+  },
+  {
+    "id": 10682,
+    "heading": "Whats the status of those arrested in genoa?",
+    "created": "2001-07-31 10:02:28",
+    "linked_file": null,
+    "hugo": "10682-whats-the-status-of-those-arrested-in-genoa",
+    "date": "2001-07-31",
+    "time": "10:02:28",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "02",
+    "second": "28"
+  },
+  {
+    "id": 9910,
+    "heading": "la banda BB",
+    "created": "2001-07-31 10:10:49",
+    "linked_file": "2001/07/la_banda_bb.jpg",
+    "hugo": "9910-la-banda-bb",
+    "date": "2001-07-31",
+    "time": "10:10:49",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "10",
+    "second": "49"
+  },
+  {
+    "id": 10793,
+    "heading": "20.8.01 Global Action Day for Genoa",
+    "created": "2001-07-31 10:11:53",
+    "linked_file": null,
+    "hugo": "10793-20801-global-action-day-for-genoa",
+    "date": "2001-07-31",
+    "time": "10:11:53",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "11",
+    "second": "53"
+  },
+  {
+    "id": 10875,
+    "heading": "AGGIORNAMENTI INTERVENTI SU GENOVA",
+    "created": "2001-07-31 10:13:32",
+    "linked_file": null,
+    "hugo": "10875-aggiornamenti-interventi-su-genova",
+    "date": "2001-07-31",
+    "time": "10:13:32",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "13",
+    "second": "32"
+  },
+  {
+    "id": 10537,
+    "heading": "Siamo realisti...",
+    "created": "2001-07-31 10:49:11",
+    "linked_file": null,
+    "hugo": "10537-siamo-realisti",
+    "date": "2001-07-31",
+    "time": "10:49:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "10",
+    "minute": "49",
+    "second": "11"
+  },
+  {
+    "id": 10795,
+    "heading": "ATTENZIONE: PER LA DIFFUSIONE DEL LIBRO BIANCO SUI FATTI DI GENOVA",
+    "created": "2001-07-31 11:02:54",
+    "linked_file": null,
+    "hugo": "10795-attenzione-per-la-diffusione-del-libro-bianco-sui-fatti-di-genova",
+    "date": "2001-07-31",
+    "time": "11:02:54",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "02",
+    "second": "54"
+  },
+  {
+    "id": 10886,
+    "heading": "Aggrediti e Aggressori",
+    "created": "2001-07-31 11:08:44",
+    "linked_file": null,
+    "hugo": "10886-aggrediti-e-aggressori",
+    "date": "2001-07-31",
+    "time": "11:08:44",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "08",
+    "second": "44"
+  },
+  {
+    "id": 10906,
+    "heading": "THIS is the PHOTO of Giuseppe Dalla Vecchia (massacre march 2000)",
+    "created": "2001-07-31 11:13:46",
+    "linked_file": "2001/07/dellavecchia1pxaoskj.jpg",
+    "hugo": "10906-this-is-the-photo-of-giuseppe-dalla-vecchia-massacre-march-2000",
+    "date": "2001-07-31",
+    "time": "11:13:46",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "13",
+    "second": "46"
+  },
+  {
+    "id": 10916,
+    "heading": "Presentati a tribunale ricorsi contro arresti black bloc",
+    "created": "2001-07-31 11:24:54",
+    "linked_file": null,
+    "hugo": "10916-presentati-a-tribunale-ricorsi-contro-arresti-black-bloc",
+    "date": "2001-07-31",
+    "time": "11:24:54",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "11",
+    "minute": "24",
+    "second": "54"
+  },
+  {
+    "id": 9883,
+    "heading": "Tanto di Cappello al TG5",
+    "created": "2001-07-31 12:12:13",
+    "linked_file": null,
+    "hugo": "9883-tanto-di-cappello-al-tg5",
+    "date": "2001-07-31",
+    "time": "12:12:13",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "12",
+    "minute": "12",
+    "second": "13"
+  },
+  {
+    "id": 10952,
+    "heading": "Premier Berlusconi, giustizia per Carlo Giuliani (en) \r",
+    "created": "2001-07-31 12:42:45",
+    "linked_file": null,
+    "hugo": "10952-premier-berlusconi-giustizia-per-carlo-giuliani-en",
+    "date": "2001-07-31",
+    "time": "12:42:45",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "12",
+    "minute": "42",
+    "second": "45"
+  },
+  {
+    "id": 10958,
+    "heading": "Ricerca operatori Indy",
+    "created": "2001-07-31 13:06:44",
+    "linked_file": null,
+    "hugo": "10958-ricerca-operatori-indy",
+    "date": "2001-07-31",
+    "time": "13:06:44",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "13",
+    "minute": "06",
+    "second": "44"
+  },
+  {
+    "id": 10954,
+    "heading": "CARLO'S WAY",
+    "created": "2001-07-31 13:36:32",
+    "linked_file": null,
+    "hugo": "10954-carlos-way",
+    "date": "2001-07-31",
+    "time": "13:36:32",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "13",
+    "minute": "36",
+    "second": "32"
+  },
+  {
+    "id": 10960,
+    "heading": "per favore, indicatemi altri forum ...",
+    "created": "2001-07-31 13:49:01",
+    "linked_file": null,
+    "hugo": "10960-per-favore-indicatemi-altri-forum-",
+    "date": "2001-07-31",
+    "time": "13:49:01",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "13",
+    "minute": "49",
+    "second": "01"
+  },
+  {
+    "id": 10907,
+    "heading": "VOGLIONO IL RITORNO DEL TERRORISMO E LA GUERRA CIVILE!",
+    "created": "2001-07-31 14:02:02",
+    "linked_file": null,
+    "hugo": "10907-vogliono-il-ritorno-del-terrorismo-e-la-guerra-civile",
+    "date": "2001-07-31",
+    "time": "14:02:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "02",
+    "second": "02"
+  },
+  {
+    "id": 10873,
+    "heading": "l'estintore non è in dotazione dei carabinieri-ansa",
+    "created": "2001-07-31 14:06:18",
+    "linked_file": null,
+    "hugo": "10873-lestintore-non-e-in-dotazione-dei-carabinieriansa",
+    "date": "2001-07-31",
+    "time": "14:06:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "06",
+    "second": "18"
+  },
+  {
+    "id": 10723,
+    "heading": "FINI DIRIGEVA LE OPERAZIONI DI REPRESSIONE?",
+    "created": "2001-07-31 14:16:04",
+    "linked_file": null,
+    "hugo": "10723-fini-dirigeva-le-operazioni-di-repressione",
+    "date": "2001-07-31",
+    "time": "14:16:04",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "16",
+    "second": "04"
+  },
+  {
+    "id": 10876,
+    "heading": "cronache locali",
+    "created": "2001-07-31 14:44:48",
+    "linked_file": null,
+    "hugo": "10876-cronache-locali",
+    "date": "2001-07-31",
+    "time": "14:44:48",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "44",
+    "second": "48"
+  },
+  {
+    "id": 10996,
+    "heading": "healing trauma for activists",
+    "created": "2001-07-31 14:49:33",
+    "linked_file": null,
+    "hugo": "10996-healing-trauma-for-activists",
+    "date": "2001-07-31",
+    "time": "14:49:33",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "49",
+    "second": "33"
+  },
+  {
+    "id": 10493,
+    "heading": "caserma Italia",
+    "created": "2001-07-31 14:55:04",
+    "linked_file": "2001/07/fuck_police2.jpg",
+    "hugo": "10493-caserma-italia",
+    "date": "2001-07-31",
+    "time": "14:55:04",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "55",
+    "second": "04"
+  },
+  {
+    "id": 10985,
+    "heading": "Per Firenze",
+    "created": "2001-07-31 14:58:29",
+    "linked_file": null,
+    "hugo": "10985-per-firenze",
+    "date": "2001-07-31",
+    "time": "14:58:29",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "58",
+    "second": "29"
+  },
+  {
+    "id": 10800,
+    "heading": "Il PM comincia male!!!!!!",
+    "created": "2001-07-31 14:59:11",
+    "linked_file": null,
+    "hugo": "10800-il-pm-comincia-male",
+    "date": "2001-07-31",
+    "time": "14:59:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "14",
+    "minute": "59",
+    "second": "11"
+  },
+  {
+    "id": 11005,
+    "heading": "L'ESTINTORE",
+    "created": "2001-07-31 15:04:02",
+    "linked_file": null,
+    "hugo": "11005-lestintore",
+    "date": "2001-07-31",
+    "time": "15:04:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "04",
+    "second": "02"
+  },
+  {
+    "id": 10989,
+    "heading": "NOMI E COGNOMI DEI CARABINIERI ASSASSINI",
+    "created": "2001-07-31 15:12:41",
+    "linked_file": null,
+    "hugo": "10989-nomi-e-cognomi-dei-carabinieri-assassini",
+    "date": "2001-07-31",
+    "time": "15:12:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "12",
+    "second": "41"
+  },
+  {
+    "id": 10931,
+    "heading": "MI SA CHE CI RIESCONO ANCORA UNA VOLTA...",
+    "created": "2001-07-31 15:19:57",
+    "linked_file": null,
+    "hugo": "10931-mi-sa-che-ci-riescono-ancora-una-volta",
+    "date": "2001-07-31",
+    "time": "15:19:57",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "19",
+    "second": "57"
+  },
+  {
+    "id": 10973,
+    "heading": "non riesco a capire. Ma davvero ..",
+    "created": "2001-07-31 15:45:48",
+    "linked_file": null,
+    "hugo": "10973-non-riesco-a-capire-ma-davvero-",
+    "date": "2001-07-31",
+    "time": "15:45:48",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "45",
+    "second": "48"
+  },
+  {
+    "id": 11016,
+    "heading": "Italy/G8 Summit: Amnesty International calls for commission of inquiry",
+    "created": "2001-07-31 15:53:18",
+    "linked_file": null,
+    "hugo": "11016-italyg8-summit-amnesty-international-calls-for-commission-of-inquiry",
+    "date": "2001-07-31",
+    "time": "15:53:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "15",
+    "minute": "53",
+    "second": "18"
+  },
+  {
+    "id": 10057,
+    "heading": "fuck_police",
+    "created": "2001-07-31 16:10:52",
+    "linked_file": "2001/07/fuck_police.jpg",
+    "hugo": "10057-fuckpolice",
+    "date": "2001-07-31",
+    "time": "16:10:52",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "16",
+    "minute": "10",
+    "second": "52"
+  },
+  {
+    "id": 11051,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 16:45:30",
+    "linked_file": "2001/07/6oxm8j6.jpg",
+    "hugo": "11051-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "16:45:30",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "16",
+    "minute": "45",
+    "second": "30"
+  },
+  {
+    "id": 11057,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 16:53:36",
+    "linked_file": "2001/07/74oaqyp.jpg",
+    "hugo": "11057-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "16:53:36",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "16",
+    "minute": "53",
+    "second": "36"
+  },
+  {
+    "id": 10879,
+    "heading": "ultima dall'ansa",
+    "created": "2001-07-31 17:02:33",
+    "linked_file": null,
+    "hugo": "10879-ultima-dallansa",
+    "date": "2001-07-31",
+    "time": "17:02:33",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "02",
+    "second": "33"
+  },
+  {
+    "id": 11061,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:03:11",
+    "linked_file": "2001/08/8.jpg",
+    "hugo": "11061-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:03:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "03",
+    "second": "11"
+  },
+  {
+    "id": 10979,
+    "heading": "Nerone a Genova",
+    "created": "2001-07-31 17:03:42",
+    "linked_file": null,
+    "hugo": "10979-nerone-a-genova",
+    "date": "2001-07-31",
+    "time": "17:03:42",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "03",
+    "second": "42"
+  },
+  {
+    "id": 11067,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:17:38",
+    "linked_file": "2001/08/9rmppxo.jpg",
+    "hugo": "11067-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:17:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "17",
+    "second": "38"
+  },
+  {
+    "id": 11021,
+    "heading": "Considerations on violence in the context of mass mobilization",
+    "created": "2001-07-31 17:18:20",
+    "linked_file": null,
+    "hugo": "11021-considerations-on-violence-in-the-context-of-mass-mobilization",
+    "date": "2001-07-31",
+    "time": "17:18:20",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "18",
+    "second": "20"
+  },
+  {
+    "id": 10737,
+    "heading": "quale compito per i poliziotti in tuta bianca ?",
+    "created": "2001-07-31 17:36:17",
+    "linked_file": "2001/08/22.jpg",
+    "hugo": "10737-quale-compito-per-i-poliziotti-in-tuta-bianca-",
+    "date": "2001-07-31",
+    "time": "17:36:17",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "36",
+    "second": "17"
+  },
+  {
+    "id": 10998,
+    "heading": "L'ESTINTORE",
+    "created": "2001-07-31 17:36:43",
+    "linked_file": null,
+    "hugo": "10998-lestintore",
+    "date": "2001-07-31",
+    "time": "17:36:43",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "36",
+    "second": "43"
+  },
+  {
+    "id": 11078,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:37:27",
+    "linked_file": "2001/08/10.jpg",
+    "hugo": "11078-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:37:27",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "37",
+    "second": "27"
+  },
+  {
+    "id": 10823,
+    "heading": "sull'articolo di lello voce:ancora alcuni dubbi",
+    "created": "2001-07-31 17:38:56",
+    "linked_file": null,
+    "hugo": "10823-sullarticolo-di-lello-voceancora-alcuni-dubbi",
+    "date": "2001-07-31",
+    "time": "17:38:56",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "38",
+    "second": "56"
+  },
+  {
+    "id": 11081,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:44:11",
+    "linked_file": "2001/08/11.jpg",
+    "hugo": "11081-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:44:11",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "44",
+    "second": "11"
+  },
+  {
+    "id": 11083,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 17:52:14",
+    "linked_file": null,
+    "hugo": "11083-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "17:52:14",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "52",
+    "second": "14"
+  },
+  {
+    "id": 11084,
+    "heading": "photoseries of genoa protests",
+    "created": "2001-07-31 17:53:39",
+    "linked_file": "2001/08/indeximage.jpg",
+    "hugo": "11084-photoseries-of-genoa-protests",
+    "date": "2001-07-31",
+    "time": "17:53:39",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "53",
+    "second": "39"
+  },
+  {
+    "id": 10959,
+    "heading": "Da FI Vacanze premio per il CC che ha sparato a Carlo",
+    "created": "2001-07-31 17:53:51",
+    "linked_file": null,
+    "hugo": "10959-da-fi-vacanze-premio-per-il-cc-che-ha-sparato-a-carlo",
+    "date": "2001-07-31",
+    "time": "17:53:51",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "53",
+    "second": "51"
+  },
+  {
+    "id": 10865,
+    "heading": "Ma davvero vi aspettate giustizia dallo stato?",
+    "created": "2001-07-31 17:54:43",
+    "linked_file": null,
+    "hugo": "10865-ma-davvero-vi-aspettate-giustizia-dallo-stato",
+    "date": "2001-07-31",
+    "time": "17:54:43",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "17",
+    "minute": "54",
+    "second": "43"
+  },
+  {
+    "id": 11087,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:00:36",
+    "linked_file": "2001/08/13.jpg",
+    "hugo": "11087-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:00:36",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "00",
+    "second": "36"
+  },
+  {
+    "id": 11088,
+    "heading": "Le foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:13:23",
+    "linked_file": "2001/08/14.jpg",
+    "hugo": "11088-le-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:13:23",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "13",
+    "second": "23"
+  },
+  {
+    "id": 11090,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:19:41",
+    "linked_file": "2001/08/15.jpg",
+    "hugo": "11090-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:19:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "19",
+    "second": "41"
+  },
+  {
+    "id": 11091,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:25:41",
+    "linked_file": null,
+    "hugo": "11091-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:25:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "25",
+    "second": "41"
+  },
+  {
+    "id": 11092,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:32:17",
+    "linked_file": "2001/08/17.jpg",
+    "hugo": "11092-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:32:17",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "32",
+    "second": "17"
+  },
+  {
+    "id": 11093,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:35:52",
+    "linked_file": null,
+    "hugo": "11093-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:35:52",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "35",
+    "second": "52"
+  },
+  {
+    "id": 11094,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:41:50",
+    "linked_file": "2001/08/19.jpg",
+    "hugo": "11094-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:41:50",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "41",
+    "second": "50"
+  },
+  {
+    "id": 11099,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 18:54:41",
+    "linked_file": "2001/08/20.jpg",
+    "hugo": "11099-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "18:54:41",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "18",
+    "minute": "54",
+    "second": "41"
+  },
+  {
+    "id": 11102,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 19:08:26",
+    "linked_file": "2001/08/227k0thj.jpg",
+    "hugo": "11102-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "19:08:26",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "08",
+    "second": "26"
+  },
+  {
+    "id": 11052,
+    "heading": "Presidio sotto il carcere di Alessandria",
+    "created": "2001-07-31 19:17:24",
+    "linked_file": null,
+    "hugo": "11052-presidio-sotto-il-carcere-di-alessandria",
+    "date": "2001-07-31",
+    "time": "19:17:24",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "17",
+    "second": "24"
+  },
+  {
+    "id": 11105,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 19:24:01",
+    "linked_file": "2001/08/23.jpg",
+    "hugo": "11105-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "19:24:01",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "24",
+    "second": "01"
+  },
+  {
+    "id": 10910,
+    "heading": "Estintore: novità secondo agenzia agi",
+    "created": "2001-07-31 19:40:02",
+    "linked_file": null,
+    "hugo": "10910-estintore-novita-secondo-agenzia-agi",
+    "date": "2001-07-31",
+    "time": "19:40:02",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "19",
+    "minute": "40",
+    "second": "02"
+  },
+  {
+    "id": 11114,
+    "heading": "en, ca ) genoa solidarity actions/messages from ukraine/india/",
+    "created": "2001-07-31 20:57:38",
+    "linked_file": null,
+    "hugo": "11114-en-ca-genoa-solidarity-actionsmessages-from-ukraineindia",
+    "date": "2001-07-31",
+    "time": "20:57:38",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "20",
+    "minute": "57",
+    "second": "38"
+  },
+  {
+    "id": 11113,
+    "heading": "more fotos",
+    "created": "2001-07-31 22:30:10",
+    "linked_file": null,
+    "hugo": "11113-more-fotos",
+    "date": "2001-07-31",
+    "time": "22:30:10",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "22",
+    "minute": "30",
+    "second": "10"
+  },
+  {
+    "id": 8727,
+    "heading": "The importance of a complaints book",
+    "created": "2001-07-31 22:44:18",
+    "linked_file": null,
+    "hugo": "8727-the-importance-of-a-complaints-book",
+    "date": "2001-07-31",
+    "time": "22:44:18",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "22",
+    "minute": "44",
+    "second": "18"
+  },
+  {
+    "id": 11055,
+    "heading": "Foto della manifestazione del 21/07/01",
+    "created": "2001-07-31 23:02:01",
+    "linked_file": "2001/08/7lowosj.jpg",
+    "hugo": "11055-foto-della-manifestazione-del-210701",
+    "date": "2001-07-31",
+    "time": "23:02:01",
+    "year": "2001",
+    "month": "07",
+    "day": "31",
+    "hour": "23",
+    "minute": "02",
+    "second": "01"
+  },
+  {
+    "id": 10786,
+    "heading": "Tragici sospetti",
+    "created": "2001-08-01 01:43:40",
+    "linked_file": null,
+    "hugo": "10786-tragici-sospetti",
+    "date": "2001-08-01",
+    "time": "01:43:40",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "01",
+    "minute": "43",
+    "second": "40"
+  },
+  {
+    "id": 10784,
+    "heading": "9000 posti di lavoro in meno",
+    "created": "2001-08-01 01:48:11",
+    "linked_file": null,
+    "hugo": "10784-9000-posti-di-lavoro-in-meno",
+    "date": "2001-08-01",
+    "time": "01:48:11",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "01",
+    "minute": "48",
+    "second": "11"
+  },
+  {
+    "id": 11032,
+    "heading": "PROPOSTA DI LEGGE",
+    "created": "2001-08-01 01:59:33",
+    "linked_file": null,
+    "hugo": "11032-proposta-di-legge",
+    "date": "2001-08-01",
+    "time": "01:59:33",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "01",
+    "minute": "59",
+    "second": "33"
+  },
+  {
+    "id": 10961,
+    "heading": "All'Attenz.one di Giuliano Giuliani",
+    "created": "2001-08-01 02:11:25",
+    "linked_file": null,
+    "hugo": "10961-allattenzone-di-giuliano-giuliani",
+    "date": "2001-08-01",
+    "time": "02:11:25",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "02",
+    "minute": "11",
+    "second": "25"
+  },
+  {
+    "id": 11141,
+    "heading": "Genoa riot inquiry criticises police \r\rGenoa riot inquiry criticises police \r",
+    "created": "2001-08-01 02:33:58",
+    "linked_file": null,
+    "hugo": "11141-genoa-riot-inquiry-criticises-police-genoa-riot-inquiry-criticises-police",
+    "date": "2001-08-01",
+    "time": "02:33:58",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "02",
+    "minute": "33",
+    "second": "58"
+  },
+  {
+    "id": 11143,
+    "heading": "THE TIMES Genoa riot inquiry criticises police",
+    "created": "2001-08-01 02:35:33",
+    "linked_file": null,
+    "hugo": "11143-the-times-genoa-riot-inquiry-criticises-police",
+    "date": "2001-08-01",
+    "time": "02:35:33",
+    "year": "2001",
+    "month": "08",
+    "day": "01",
+    "hour": "02",
+    "minute": "35",
+    "second": "33"
+  }
+]