diff --git a/.drone.yml b/.drone.yml index 56b361e3..6659b8f9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -11,21 +11,6 @@ steps: - npm -v - npm ci - - name: test - image: cypress/included:13.7.0 - pull: always - environment: - VITE_DIRECTUS_URL: - from_secret: directus_url_new - VITE_DIRECTUS_TOKEN: - from_secret: directus_token_new - commands: - - npm run test - when: - branch: - exclude: - - master - - name: build staging image: node:20 pull: always @@ -124,6 +109,7 @@ steps: source: - ./build - ./docker-compose.prod.yml + - ./nginx.conf overwrite: true when: branch: @@ -143,10 +129,8 @@ steps: passphrase: from_secret: passphrase script: - - pwd - cd /srv/lf/website/prod - docker-compose -f docker-compose.prod.yml down - - pwd - rsync -ravI ./deploy/ . --delete-after - rm -rf ./deploy - docker-compose -f docker-compose.prod.yml up -d --build @@ -176,18 +160,6 @@ steps: - npm -v - npm ci - - name: test - image: cypress/included:13.7.0 - pull: always - environment: - CYPRESS_CACHE_FOLDER: .cypress - VITE_DIRECTUS_URL: - from_secret: directus_url_new - VITE_DIRECTUS_TOKEN: - from_secret: directus_token_new - commands: - - npm run test - - name: build production image: node:20 pull: always @@ -216,6 +188,7 @@ steps: source: - ./build - ./docker-compose.prod.yml + - ./nginx.conf overwrite: true - name: restart production server @@ -233,6 +206,7 @@ steps: from_secret: passphrase script: - cd /srv/lf/website/prod + - docker-compose -f docker-compose.prod.yml down - rsync -ravI ./deploy/ . --delete-after - rm -rf ./deploy - docker-compose -f docker-compose.prod.yml up -d --build diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml new file mode 100644 index 00000000..0648704d --- /dev/null +++ b/.github/workflows/playwright.yml @@ -0,0 +1,30 @@ +name: Playwright Tests +on: + push: + branches: [master] + pull_request: + branches: [master] +jobs: + test: + timeout-minutes: 60 + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: lts/* + - name: Install dependencies + run: npm ci + - name: Install Playwright Browsers + run: npx playwright install --with-deps + - name: Run Playwright tests + env: + VITE_DIRECTUS_URL: ${{ secrets.DIRECTUS_URL }} + VITE_DIRECTUS_TOKEN: ${{ secrets.DIRECTUS_TOKEN }} + run: npx playwright test + - uses: actions/upload-artifact@v4 + if: always() + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 diff --git a/.gitignore b/.gitignore index 928ba96b..21c21f63 100644 --- a/.gitignore +++ b/.gitignore @@ -14,3 +14,7 @@ build/ .env .DS_Store +/test-results/ +/playwright-report/ +/blob-report/ +/playwright/.cache/ diff --git a/cypress.config.ts b/cypress.config.ts deleted file mode 100644 index 47c21efe..00000000 --- a/cypress.config.ts +++ /dev/null @@ -1,14 +0,0 @@ -import { defineConfig } from 'cypress'; - -export default defineConfig({ - video: false, - viewportHeight: 1080, - viewportWidth: 1920, - retries: { - runMode: 4, - openMode: 0 - }, - e2e: { - baseUrl: 'http://localhost:5173' - } -}); diff --git a/cypress/e2e/artists.cy.ts b/cypress/e2e/artists.cy.ts deleted file mode 100644 index 82122cf5..00000000 --- a/cypress/e2e/artists.cy.ts +++ /dev/null @@ -1,34 +0,0 @@ -describe('Artist index page behavior', () => { - beforeEach(() => { - cy.visit('/artists'); - cy.wait(1000); - }); - - it('shuffles the artists on each page load', () => { - let firstArtistName = cy.get('[data-cy=artistName]').first(); - cy.visit('/artists'); - cy.wait(1000); - cy.get('[data-cy=artistName]').first().should('not.eq', firstArtistName); - }); - - it('shuffles the artists when pressing the shuffle button', () => { - let firstArtistName = cy.get('[data-cy=artistName]').first(); - cy.get('[data-cy=shuffleArtists]').click(); - cy.wait(1000); - cy.get('[data-cy=artistName]').first().should('not.eq', firstArtistName); - }); - - it('filters the artists when searching for a name', () => { - cy.get('[data-cy=searchArtists]').type('Zebra Centauri'); - cy.wait(1000); - cy.contains('[data-cy=artistName]', 'Zebra Centauri'); - }); - - it('unfilters the artists when removing text from the search field for a name', () => { - cy.get('[data-cy=searchArtists]').type('Zebra Centauri'); - cy.wait(1000); - cy.contains('[data-cy=artistName]', 'Zebra Centauri'); - cy.get('[data-cy=searchArtists]').clear(); - cy.get('[data-cy=artistName]').first().should('not.eq', 'Zebra Centauri'); - }); -}); diff --git a/cypress/e2e/navigation.cy.ts b/cypress/e2e/navigation.cy.ts deleted file mode 100644 index 240bbd83..00000000 --- a/cypress/e2e/navigation.cy.ts +++ /dev/null @@ -1,69 +0,0 @@ -describe('Navigation with the navbar', () => { - beforeEach(() => { - cy.visit('/'); - cy.wait(1000); - }); - - it('opens the nav menu when clicking the burger', () => { - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').should('exist'); - }); - - it('closes the nav menu when clicking the burger again after it opened', () => { - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').should('exist'); - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').should('not.exist'); - }); - - it('opens the nav and navigates to the about page', () => { - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').contains('About').click(); - cy.url().should('include', '/about'); - }); - - it('opens the nav and navigates to the events page', () => { - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').contains('Events').click(); - cy.url().should('include', '/events'); - cy.contains('Events'); - }); - - it('opens the nav and navigates to the Artists page', () => { - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').contains('Artists').click(); - cy.url().should('include', '/artists'); - cy.contains('Artists'); - }); - - it('opens the nav and navigates to the Lovecasts page', () => { - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').contains('Lovecasts').click(); - cy.url().should('include', '/lovecasts'); - cy.contains('Lovecasts'); - }); - - it('opens the nav and navigates to the Projects page', () => { - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').contains('Projects').click(); - cy.url().should('include', '/projects'); - }); - - it('allows navigating to root when on another page', () => { - cy.visit('/events'); - cy.wait(1000); - cy.get('[data-cy=toggleNav]').click(); - cy.wait(1000); - cy.get('nav').contains('Home').click(); - cy.url().should('eq', 'http://localhost:5173/'); - cy.contains('What is Love Foundation?'); - }); -}); diff --git a/cypress/e2e/projects.cy.ts b/cypress/e2e/projects.cy.ts deleted file mode 100644 index 3784e966..00000000 --- a/cypress/e2e/projects.cy.ts +++ /dev/null @@ -1,81 +0,0 @@ -describe('Projects Page Functionality', () => { - beforeEach(() => { - cy.visit('/projects'); - }); - - it('displays the projects page and has an introduction text', () => { - cy.contains('[data-cy=pageTitle]', 'Projects'); - cy.contains( - '[data-cy=pageIntro]', - 'Love Foundation is starting and supporting a variety of projects globally.' - ); - }); - - it('shows at least one project item', () => { - cy.get('[data-cy=projectTitle]').first().should('exist'); - cy.get('[data-cy=projectPillar]').first().should('exist'); - }); - - it('shows the project filters and there is five options', () => { - cy.get('[data-cy=projectFilters]').should('exist'); - cy.get('[data-cy=projectFilter]').should('have.length', 5); - }); - - it.skip('filters the projects when using one of the filter options', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').first().click(); - cy.get('[data-cy=projectItem]').should('have.length.lt', 7); - }); - - it.skip('changes the filter when clicking another category', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').contains('Water for all').click().debug(); - cy.get('[data-cy=projectItem]').should('have.length', 4); - cy.get('[data-cy=projectPillar]').should('have.class', 'water'); - cy.get('[data-cy=projectFilter]').contains('Community Spirit').click(); - cy.get('[data-cy=projectItem]').should('have.length', 2); - cy.get('[data-cy=projectPillar]').should('have.class', 'community'); - }); - - it.skip('removes the filter when clicking the same category again', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').first().click(); - cy.get('[data-cy=projectItem]').should('have.length.lt', 7); - cy.get('[data-cy=projectFilter]').first().click(); - }); - - it.skip('filters the projects for water projects', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').contains('Water for all').click(); - cy.get('[data-cy=projectItem]').should('have.length', 4); - cy.get('[data-cy=projectPillar]').should('have.class', 'water'); - }); - - it.skip('filters the projects for community projects', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').contains('Community Spirit').click(); - cy.get('[data-cy=projectItem]').should('have.length', 2); - cy.get('[data-cy=projectPillar]').should('have.class', 'community'); - }); - - it.skip('filters the projects for sustainability projects', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').contains('Shared Sustainability').click(); - cy.get('[data-cy=projectItem]').should('have.length', 0); - cy.get('[data-cy=projectPillar]').should('have.class', 'sustainability'); - }); - - it.skip('filters the projects for joy projects', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').contains('Joyful Purpose').click(); - cy.get('[data-cy=projectItem]').should('have.length', 1); - cy.get('[data-cy=projectPillar]').should('have.class', 'joy'); - }); - - it.skip('filters the projects for love projects', () => { - cy.get('[data-cy=projectItem]').should('have.length', 7); - cy.get('[data-cy=projectFilter]').contains('Universal Love').click(); - cy.get('[data-cy=projectItem]').should('have.length', 0); - cy.get('[data-cy=projectPillar]').should('have.class', 'love'); - }); -}); diff --git a/cypress/support/commands.js b/cypress/support/commands.js deleted file mode 100644 index c1f5a772..00000000 --- a/cypress/support/commands.js +++ /dev/null @@ -1,25 +0,0 @@ -// *********************************************** -// This example commands.js shows you how to -// create various custom commands and overwrite -// existing commands. -// -// For more comprehensive examples of custom -// commands please read more here: -// https://on.cypress.io/custom-commands -// *********************************************** -// -// -// -- This is a parent command -- -// Cypress.Commands.add("login", (email, password) => { ... }) -// -// -// -- This is a child command -- -// Cypress.Commands.add("drag", { prevSubject: 'element'}, (subject, options) => { ... }) -// -// -// -- This is a dual command -- -// Cypress.Commands.add("dismiss", { prevSubject: 'optional'}, (subject, options) => { ... }) -// -// -// -- This is will overwrite an existing command -- -// Cypress.Commands.overwrite("visit", (originalFn, url, options) => { ... }) diff --git a/cypress/support/e2e.js b/cypress/support/e2e.js deleted file mode 100644 index d68db96d..00000000 --- a/cypress/support/e2e.js +++ /dev/null @@ -1,20 +0,0 @@ -// *********************************************************** -// This example support/index.js is processed and -// loaded automatically before your test files. -// -// This is a great place to put global configuration and -// behavior that modifies Cypress. -// -// You can change the location of this file or turn off -// automatically serving support files with the -// 'supportFile' configuration option. -// -// You can read more here: -// https://on.cypress.io/configuration -// *********************************************************** - -// Import commands.js using ES2015 syntax: -import './commands' - -// Alternatively you can use CommonJS syntax: -// require('./commands') diff --git a/cypress/tsconfig.json b/cypress/tsconfig.json deleted file mode 100644 index 20dff1e5..00000000 --- a/cypress/tsconfig.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "compilerOptions": { - "target": "es5", - "lib": ["es5", "dom"], - "types": ["cypress"] - }, - "include": ["**/*.ts"] -} diff --git a/docker-compose.prod.yml b/docker-compose.prod.yml index 525d55c5..96c9b135 100644 --- a/docker-compose.prod.yml +++ b/docker-compose.prod.yml @@ -10,10 +10,11 @@ services: restart: unless-stopped volumes: - ./build:/srv + - ./nginx.conf:/usr/local/nginx/conf/sites/default.conf networks: - proxy ports: - - 80:80 + - 80 labels: - traefik.enable=true - traefik.http.services.lf-website-prod.loadbalancer.server.port=80 diff --git a/fixtures/artists.ts b/fixtures/artists.ts index 379e5234..0bd728c8 100644 --- a/fixtures/artists.ts +++ b/fixtures/artists.ts @@ -3,7 +3,6 @@ export default { { id: 1, artist_name: 'Seth van Rinsum', - image: 'ff1eab96-feba-4411-ae60-34408b480d03', current_location: 'Magdeburg', type_of_art: 'music', slug: 'seth-van-rinsum', @@ -11,16 +10,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: null - } - ] + events: [] }, { id: 3, artist_name: 'Nawaf Guzman', - image: 'ca7087c2-fe84-439d-86f6-5fb5af55e115', current_location: 'Magdeburg', type_of_art: 'music', slug: 'nawaf-guzman', @@ -29,32 +23,15 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 506 - } - }, - { - events_id: { - id: 604 - } - }, - { - events_id: { - id: 608 - } - } + { events_id: { id: 527 } }, + { events_id: { id: 506 } }, + { events_id: { id: 604 } }, + { events_id: { id: 608 } } ] }, { id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', current_location: 'Magdeburg', type_of_art: 'workshop', slug: 'jule', @@ -63,52 +40,19 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 506 - } - }, - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 11 - } - }, - { - events_id: { - id: 12 - } - }, - { - events_id: { - id: 13 - } - }, - { - events_id: { - id: 544 - } - }, - { - events_id: { - id: 584 - } - }, - { - events_id: { - id: 603 - } - } + { events_id: { id: 506 } }, + { events_id: { id: 527 } }, + { events_id: { id: 11 } }, + { events_id: { id: 12 } }, + { events_id: { id: 13 } }, + { events_id: { id: 544 } }, + { events_id: { id: 584 } }, + { events_id: { id: 603 } } ] }, { id: 5, artist_name: 'JaMo', - image: 'f9a4b2ab-254f-4742-9c4d-d965b365f118', current_location: 'Magdeburg', type_of_art: 'music', slug: 'jamo', @@ -117,37 +61,16 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 12 - } - }, - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 506 - } - }, - { - events_id: { - id: 13 - } - }, - { - events_id: { - id: 544 - } - } + { events_id: { id: 12 } }, + { events_id: { id: 527 } }, + { events_id: { id: 506 } }, + { events_id: { id: 13 } }, + { events_id: { id: 544 } } ] }, { id: 6, artist_name: 'Lino Problemo', - image: 'ac0bf076-4c1b-4f28-9f31-60af4ddbd233', current_location: 'Magdeburg', type_of_art: 'music', slug: 'lino-problemo', @@ -155,18 +78,11 @@ export default { facebook_url: 'https://www.facebook.com/melina.dorge', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 506 - } - } - ] + events: [{ events_id: { id: 506 } }] }, { id: 7, artist_name: 'Nouri', - image: 'f23d95b5-60ca-44e5-84ee-3ed3610f0315', current_location: 'Magdeburg', type_of_art: 'music', slug: 'nouri', @@ -174,18 +90,11 @@ export default { facebook_url: 'https://www.facebook.com/pato.mhmd', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 12 - } - } - ] + events: [{ events_id: { id: 12 } }] }, { id: 8, artist_name: 'Max Nehrig', - image: 'a111aaa5-ce94-418a-9892-52b459f39877', current_location: 'Magdeburg', type_of_art: 'music', slug: 'max-nehrig', @@ -193,23 +102,11 @@ export default { facebook_url: 'https://www.facebook.com/max.nehrig.7', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 422 - } - }, - { - events_id: { - id: 527 - } - } - ] + events: [{ events_id: { id: 422 } }, { events_id: { id: 527 } }] }, { id: 9, artist_name: 'Alena Figuera', - image: '5e637b61-a6c2-4fb9-b599-0d6af40eef96', current_location: 'Magdeburg', type_of_art: 'music', slug: 'alena-figuera', @@ -217,23 +114,11 @@ export default { facebook_url: 'https://www.facebook.com/alena.figueroa.986', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 422 - } - }, - { - events_id: { - id: 527 - } - } - ] + events: [{ events_id: { id: 422 } }, { events_id: { id: 527 } }] }, { id: 10, artist_name: 'Hausfreund Semanski', - image: '95a52728-8ed0-4997-98e0-68f0c78bc65f', current_location: 'Magdeburg', type_of_art: 'music', slug: 'hausfreund-semanski', @@ -241,18 +126,11 @@ export default { facebook_url: 'https://www.facebook.com/sebastian.symanowski', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 527 - } - } - ] + events: [{ events_id: { id: 527 } }] }, { id: 11, artist_name: 'Fllood', - image: '8e582354-f3fb-4440-a00b-549ed391d27e', current_location: 'Dresden', type_of_art: 'music', slug: 'fllood', @@ -260,18 +138,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 527 - } - } - ] + events: [{ events_id: { id: 527 } }] }, { id: 12, artist_name: 'Ci Ta The - CirkusTanzTheater', - image: '07841c1d-ac66-425e-8495-8ae06e2c9860', current_location: 'Magdeburg', type_of_art: 'visual', slug: 'ci-ta-the-cirkus-tanz-theater', @@ -279,28 +150,11 @@ export default { facebook_url: 'https://www.facebook.com/CiTaThe', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 506 - } - }, - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 544 - } - } - ] + events: [{ events_id: { id: 506 } }, { events_id: { id: 527 } }, { events_id: { id: 544 } }] }, { id: 13, artist_name: 'Take Sekt', - image: 'dc2b259d-54da-46d4-8fe8-da4829614f13', current_location: 'Magdeburg', type_of_art: 'music', slug: 'take-sekt', @@ -308,23 +162,11 @@ export default { facebook_url: 'https://www.facebook.com/takesekt', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 16 - } - } - ] + events: [{ events_id: { id: 527 } }, { events_id: { id: 16 } }] }, { id: 14, artist_name: 'Carla Schubert', - image: '5cb5fc95-0cb8-420d-898d-3a03a781cf32', current_location: 'Magdeburg', type_of_art: 'music', slug: 'carla-schubert', @@ -332,18 +174,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 513 - } - } - ] + events: [{ events_id: { id: 513 } }] }, { id: 15, artist_name: 'Bryta', - image: 'ec624c44-b55c-423a-83df-d5eb501a2bae', current_location: 'Berlin', type_of_art: null, slug: 'bryta', @@ -351,18 +186,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 506 - } - } - ] + events: [{ events_id: { id: 506 } }] }, { id: 16, artist_name: 'Rolandson', - image: 'acdf71b5-a4a2-4e13-ad39-23c164847064', current_location: 'Berlin, München', type_of_art: 'music', slug: 'rolandson', @@ -370,18 +198,11 @@ export default { facebook_url: 'https://www.facebook.com/herre.rolandson.johansson', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 527 - } - } - ] + events: [{ events_id: { id: 527 } }] }, { id: 17, artist_name: 'Adi Dassler', - image: '57846565-9b0c-4b6e-9bd8-f06b89b7e547', current_location: 'Tulum, Mexico', type_of_art: 'music', slug: 'adi-dassler', @@ -389,18 +210,11 @@ export default { facebook_url: 'https://www.facebook.com/adidasslermusic', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 527 - } - } - ] + events: [{ events_id: { id: 527 } }] }, { id: 18, artist_name: 'Marcelito', - image: 'df776a4a-10ed-48bf-b566-4cb8f78d4c1a', current_location: 'Magdeburg', type_of_art: 'music', slug: 'marcelito', @@ -409,26 +223,10 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 515 - } - }, - { - events_id: { - id: 604 - } - }, - { - events_id: { - id: 603 - } - } + { events_id: { id: 527 } }, + { events_id: { id: 515 } }, + { events_id: { id: 604 } }, + { events_id: { id: 603 } } ] }, { @@ -442,18 +240,11 @@ export default { facebook_url: 'https://www.facebook.com/HeimlichKnuellerinoffiziell', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 15 - } - } - ] + events: [{ events_id: { id: 15 } }] }, { id: 1633, artist_name: 'Marius Jopen', - image: '3d455729-1f00-4e60-95b0-cac9b58d5860', current_location: 'Berlin', type_of_art: 'visual', slug: 'marius-jopen', @@ -462,32 +253,15 @@ export default { level_of_involvement: 'resident', hero_background_color: '#ffffff', events: [ - { - events_id: { - id: 407 - } - }, - { - events_id: { - id: 408 - } - }, - { - events_id: { - id: 250 - } - }, - { - events_id: { - id: 247 - } - } + { events_id: { id: 407 } }, + { events_id: { id: 408 } }, + { events_id: { id: 250 } }, + { events_id: { id: 247 } } ] }, { id: 1634, artist_name: 'Somnium (LUX)', - image: '7b67dfad-2323-4f38-8464-37161617af1c', current_location: 'Luxemburg', type_of_art: 'music', slug: 'somnium-lux', @@ -495,18 +269,11 @@ export default { facebook_url: 'https://www.facebook.com/somniumlux', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 209 - } - } - ] + events: [{ events_id: { id: 209 } }] }, { id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', current_location: 'Amsterdam', type_of_art: 'music', slug: 'mahfoud', @@ -515,67 +282,22 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 209 - } - }, - { - events_id: { - id: 212 - } - }, - { - events_id: { - id: 266 - } - }, - { - events_id: { - id: 268 - } - }, - { - events_id: { - id: 314 - } - }, - { - events_id: { - id: 409 - } - }, - { - events_id: { - id: 482 - } - }, - { - events_id: { - id: 243 - } - }, - { - events_id: { - id: 316 - } - }, - { - events_id: { - id: 317 - } - }, - { - events_id: { - id: 354 - } - } + { events_id: { id: 209 } }, + { events_id: { id: 212 } }, + { events_id: { id: 266 } }, + { events_id: { id: 268 } }, + { events_id: { id: 314 } }, + { events_id: { id: 409 } }, + { events_id: { id: 482 } }, + { events_id: { id: 243 } }, + { events_id: { id: 316 } }, + { events_id: { id: 317 } }, + { events_id: { id: 354 } } ] }, { id: 1636, artist_name: 'Josh Oudendijk', - image: '307586e2-c5eb-4e1b-a0f7-c3854d2acb9a', current_location: 'Luxemburg', type_of_art: 'music', slug: 'josh-oudendijk', @@ -583,18 +305,11 @@ export default { facebook_url: 'https://www.facebook.com/joshoudendijk', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 209 - } - } - ] + events: [{ events_id: { id: 209 } }] }, { id: 1637, artist_name: 'John Wolter', - image: '96e67de2-ca15-4d65-8af7-6439178c133e', current_location: 'Maastricht', type_of_art: 'music', slug: 'john-wolter', @@ -602,18 +317,11 @@ export default { facebook_url: 'https://www.facebook.com/John-Wolter-Drummer-203193286407930/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 209 - } - } - ] + events: [{ events_id: { id: 209 } }] }, { id: 1638, artist_name: 'Iorie', - image: 'fbdb5dc4-f935-497e-8388-5d620fea0d2d', current_location: 'Hannover', type_of_art: 'music', slug: 'iorie', @@ -621,18 +329,11 @@ export default { facebook_url: 'https://www.facebook.com/ioriemusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 1639, artist_name: 'Garstique', - image: 'd807d9bd-7ea0-48d8-b3a6-9769f6d362cf', current_location: 'Leipzig', type_of_art: 'music', slug: 'garstique', @@ -640,23 +341,11 @@ export default { facebook_url: 'https://www.facebook.com/garstique-226719494072724/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - }, - { - events_id: { - id: 311 - } - } - ] + events: [{ events_id: { id: 236 } }, { events_id: { id: 311 } }] }, { id: 1640, artist_name: 'Batu Ozer', - image: 'abc01e5e-37e1-4a78-a650-123b6e814489', current_location: 'Istanbul', type_of_art: 'music', slug: 'batu-ozer', @@ -664,18 +353,11 @@ export default { facebook_url: 'https://www.facebook.com/BatuOzermusic', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 1641, artist_name: 'Pedro Martins', - image: '708e2d10-c586-4f69-98b2-f7018935fe37', current_location: 'Amsterdam', type_of_art: 'music', slug: 'pedro-martins', @@ -683,18 +365,11 @@ export default { facebook_url: 'https://www.facebook.com/pedro.snk/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 1642, artist_name: 'Kavafoglu', - image: '04e8c3f0-41f2-4ebb-aed2-6ab7b0cf0a21', current_location: 'Amsterdam', type_of_art: 'music', slug: 'kavafoglu', @@ -702,23 +377,11 @@ export default { facebook_url: 'https://www.facebook.com/KavafogluMusic', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - }, - { - events_id: { - id: 220 - } - } - ] + events: [{ events_id: { id: 236 } }, { events_id: { id: 220 } }] }, { id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', current_location: 'Amsterdam', type_of_art: 'music', slug: 'arthur-robert', @@ -727,62 +390,21 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 208 - } - }, - { - events_id: { - id: 269 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 248 - } - }, - { - events_id: { - id: 250 - } - }, - { - events_id: { - id: 251 - } - }, - { - events_id: { - id: 255 - } - }, - { - events_id: { - id: 354 - } - } + { events_id: { id: 208 } }, + { events_id: { id: 269 } }, + { events_id: { id: 309 } }, + { events_id: { id: 324 } }, + { events_id: { id: 351 } }, + { events_id: { id: 248 } }, + { events_id: { id: 250 } }, + { events_id: { id: 251 } }, + { events_id: { id: 255 } }, + { events_id: { id: 354 } } ] }, { id: 1644, artist_name: 'Gefferson', - image: 'e2921cd7-bfdb-4a3f-a173-3eb30f6ff9fd', current_location: 'Maastricht', type_of_art: 'music', slug: 'gefferson', @@ -790,18 +412,11 @@ export default { facebook_url: 'https://www.facebook.com/Join-the-Circle-103203386465160/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 277 - } - } - ] + events: [{ events_id: { id: 277 } }] }, { id: 1645, artist_name: 'Noizome', - image: 'dd66dc2d-650f-4316-966a-0056ee3b4f97', current_location: 'Amsterdam', type_of_art: 'music', slug: 'noizome', @@ -809,18 +424,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 269 - } - } - ] + events: [{ events_id: { id: 269 } }] }, { id: 1646, artist_name: 'Joel Kehren', - image: '749fd555-bb99-4009-8888-84db5bb1770b', current_location: 'Germany', type_of_art: 'music', slug: 'joel-kehren', @@ -833,7 +441,6 @@ export default { { id: 1647, artist_name: 'Kezeg', - image: '5140c599-530c-48f4-87b7-0bf77d75acc5', current_location: 'Bern', type_of_art: 'music', slug: 'kezeg', @@ -841,18 +448,11 @@ export default { facebook_url: 'https://www.facebook.com/Kezeg.DnB/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 278 - } - } - ] + events: [{ events_id: { id: 278 } }] }, { id: 1648, artist_name: 'Akespeare', - image: 'fbe87729-10c7-4462-9cd6-89da36d0bd45', current_location: 'Bristol', type_of_art: 'music', slug: 'akespeare', @@ -860,18 +460,11 @@ export default { facebook_url: 'https://www.facebook.com/Mc-Akespeare-301117003251744/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 278 - } - } - ] + events: [{ events_id: { id: 278 } }] }, { id: 1649, artist_name: 'Blastnoize', - image: 'cdbfbd04-b879-4b5b-b769-a648033a2560', current_location: 'Hamburg', type_of_art: 'music', slug: 'blastnoize', @@ -879,18 +472,11 @@ export default { facebook_url: 'https://www.facebook.com/pg/blastblastnoize/about/?ref=page_internal', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 279 - } - } - ] + events: [{ events_id: { id: 279 } }] }, { id: 1650, artist_name: 'Alexander Martel', - image: '0ae2fc34-8540-4745-a15b-4c7d99d33a97', current_location: 'Hamburg', type_of_art: 'music', slug: 'alexander-martel', @@ -898,18 +484,11 @@ export default { facebook_url: 'https://www.facebook.com/ryokmusic', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 279 - } - } - ] + events: [{ events_id: { id: 279 } }] }, { id: 1651, artist_name: 'Fraktion Freude', - image: '12603376-5808-40b5-817c-e9ee5e82c59a', current_location: 'Hamburg', type_of_art: 'music', slug: 'fraktion-freude', @@ -917,18 +496,11 @@ export default { facebook_url: 'https://www.facebook.com/FraktionFreude/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 279 - } - } - ] + events: [{ events_id: { id: 279 } }] }, { id: 1652, artist_name: 'Rauschakustik', - image: '03940758-c43b-499e-ae82-7da415967dcb', current_location: 'Berlin', type_of_art: 'music', slug: 'rauschakustik', @@ -936,28 +508,11 @@ export default { facebook_url: 'https://www.facebook.com/mattmorra.official/?ref=page_internal', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 281 - } - }, - { - events_id: { - id: 284 - } - }, - { - events_id: { - id: 280 - } - } - ] + events: [{ events_id: { id: 281 } }, { events_id: { id: 284 } }, { events_id: { id: 280 } }] }, { id: 1653, artist_name: 'Thomas Longio', - image: '4b165ce8-e72a-46de-b2b3-cc037a90a020', current_location: 'Maastricht', type_of_art: 'music', slug: 'thomas-longio', @@ -965,23 +520,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 284 - } - }, - { - events_id: { - id: 240 - } - } - ] + events: [{ events_id: { id: 284 } }, { events_id: { id: 240 } }] }, { id: 1654, artist_name: 'Colors Amped', - image: 'cdb9b663-f9ea-4681-981a-bde39ba6791d', current_location: 'Maastricht', type_of_art: 'music', slug: 'colors-amped', @@ -989,18 +532,11 @@ export default { facebook_url: 'https://www.facebook.com/colorsamped/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 275 - } - } - ] + events: [{ events_id: { id: 275 } }] }, { id: 1655, artist_name: 'Patrick Schulze', - image: '6577db8b-b11b-4c91-a2fa-d0496217aee9', current_location: 'Hamburg', type_of_art: 'music', slug: 'patrick-schulze', @@ -1008,18 +544,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 275 - } - } - ] + events: [{ events_id: { id: 275 } }] }, { id: 1656, artist_name: 'Max Kellner', - image: '3d120cb9-c3a0-4363-98ad-615bfe6c8d55', current_location: 'Berlin', type_of_art: 'music', slug: 'max-kellner', @@ -1027,18 +556,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 283 - } - } - ] + events: [{ events_id: { id: 283 } }] }, { id: 1657, artist_name: 'Wanderlust', - image: '28bfad92-4ba3-4ebd-93a7-9fa8ed111e13', current_location: 'Berlin', type_of_art: 'music', slug: 'wanderlust', @@ -1046,18 +568,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 283 - } - } - ] + events: [{ events_id: { id: 283 } }] }, { id: 1658, artist_name: 'Boostive', - image: '47af9fa8-e2d2-48ce-ad79-60edd3ddb810', current_location: 'Santa Cruz', type_of_art: 'music', slug: 'boostive', @@ -1065,18 +580,11 @@ export default { facebook_url: 'https://www.facebook.com/boostive/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 276 - } - } - ] + events: [{ events_id: { id: 276 } }] }, { id: 1659, artist_name: 'Westron', - image: 'ba57739d-cdae-4619-8abd-0e6c0f3ae4b9', current_location: '', type_of_art: 'music', slug: 'westron', @@ -1084,18 +592,11 @@ export default { facebook_url: 'https://www.facebook.com/westronmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 276 - } - } - ] + events: [{ events_id: { id: 276 } }] }, { id: 1660, artist_name: 'Whys Guy', - image: 'e921ec15-aad5-491d-b916-376475a06f13', current_location: 'Bay Area, California', type_of_art: 'music', slug: 'whys-guy', @@ -1103,18 +604,11 @@ export default { facebook_url: 'https://www.facebook.com/whysguymusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 276 - } - } - ] + events: [{ events_id: { id: 276 } }] }, { id: 1661, artist_name: 'Analogue Choir Boys', - image: '23136e68-b7c7-434a-8373-180e964ad105', current_location: 'Maastricht', type_of_art: 'music', slug: 'analogue-choir-boys', @@ -1124,42 +618,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 206 - } - }, - { - events_id: { - id: 213 - } - }, - { - events_id: { - id: 228 - } - }, - { - events_id: { - id: 242 - } - }, - { - events_id: { - id: 293 - } - }, - { - events_id: { - id: 243 - } - } + { events_id: { id: 206 } }, + { events_id: { id: 213 } }, + { events_id: { id: 228 } }, + { events_id: { id: 242 } }, + { events_id: { id: 293 } }, + { events_id: { id: 243 } } ] }, { id: 1662, artist_name: 'Tizian', - image: 'e4d46ad4-a348-40f4-8ef1-adaa24cc40e8', current_location: 'Berlin', type_of_art: 'music', slug: 'tizian', @@ -1167,18 +636,11 @@ export default { facebook_url: 'https://www.facebook.com/Zosserecords/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 228 - } - } - ] + events: [{ events_id: { id: 228 } }] }, { id: 1663, artist_name: 'No Reset', - image: '878d16b2-e678-4121-8ed0-ee7f7aa10b32', current_location: 'Amsterdam', type_of_art: 'music', slug: 'no-reset', @@ -1186,28 +648,11 @@ export default { facebook_url: 'https://www.facebook.com/NoReset.Ernesto', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 202 - } - }, - { - events_id: { - id: 249 - } - }, - { - events_id: { - id: 265 - } - } - ] + events: [{ events_id: { id: 202 } }, { events_id: { id: 249 } }, { events_id: { id: 265 } }] }, { id: 1664, artist_name: 'Nir Ivenizki', - image: 'd1032fbd-ac14-426d-9390-e0f62ee2c8d4', current_location: 'Berlin', type_of_art: 'music', slug: 'nir-ivenizki', @@ -1215,18 +660,11 @@ export default { facebook_url: 'https://www.facebook.com/nir.ivenizki', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 228 - } - } - ] + events: [{ events_id: { id: 228 } }] }, { id: 1665, artist_name: 'Doron Eisenberg', - image: '039a00d8-2c3b-4b71-b924-2ddd79b6627f', current_location: 'Berlin', type_of_art: 'music', slug: 'doron-eisenberg', @@ -1234,18 +672,11 @@ export default { facebook_url: 'https://www.facebook.com/doroneisenberg/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 228 - } - } - ] + events: [{ events_id: { id: 228 } }] }, { id: 1666, artist_name: 'Gabo Lora', - image: '4759bf93-a077-4540-abfd-bc3228463cde', current_location: 'Paris', type_of_art: 'music', slug: 'gabo-lora', @@ -1253,23 +684,11 @@ export default { facebook_url: 'https://www.facebook.com/gaboloradj', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 249 - } - }, - { - events_id: { - id: 265 - } - } - ] + events: [{ events_id: { id: 249 } }, { events_id: { id: 265 } }] }, { id: 1667, artist_name: 'Ground Method', - image: '36a1bb3a-b528-4d64-95dd-ffb4b667d18d', current_location: 'Amsterdam', type_of_art: 'music', slug: 'ground-method', @@ -1278,42 +697,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 232 - } - }, - { - events_id: { - id: 248 - } - }, - { - events_id: { - id: 250 - } - }, - { - events_id: { - id: 251 - } - }, - { - events_id: { - id: 255 - } - }, - { - events_id: { - id: 308 - } - } + { events_id: { id: 232 } }, + { events_id: { id: 248 } }, + { events_id: { id: 250 } }, + { events_id: { id: 251 } }, + { events_id: { id: 255 } }, + { events_id: { id: 308 } } ] }, { id: 1668, artist_name: 'Yorick Ludolph', - image: 'a1dbda40-b9e1-41a8-95ea-96aef59734dc', current_location: 'Amsterdam', type_of_art: 'music', slug: 'yorick-ludolph', @@ -1321,18 +715,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 265 - } - } - ] + events: [{ events_id: { id: 265 } }] }, { id: 1669, artist_name: 'Karl Friedrich', - image: 'f3c0fbe6-532f-4e15-80d5-75754d86575c', current_location: 'Halle', type_of_art: 'music', slug: 'karl-friedrich', @@ -1340,18 +727,11 @@ export default { facebook_url: 'https://www.facebook.com/karltothefriedrich', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 248 - } - } - ] + events: [{ events_id: { id: 248 } }] }, { id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', current_location: 'Amsterdam', type_of_art: 'music', slug: 'some-chemistry', @@ -1360,47 +740,18 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 206 - } - }, - { - events_id: { - id: 225 - } - }, - { - events_id: { - id: 423 - } - }, - { - events_id: { - id: 479 - } - }, - { - events_id: { - id: 253 - } - }, - { - events_id: { - id: 247 - } - }, - { - events_id: { - id: 316 - } - } + { events_id: { id: 206 } }, + { events_id: { id: 225 } }, + { events_id: { id: 423 } }, + { events_id: { id: 479 } }, + { events_id: { id: 253 } }, + { events_id: { id: 247 } }, + { events_id: { id: 316 } } ] }, { id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', current_location: 'Amsterdam', type_of_art: 'music', slug: 'me-n-u', @@ -1409,62 +760,21 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 225 - } - }, - { - events_id: { - id: 423 - } - }, - { - events_id: { - id: 442 - } - }, - { - events_id: { - id: 329 - } - }, - { - events_id: { - id: 479 - } - }, - { - events_id: { - id: 233 - } - }, - { - events_id: { - id: 247 - } - }, - { - events_id: { - id: 563 - } - }, - { - events_id: { - id: 582 - } - }, - { - events_id: { - id: 606 - } - } + { events_id: { id: 225 } }, + { events_id: { id: 423 } }, + { events_id: { id: 442 } }, + { events_id: { id: 329 } }, + { events_id: { id: 479 } }, + { events_id: { id: 233 } }, + { events_id: { id: 247 } }, + { events_id: { id: 563 } }, + { events_id: { id: 582 } }, + { events_id: { id: 606 } } ] }, { id: 1672, artist_name: 'La Vondèl', - image: '84451a58-cc75-4073-a54c-95b43bdf5494', current_location: 'Amsterdam', type_of_art: 'music', slug: 'la-vondel', @@ -1472,18 +782,11 @@ export default { facebook_url: 'https://www.facebook.com/lavondel/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 247 - } - } - ] + events: [{ events_id: { id: 247 } }] }, { id: 1673, artist_name: 'Vela Uniform', - image: '7734611c-0e70-42ff-a88b-556a4d860999', current_location: 'Amsterdam', type_of_art: 'music', slug: 'vela-uniform', @@ -1491,18 +794,11 @@ export default { facebook_url: 'https://www.facebook.com/velauniform/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 250 - } - } - ] + events: [{ events_id: { id: 250 } }] }, { id: 1674, artist_name: 'Emil Berliner', - image: '73a814ec-2284-4a25-8490-d06d7166300d', current_location: 'Vienna', type_of_art: 'music', slug: 'emil-berliner', @@ -1510,18 +806,11 @@ export default { facebook_url: 'https://www.facebook.com/emil.berliner', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 249 - } - } - ] + events: [{ events_id: { id: 249 } }] }, { id: 1675, artist_name: 'Ornamental', - image: 'f4467971-5db9-47bb-ac39-3c6ca8ac231d', current_location: 'Amsterdam', type_of_art: 'music', slug: 'ornamental', @@ -1529,23 +818,11 @@ export default { facebook_url: 'https://www.facebook.com/iwant2beornamental/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 232 - } - }, - { - events_id: { - id: 251 - } - } - ] + events: [{ events_id: { id: 232 } }, { events_id: { id: 251 } }] }, { id: 1676, artist_name: 'Trippin Jaguar', - image: '78c1b4cb-40c3-4f44-9454-1aac01b753b3', current_location: 'Amsterdam', type_of_art: 'music', slug: 'trippin-jaguar', @@ -1554,32 +831,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 225 - } - }, - { - events_id: { - id: 455 - } - }, - { - events_id: { - id: 479 - } - }, - { - events_id: { - id: 253 - } - } + { events_id: { id: 225 } }, + { events_id: { id: 455 } }, + { events_id: { id: 479 } }, + { events_id: { id: 253 } } ] }, { id: 1677, artist_name: 'URUBU Marinka', - image: '6e324ea7-933b-405e-905d-df3ffe6f9044', current_location: 'Sao Paulo', type_of_art: 'music', slug: 'urubu-marinka', @@ -1587,18 +847,11 @@ export default { facebook_url: 'https://www.facebook.com/urubumarinka', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 253 - } - } - ] + events: [{ events_id: { id: 253 } }] }, { id: 1678, artist_name: 'Martha van Straaten', - image: '963f6f40-5524-4fec-b8f6-20ae361523ef', current_location: 'Berlin', type_of_art: 'music', slug: 'martha-van-straaten', @@ -1606,23 +859,11 @@ export default { facebook_url: 'https://www.facebook.com/maarthaavaanstraaten', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 253 - } - }, - { - events_id: { - id: 513 - } - } - ] + events: [{ events_id: { id: 253 } }, { events_id: { id: 513 } }] }, { id: 1679, artist_name: 'Cyspe', - image: 'a0c92524-3a0d-495e-93ad-389632d9ed67', current_location: 'Berlin', type_of_art: 'music', slug: 'cyspe', @@ -1630,18 +871,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 255 - } - } - ] + events: [{ events_id: { id: 255 } }] }, { id: 1680, artist_name: 'Nils Hoffmann', - image: '1fb6bbee-ce87-4b92-afd5-2ed021602e9f', current_location: 'Berlin', type_of_art: 'music', slug: 'nils-hoffmann', @@ -1654,7 +888,6 @@ export default { { id: 1681, artist_name: 'BeatuniQue', - image: '48945b0e-c746-4490-bd1a-46a41ff13722', current_location: 'Amsterdam', type_of_art: 'music', slug: 'beatunique', @@ -1662,23 +895,11 @@ export default { facebook_url: 'https://www.facebook.com/BeatuniQueConnection/', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 297 - } - }, - { - events_id: { - id: 306 - } - } - ] + events: [{ events_id: { id: 297 } }, { events_id: { id: 306 } }] }, { id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', current_location: 'Amsterdam', type_of_art: 'music', slug: 'sauerkraut', @@ -1687,107 +908,30 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 207 - } - }, - { - events_id: { - id: 287 - } - }, - { - events_id: { - id: 352 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 457 - } - }, - { - events_id: { - id: 472 - } - }, - { - events_id: { - id: 202 - } - }, - { - events_id: { - id: 220 - } - }, - { - events_id: { - id: 233 - } - }, - { - events_id: { - id: 236 - } - }, - { - events_id: { - id: 311 - } - }, - { - events_id: { - id: 335 - } - }, - { - events_id: { - id: 350 - } - }, - { - events_id: { - id: 354 - } - }, - { - events_id: { - id: 354 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 207 } }, + { events_id: { id: 287 } }, + { events_id: { id: 352 } }, + { events_id: { id: 309 } }, + { events_id: { id: 324 } }, + { events_id: { id: 351 } }, + { events_id: { id: 351 } }, + { events_id: { id: 457 } }, + { events_id: { id: 472 } }, + { events_id: { id: 202 } }, + { events_id: { id: 220 } }, + { events_id: { id: 233 } }, + { events_id: { id: 236 } }, + { events_id: { id: 311 } }, + { events_id: { id: 335 } }, + { events_id: { id: 350 } }, + { events_id: { id: 354 } }, + { events_id: { id: 354 } }, + { events_id: { id: 582 } } ] }, { id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', current_location: 'Amsterdam', type_of_art: 'music', slug: 'lola-villa', @@ -1796,57 +940,20 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 207 - } - }, - { - events_id: { - id: 304 - } - }, - { - events_id: { - id: 320 - } - }, - { - events_id: { - id: 391 - } - }, - { - events_id: { - id: 202 - } - }, - { - events_id: { - id: 307 - } - }, - { - events_id: { - id: 311 - } - }, - { - events_id: { - id: 318 - } - }, - { - events_id: { - id: 354 - } - } + { events_id: { id: 207 } }, + { events_id: { id: 304 } }, + { events_id: { id: 320 } }, + { events_id: { id: 391 } }, + { events_id: { id: 202 } }, + { events_id: { id: 307 } }, + { events_id: { id: 311 } }, + { events_id: { id: 318 } }, + { events_id: { id: 354 } } ] }, { id: 1685, artist_name: 'Nathan der Weise', - image: 'e3a247a8-40cd-4a67-b7b1-fcf82da8e330', current_location: 'Amsterdam', type_of_art: 'music', slug: 'nathan-der-weise', @@ -1854,18 +961,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 232 - } - } - ] + events: [{ events_id: { id: 232 } }] }, { id: 1686, artist_name: 'RLHBSLCN', - image: '90bb550a-cc57-45fc-98bd-9b60912a27d1', current_location: 'Leipzig', type_of_art: 'music', slug: 'rlhbslcn', @@ -1873,18 +973,11 @@ export default { facebook_url: 'https://www.facebook.com/rlhbslcn/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 232 - } - } - ] + events: [{ events_id: { id: 232 } }] }, { id: 1687, artist_name: 'LUi.', - image: '0d7c2835-52e6-490f-aa30-afc6f33a091c', current_location: 'Amsterdam', type_of_art: 'music', slug: 'lui', @@ -1892,18 +985,11 @@ export default { facebook_url: 'https://www.facebook.com/Lui.artist/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 220 - } - } - ] + events: [{ events_id: { id: 220 } }] }, { id: 1688, artist_name: 'Temperini', - image: '298e61f4-3af9-424b-9ff2-6166002a3b06', current_location: 'Sao Paulo', type_of_art: 'music', slug: 'temperini', @@ -1912,32 +998,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 454 - } - }, - { - events_id: { - id: 220 - } - }, - { - events_id: { - id: 318 - } - } + { events_id: { id: 324 } }, + { events_id: { id: 454 } }, + { events_id: { id: 220 } }, + { events_id: { id: 318 } } ] }, { id: 1689, artist_name: 'G͝a̮m̈a͇', - image: 'a941f14b-5c6d-4d3c-b77f-85b3c387b0ed', current_location: 'Rio', type_of_art: 'music', slug: 'g-a-m-a', @@ -1950,7 +1019,6 @@ export default { { id: 1690, artist_name: 'Niju', - image: '712a1137-b068-4e0e-a11b-e80428a4a424', current_location: 'Berlin', type_of_art: 'music', slug: 'niju', @@ -1958,23 +1026,11 @@ export default { facebook_url: 'https://www.facebook.com/Nijuofficial/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 320 - } - }, - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 320 } }, { events_id: { id: 353 } }] }, { id: 1691, artist_name: 'Monsieur Mango', - image: '006e638d-1a1f-43ce-96d7-7b23f080f36b', current_location: 'Amsterdam', type_of_art: 'music', slug: 'monsieur-mango', @@ -1982,28 +1038,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 417 - } - }, - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 202 - } - } - ] + events: [{ events_id: { id: 417 } }, { events_id: { id: 449 } }, { events_id: { id: 202 } }] }, { id: 1692, artist_name: 'Kolect', - image: '1e2738b3-e9ad-4da1-bb55-6f1d14e3da86', current_location: 'Kiel', type_of_art: 'music', slug: 'kolect', @@ -2011,18 +1050,11 @@ export default { facebook_url: 'https://www.facebook.com/kolectkollektiv/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 226 - } - } - ] + events: [{ events_id: { id: 226 } }] }, { id: 1693, artist_name: 'Terry Benedikt', - image: '8e1429cc-cfc3-4050-bc12-62ab76e40f04', current_location: '', type_of_art: 'music', slug: 'terry-benedikt', @@ -2031,42 +1063,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 206 - } - }, - { - events_id: { - id: 246 - } - }, - { - events_id: { - id: 260 - } - }, - { - events_id: { - id: 420 - } - }, - { - events_id: { - id: 437 - } - }, - { - events_id: { - id: 351 - } - } + { events_id: { id: 206 } }, + { events_id: { id: 246 } }, + { events_id: { id: 260 } }, + { events_id: { id: 420 } }, + { events_id: { id: 437 } }, + { events_id: { id: 351 } } ] }, { id: 1694, artist_name: 'Byrke Lou', - image: '7da1e4f6-a62e-4720-a075-03a02c41f4b7', current_location: 'Berlin', type_of_art: 'music', slug: 'byrke-lou', @@ -2074,18 +1081,11 @@ export default { facebook_url: 'https://www.facebook.com/studiobyrkelou/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 208 - } - } - ] + events: [{ events_id: { id: 208 } }] }, { id: 1695, artist_name: 'DLG', - image: 'e929fb94-ca06-4748-ba48-55f5de62d1a0', current_location: 'Amsterdam', type_of_art: 'visual', slug: 'dlg', @@ -2093,18 +1093,11 @@ export default { facebook_url: 'https://www.facebook.com/000dlg000/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 208 - } - } - ] + events: [{ events_id: { id: 208 } }] }, { id: 1696, artist_name: 'Dixie7', - image: '4e13461e-595e-410f-9e1d-bf4c8d9fe010', current_location: 'Maastricht', type_of_art: 'music', slug: 'dixie7', @@ -2112,23 +1105,11 @@ export default { facebook_url: 'https://www.facebook.com/Dixie7.IC/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 292 - } - }, - { - events_id: { - id: 216 - } - } - ] + events: [{ events_id: { id: 292 } }, { events_id: { id: 216 } }] }, { id: 1697, artist_name: 'Teenage Mutants', - image: 'b4a1070a-7690-4d84-bb46-a27de1593307', current_location: 'Mainz', type_of_art: 'music', slug: 'teenage-mutants', @@ -2136,18 +1117,11 @@ export default { facebook_url: 'https://www.facebook.com/teenagemutants/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 206 - } - } - ] + events: [{ events_id: { id: 206 } }] }, { id: 1698, artist_name: "TROMPE L'OEIL", - image: 'fa54a6ee-293d-4943-8ada-12350d662b3f', current_location: 'Maastricht', type_of_art: null, slug: 'trompe-l-oeil', @@ -2155,18 +1129,11 @@ export default { facebook_url: 'https://www.facebook.com/trompeloeilevents/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 235 - } - } - ] + events: [{ events_id: { id: 235 } }] }, { id: 1699, artist_name: 'Don Londi', - image: 'a0dfbb00-cf4e-4b0b-a799-a1c0c94cd923', current_location: 'Maastricht', type_of_art: null, slug: 'don-londi', @@ -2174,23 +1141,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 221 - } - }, - { - events_id: { - id: 258 - } - } - ] + events: [{ events_id: { id: 221 } }, { events_id: { id: 258 } }] }, { id: 1700, artist_name: 'Lurvink', - image: 'd9a4b103-f601-4b4d-bcec-a1c5059e11fb', current_location: 'Maastricht', type_of_art: 'music', slug: 'lurvink', @@ -2199,32 +1154,15 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 205 - } - }, - { - events_id: { - id: 221 - } - }, - { - events_id: { - id: 303 - } - }, - { - events_id: { - id: 301 - } - } + { events_id: { id: 205 } }, + { events_id: { id: 221 } }, + { events_id: { id: 303 } }, + { events_id: { id: 301 } } ] }, { id: 1701, artist_name: 'Viellaroue', - image: '660a2595-f5ba-43c7-9333-324d62a53acc', current_location: '', type_of_art: 'music', slug: 'viellaroue', @@ -2233,37 +1171,16 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 289 - } - }, - { - events_id: { - id: 290 - } - }, - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 325 - } - }, - { - events_id: { - id: 434 - } - } + { events_id: { id: 289 } }, + { events_id: { id: 290 } }, + { events_id: { id: 449 } }, + { events_id: { id: 325 } }, + { events_id: { id: 434 } } ] }, { id: 1702, artist_name: 'Karlo', - image: '107708b6-ba78-428e-9b66-1247993abf85', current_location: '', type_of_art: 'music', slug: 'karlo', @@ -2271,28 +1188,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 219 - } - }, - { - events_id: { - id: 289 - } - }, - { - events_id: { - id: 290 - } - } - ] + events: [{ events_id: { id: 219 } }, { events_id: { id: 289 } }, { events_id: { id: 290 } }] }, { id: 1703, artist_name: 'Duze', - image: 'd3d74eb8-1f79-4439-a6c9-d1f455f35ce9', current_location: '', type_of_art: 'music', slug: 'duze', @@ -2300,23 +1200,11 @@ export default { facebook_url: 'https://www.facebook.com/pg/ichduzesie/about/?ref=page_internal', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 230 - } - }, - { - events_id: { - id: 302 - } - } - ] + events: [{ events_id: { id: 230 } }, { events_id: { id: 302 } }] }, { id: 1704, artist_name: 'dunkel:rot', - image: '462623a5-6b06-4605-ada2-0f1429c4ffa5', current_location: '', type_of_art: 'music', slug: 'dunkel-rot', @@ -2324,18 +1212,11 @@ export default { facebook_url: 'https://www.facebook.com/dunkelrotmusik/?ref=ts&fref=ts&qsefr=1', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 219 - } - } - ] + events: [{ events_id: { id: 219 } }] }, { id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', current_location: 'Leipzig', type_of_art: 'music', slug: 'aio', @@ -2344,67 +1225,22 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 230 - } - }, - { - events_id: { - id: 326 - } - }, - { - events_id: { - id: 327 - } - }, - { - events_id: { - id: 424 - } - }, - { - events_id: { - id: 441 - } - }, - { - events_id: { - id: 325 - } - }, - { - events_id: { - id: 220 - } - }, - { - events_id: { - id: 354 - } - }, - { - events_id: { - id: 352 - } - }, - { - events_id: { - id: 592 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 230 } }, + { events_id: { id: 326 } }, + { events_id: { id: 327 } }, + { events_id: { id: 424 } }, + { events_id: { id: 441 } }, + { events_id: { id: 325 } }, + { events_id: { id: 220 } }, + { events_id: { id: 354 } }, + { events_id: { id: 352 } }, + { events_id: { id: 592 } }, + { events_id: { id: 582 } } ] }, { id: 1706, artist_name: 'Twisted Playground', - image: '5d16bfa7-df52-458b-9623-1d1d56019610', current_location: '', type_of_art: 'music', slug: 'twisted-playground', @@ -2412,18 +1248,11 @@ export default { facebook_url: 'https://www.facebook.com/thetwistedplayground/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 219 - } - } - ] + events: [{ events_id: { id: 219 } }] }, { id: 1707, artist_name: 'Jeroen Schilder', - image: '238cbf54-0ebc-41dd-b50d-e18c9ee7090d', current_location: '', type_of_art: 'music', slug: 'jeroen-schilder', @@ -2431,18 +1260,11 @@ export default { facebook_url: 'https://www.facebook.com/JeroenSchilderMusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 409 - } - } - ] + events: [{ events_id: { id: 409 } }] }, { id: 1708, artist_name: "The Straw That Broke The Donkey's Back", - image: 'ea558fd3-3a8d-4730-b21b-56943fcd88be', current_location: '', type_of_art: 'music', slug: 'the-straw-that-broke-the-donkey-s-back', @@ -2450,23 +1272,11 @@ export default { facebook_url: 'https://www.facebook.com/thestrawthatbrokethedonkeysback/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 409 - } - }, - { - events_id: { - id: 209 - } - } - ] + events: [{ events_id: { id: 409 } }, { events_id: { id: 209 } }] }, { id: 1709, artist_name: 'Sen', - image: 'b41b538c-e904-4f9a-8cb2-8bd4e8716d7f', current_location: '', type_of_art: 'music', slug: 'sen', @@ -2474,18 +1284,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 211 - } - } - ] + events: [{ events_id: { id: 211 } }] }, { id: 1710, artist_name: 'Kisser', - image: 'd1b4f3be-e6b0-42bf-9395-e443e64c069f', current_location: '', type_of_art: 'music', slug: 'kisser', @@ -2494,37 +1297,16 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 215 - } - }, - { - events_id: { - id: 295 - } - }, - { - events_id: { - id: 303 - } - }, - { - events_id: { - id: 301 - } - }, - { - events_id: { - id: 296 - } - } + { events_id: { id: 215 } }, + { events_id: { id: 295 } }, + { events_id: { id: 303 } }, + { events_id: { id: 301 } }, + { events_id: { id: 296 } } ] }, { id: 1711, artist_name: 'Mr.Fries', - image: '37ac1582-a6bc-46e6-8430-eb65a8ce87a9', current_location: 'Dortmund', type_of_art: 'music', slug: 'mr-fries', @@ -2532,18 +1314,11 @@ export default { facebook_url: 'https://www.facebook.com/yo.mr.fries/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 215 - } - } - ] + events: [{ events_id: { id: 215 } }] }, { id: 1712, artist_name: 'CRVEL', - image: '0f2688b6-f66d-4c6b-a503-38fa7d752059', current_location: '', type_of_art: 'music', slug: 'crvel', @@ -2551,23 +1326,11 @@ export default { facebook_url: 'https://www.facebook.com/CRVELCRVEL/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 227 - } - }, - { - events_id: { - id: 293 - } - } - ] + events: [{ events_id: { id: 227 } }, { events_id: { id: 293 } }] }, { id: 1713, artist_name: 'Marius Drescher', - image: '1d952cfd-87c2-4f95-8cc6-dc204efa4d83', current_location: '', type_of_art: 'music', slug: 'marius-drescher', @@ -2575,23 +1338,11 @@ export default { facebook_url: 'https://www.facebook.com/mariusdreschermusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 227 - } - }, - { - events_id: { - id: 507 - } - } - ] + events: [{ events_id: { id: 227 } }, { events_id: { id: 507 } }] }, { id: 1714, artist_name: 'Kandisky', - image: '1bdd4e71-9a7f-47a0-84da-39417388a4cd', current_location: 'Aachen', type_of_art: 'music', slug: 'kandisky', @@ -2599,18 +1350,11 @@ export default { facebook_url: 'https://www.facebook.com/KandinskyOfficial/?fref=ts', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 213 - } - } - ] + events: [{ events_id: { id: 213 } }] }, { id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', current_location: 'Maastricht', type_of_art: 'music', slug: 'david-ley', @@ -2619,52 +1363,19 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 213 - } - }, - { - events_id: { - id: 292 - } - }, - { - events_id: { - id: 295 - } - }, - { - events_id: { - id: 270 - } - }, - { - events_id: { - id: 259 - } - }, - { - events_id: { - id: 225 - } - }, - { - events_id: { - id: 211 - } - }, - { - events_id: { - id: 296 - } - } + { events_id: { id: 213 } }, + { events_id: { id: 292 } }, + { events_id: { id: 295 } }, + { events_id: { id: 270 } }, + { events_id: { id: 259 } }, + { events_id: { id: 225 } }, + { events_id: { id: 211 } }, + { events_id: { id: 296 } } ] }, { id: 1716, artist_name: 'Jeska Onderwater', - image: '21d7defb-fbf6-481e-a313-f23a5a41e7fb', current_location: '', type_of_art: 'music', slug: 'jeska-onderwater', @@ -2672,23 +1383,11 @@ export default { facebook_url: 'https://www.facebook.com/jeskaonthewatermusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 260 - } - }, - { - events_id: { - id: 235 - } - } - ] + events: [{ events_id: { id: 260 } }, { events_id: { id: 235 } }] }, { id: 1717, artist_name: 'Yeti', - image: '8be58474-704a-4fe4-98f6-adecbe57989c', current_location: '', type_of_art: 'music', slug: 'yeti', @@ -2696,23 +1395,11 @@ export default { facebook_url: 'https://www.facebook.com/yetiwilsn/?fref=ts', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 210 - } - }, - { - events_id: { - id: 239 - } - } - ] + events: [{ events_id: { id: 210 } }, { events_id: { id: 239 } }] }, { id: 1718, artist_name: 'Kasymir', - image: '628b36c4-b719-42bb-9266-6cd0cd722355', current_location: '', type_of_art: 'music', slug: 'kasymir', @@ -2720,18 +1407,11 @@ export default { facebook_url: 'https://www.facebook.com/kasymirgold/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 246 - } - } - ] + events: [{ events_id: { id: 246 } }] }, { id: 1719, artist_name: 'Drew Puxty', - image: '4ec25843-5da0-45ae-a12b-b0305261beb3', current_location: '', type_of_art: 'music', slug: 'drew-puxty', @@ -2739,18 +1419,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 267 - } - } - ] + events: [{ events_id: { id: 267 } }] }, { id: 1720, artist_name: 'Mick Save', - image: '04a4daaa-1468-49c9-8d73-c2f39161d8a3', current_location: '', type_of_art: 'music', slug: 'mick-save', @@ -2758,23 +1431,11 @@ export default { facebook_url: 'https://www.facebook.com/Micksaveus/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 245 - } - }, - { - events_id: { - id: 291 - } - } - ] + events: [{ events_id: { id: 245 } }, { events_id: { id: 291 } }] }, { id: 1721, artist_name: 'Konstantin Kraft', - image: '3a4b8468-a454-40c6-ab07-67acd1b73085', current_location: '', type_of_art: 'music', slug: 'konstantin-kraft', @@ -2782,23 +1443,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 268 - } - }, - { - events_id: { - id: 282 - } - } - ] + events: [{ events_id: { id: 268 } }, { events_id: { id: 282 } }] }, { id: 1722, artist_name: 'Herr Bauer', - image: 'd3971707-2ab5-490f-bbda-5174bdc82935', current_location: '', type_of_art: 'music', slug: 'herr-bauer', @@ -2806,18 +1455,11 @@ export default { facebook_url: 'https://www.facebook.com/Herr-Bauer-660555540738820/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 291 - } - } - ] + events: [{ events_id: { id: 291 } }] }, { id: 1723, artist_name: 'Moritz Esyot', - image: '318e0cdf-cca0-4b2d-bff4-a4e56c66a447', current_location: '', type_of_art: 'music', slug: 'moritz-esyot', @@ -2825,18 +1467,11 @@ export default { facebook_url: 'https://www.facebook.com/MoritzEsyot/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 291 - } - } - ] + events: [{ events_id: { id: 291 } }] }, { id: 1724, artist_name: 'Kay Dahmer', - image: '40a39b8e-59a8-4172-93e1-28e0772bf961', current_location: '', type_of_art: 'music', slug: 'kay-dahmer', @@ -2844,18 +1479,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 280 - } - } - ] + events: [{ events_id: { id: 280 } }] }, { id: 1725, artist_name: 'Matt Morra', - image: 'a0695524-2a90-400a-875c-00022c83f1ba', current_location: '', type_of_art: 'music', slug: 'matt-morra', @@ -2868,7 +1496,6 @@ export default { { id: 1726, artist_name: 'Ryok', - image: '3159ac9d-cdd9-4b75-8b28-9441e2402eae', current_location: '', type_of_art: 'music', slug: 'ryok', @@ -2881,7 +1508,6 @@ export default { { id: 1727, artist_name: 'Traumpaar', - image: 'af6a8e5d-6fe4-4cd1-ac54-112ca3f665ae', current_location: '', type_of_art: 'music', slug: 'traumpaar', @@ -2889,23 +1515,11 @@ export default { facebook_url: 'https://www.facebook.com/TraumpaarMusik/?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 277 - } - }, - { - events_id: { - id: 408 - } - } - ] + events: [{ events_id: { id: 277 } }, { events_id: { id: 408 } }] }, { id: 1728, artist_name: 'Melanie', - image: '2ef7ecf9-cfc9-4b37-b416-2e6290807cca', current_location: '', type_of_art: 'visual', slug: 'melanie', @@ -2913,18 +1527,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 408 - } - } - ] + events: [{ events_id: { id: 408 } }] }, { id: 1729, artist_name: 'The VOID', - image: '8877d48a-e18f-4afb-bf8e-5c16db0e4985', current_location: '', type_of_art: 'visual', slug: 'the-void', @@ -2932,18 +1539,11 @@ export default { facebook_url: 'https://www.facebook.com/thevoidmaastricht/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 235 - } - } - ] + events: [{ events_id: { id: 235 } }] }, { id: 1730, artist_name: 'ConnAct Theatre', - image: '5837eae3-ba9d-4c06-a5eb-9a5c5bed9dd1', current_location: '', type_of_art: 'visual', slug: 'connact-theatre', @@ -2951,18 +1551,11 @@ export default { facebook_url: 'https://www.facebook.com/ConnAct-Theatre-368173193390151/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 235 - } - } - ] + events: [{ events_id: { id: 235 } }] }, { id: 1731, artist_name: 'Caisaman', - image: '4218829d-fc8a-4679-a330-df16d4761281', current_location: '', type_of_art: 'music', slug: 'caisaman', @@ -2970,18 +1563,11 @@ export default { facebook_url: 'https://www.facebook.com/mike.duerigen?fref=ts', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 260 - } - } - ] + events: [{ events_id: { id: 260 } }] }, { id: 1732, artist_name: 'Viktor', - image: 'bd698384-58b6-48bd-823d-ba236a864c94', current_location: '', type_of_art: 'music', slug: 'viktor', @@ -2990,42 +1576,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 293 - } - }, - { - events_id: { - id: 438 - } - }, - { - events_id: { - id: 444 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 318 - } - }, - { - events_id: { - id: 354 - } - } + { events_id: { id: 293 } }, + { events_id: { id: 438 } }, + { events_id: { id: 444 } }, + { events_id: { id: 324 } }, + { events_id: { id: 318 } }, + { events_id: { id: 354 } } ] }, { id: 1733, artist_name: 'Michie Walzheimer', - image: '5df2b358-1d26-4a1d-890b-9692a66ac5ea', current_location: 'Amsterdam', type_of_art: 'music', slug: 'michie-walzheimer', @@ -3033,18 +1594,11 @@ export default { facebook_url: 'https://www.facebook.com/michiewalzheimer', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 294 - } - } - ] + events: [{ events_id: { id: 294 } }] }, { id: 1734, artist_name: 'Victor Norman', - image: '543ec00c-913c-42fe-b666-d91cec0a868e', current_location: 'Stockholm', type_of_art: 'music', slug: 'victor-norman', @@ -3052,18 +1606,11 @@ export default { facebook_url: 'https://www.facebook.com/djvicnorman', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 294 - } - } - ] + events: [{ events_id: { id: 294 } }] }, { id: 1736, artist_name: 'Tessa', - image: '2c2bfd26-a9d5-4902-a8b4-862a89ed66ad', current_location: '', type_of_art: 'music', slug: 'tessa', @@ -3071,23 +1618,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 205 - } - }, - { - events_id: { - id: 260 - } - } - ] + events: [{ events_id: { id: 205 } }, { events_id: { id: 260 } }] }, { id: 1738, artist_name: 'Mculo', - image: '8c69615a-3904-4276-80b4-c3b593c98609', current_location: 'Berlin', type_of_art: null, slug: 'mculo', @@ -3095,23 +1630,11 @@ export default { facebook_url: 'https://www.facebook.com/Mculo-301452776550706/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 295 - } - }, - { - events_id: { - id: 296 - } - } - ] + events: [{ events_id: { id: 295 } }, { events_id: { id: 296 } }] }, { id: 1739, artist_name: 'Aramburu Urubmara', - image: '61008565-34d7-4e5d-8cbe-e2abbd62f021', current_location: '', type_of_art: 'music', slug: 'aramburu-urubmara', @@ -3119,23 +1642,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 298 - } - }, - { - events_id: { - id: 299 - } - } - ] + events: [{ events_id: { id: 298 } }, { events_id: { id: 299 } }] }, { id: 1740, artist_name: 'Outa Rim', - image: '925bc927-bd56-44e7-9b0e-680bb4c4593e', current_location: '', type_of_art: 'music', slug: 'outa-rim', @@ -3143,23 +1654,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 298 - } - }, - { - events_id: { - id: 299 - } - } - ] + events: [{ events_id: { id: 298 } }, { events_id: { id: 299 } }] }, { id: 1741, artist_name: 'The Shamaniac Movement', - image: 'e967f304-a0d8-467c-98b6-1c7458048c04', current_location: 'Amsterdam', type_of_art: 'music', slug: 'the-shamaniac-movement', @@ -3167,28 +1666,11 @@ export default { facebook_url: 'https://www.facebook.com/theshamaniacmovement/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 310 - } - }, - { - events_id: { - id: 297 - } - }, - { - events_id: { - id: 312 - } - } - ] + events: [{ events_id: { id: 310 } }, { events_id: { id: 297 } }, { events_id: { id: 312 } }] }, { id: 1742, artist_name: 'Steffen Kirchhoff', - image: 'd6abb9f3-b583-4fca-ac83-adf17c3849b7', current_location: 'Berlin ', type_of_art: 'music', slug: 'steffen-kirchhoff', @@ -3196,28 +1678,11 @@ export default { facebook_url: 'https://www.facebook.com/Steffen-Kirchhoff-174010512622541/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 297 - } - }, - { - events_id: { - id: 331 - } - }, - { - events_id: { - id: 354 - } - } - ] + events: [{ events_id: { id: 297 } }, { events_id: { id: 331 } }, { events_id: { id: 354 } }] }, { id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', current_location: 'Göttingen', type_of_art: 'music', slug: 'tante-dante', @@ -3226,67 +1691,22 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 450 - } - }, - { - events_id: { - id: 472 - } - }, - { - events_id: { - id: 297 - } - }, - { - events_id: { - id: 316 - } - }, - { - events_id: { - id: 354 - } - }, - { - events_id: { - id: 594 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 309 } }, + { events_id: { id: 449 } }, + { events_id: { id: 324 } }, + { events_id: { id: 351 } }, + { events_id: { id: 450 } }, + { events_id: { id: 472 } }, + { events_id: { id: 297 } }, + { events_id: { id: 316 } }, + { events_id: { id: 354 } }, + { events_id: { id: 594 } }, + { events_id: { id: 582 } } ] }, { id: 1744, artist_name: 'Zebra Centauri', - image: 'fd71de79-0332-4fbc-b8f7-161c054f412f', current_location: 'Dresden', type_of_art: 'music', slug: 'zebra-centauri', @@ -3294,18 +1714,11 @@ export default { facebook_url: 'https://www.facebook.com/zebra.centauri/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 302 - } - } - ] + events: [{ events_id: { id: 302 } }] }, { id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', current_location: '', type_of_art: 'music', slug: 'nadav-dagon', @@ -3314,92 +1727,27 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 302 - } - }, - { - events_id: { - id: 314 - } - }, - { - events_id: { - id: 328 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 416 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 454 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 474 - } - }, - { - events_id: { - id: 475 - } - }, - { - events_id: { - id: 481 - } - }, - { - events_id: { - id: 482 - } - }, - { - events_id: { - id: 323 - } - }, - { - events_id: { - id: 354 - } - }, - { - events_id: { - id: 321 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 302 } }, + { events_id: { id: 314 } }, + { events_id: { id: 328 } }, + { events_id: { id: 309 } }, + { events_id: { id: 416 } }, + { events_id: { id: 324 } }, + { events_id: { id: 454 } }, + { events_id: { id: 434 } }, + { events_id: { id: 474 } }, + { events_id: { id: 475 } }, + { events_id: { id: 481 } }, + { events_id: { id: 482 } }, + { events_id: { id: 323 } }, + { events_id: { id: 354 } }, + { events_id: { id: 321 } }, + { events_id: { id: 582 } } ] }, { id: 1746, artist_name: 'Franca', - image: 'f8e07f1d-acc3-4770-9a6f-1b5cc87610da', current_location: 'Cologne', type_of_art: 'music', slug: 'franca', @@ -3407,28 +1755,11 @@ export default { facebook_url: 'https://www.facebook.com/Francaplay/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 302 - } - }, - { - events_id: { - id: 320 - } - }, - { - events_id: { - id: 455 - } - } - ] + events: [{ events_id: { id: 302 } }, { events_id: { id: 320 } }, { events_id: { id: 455 } }] }, { id: 1747, artist_name: 'Aquinox', - image: '73b1d201-a9c7-4111-9bdc-32a0da8a10c6', current_location: 'Utrecht', type_of_art: null, slug: 'aquinox', @@ -3436,18 +1767,11 @@ export default { facebook_url: 'https://www.facebook.com/aquinoxmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 212 - } - } - ] + events: [{ events_id: { id: 212 } }] }, { id: 1748, artist_name: 'Pietro Fachini', - image: 'b7d3efcf-272f-46df-bfa0-363179e5fc22', current_location: 'Milano', type_of_art: 'visual', slug: 'pietro-fachini', @@ -3460,7 +1784,6 @@ export default { { id: 1749, artist_name: 'ENKA', - image: 'ebe99115-0081-4997-824c-0ccc56ea008f', current_location: 'Amsterdam', type_of_art: 'music', slug: 'enka', @@ -3468,23 +1791,11 @@ export default { facebook_url: 'https://www.facebook.com/enka.me', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 304 - } - }, - { - events_id: { - id: 307 - } - } - ] + events: [{ events_id: { id: 304 } }, { events_id: { id: 307 } }] }, { id: 1750, artist_name: 'Innellea', - image: '832d8199-cfc8-4c1d-a6fc-e0d6199ec107', current_location: '', type_of_art: 'music', slug: 'innellea', @@ -3492,18 +1803,11 @@ export default { facebook_url: 'https://www.facebook.com/innellea/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 308 - } - } - ] + events: [{ events_id: { id: 308 } }] }, { id: 1751, artist_name: 'Native Response', - image: '71004aeb-7a6f-4daa-a2fd-9c84303ee274', current_location: 'Amsterdam', type_of_art: 'music', slug: 'native-response', @@ -3511,18 +1815,11 @@ export default { facebook_url: 'https://www.facebook.com/nativeresponse/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 308 - } - } - ] + events: [{ events_id: { id: 308 } }] }, { id: 1752, artist_name: 'Noah Lyas', - image: '65a09132-60e5-47f1-92f1-a2782dffa01b', current_location: 'Amsterdam', type_of_art: null, slug: 'noah-lyas', @@ -3530,18 +1827,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 308 - } - } - ] + events: [{ events_id: { id: 308 } }] }, { id: 1753, artist_name: 'Gam̈a͇', - image: '2426daf8-5f72-4c4c-a9bc-b34021b9aabe', current_location: 'Rio de Janeiro', type_of_art: 'music', slug: 'gama', @@ -3549,28 +1839,11 @@ export default { facebook_url: 'https://www.facebook.com/fritzgams/?pnref=lhc', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 220 - } - }, - { - events_id: { - id: 314 - } - } - ] + events: [{ events_id: { id: 351 } }, { events_id: { id: 220 } }, { events_id: { id: 314 } }] }, { id: 1754, artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', current_location: 'Berlin ', type_of_art: 'music', slug: 'anton-feine', @@ -3579,47 +1852,18 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 314 - } - }, - { - events_id: { - id: 328 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 323 - } - }, - { - events_id: { - id: 331 - } - }, - { - events_id: { - id: 354 - } - } + { events_id: { id: 314 } }, + { events_id: { id: 328 } }, + { events_id: { id: 309 } }, + { events_id: { id: 324 } }, + { events_id: { id: 323 } }, + { events_id: { id: 331 } }, + { events_id: { id: 354 } } ] }, { id: 1755, artist_name: 'Color your mind', - image: '81338bb5-a1a0-4a43-a521-dc5c2dd7497d', current_location: '', type_of_art: 'music', slug: 'color-your-mind', @@ -3628,42 +1872,17 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 314 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 406 - } - }, - { - events_id: { - id: 323 - } - }, - { - events_id: { - id: 331 - } - }, - { - events_id: { - id: 354 - } - } + { events_id: { id: 314 } }, + { events_id: { id: 309 } }, + { events_id: { id: 406 } }, + { events_id: { id: 323 } }, + { events_id: { id: 331 } }, + { events_id: { id: 354 } } ] }, { id: 1756, artist_name: 'Kototama', - image: 'bf0d9500-4e22-4562-b778-f28a6008c57b', current_location: 'Helsinki', type_of_art: null, slug: 'kototama', @@ -3671,18 +1890,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 1757, artist_name: 'Barrio lindo', - image: '212284fc-6eb3-47db-b887-01258e77aa59', current_location: '', type_of_art: 'music', slug: 'barrio-lindo', @@ -3690,23 +1902,11 @@ export default { facebook_url: 'https://www.facebook.com/barriolindo1212/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 306 - } - } - ] + events: [{ events_id: { id: 309 } }, { events_id: { id: 306 } }] }, { id: 1758, artist_name: 'Yør Kultura', - image: 'e53ad330-716d-4260-8b2d-cdb47aee8974', current_location: '', type_of_art: 'music', slug: 'yoer-kultura', @@ -3714,23 +1914,11 @@ export default { facebook_url: 'https://www.facebook.com/Yorkultura/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 306 - } - } - ] + events: [{ events_id: { id: 309 } }, { events_id: { id: 306 } }] }, { id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', current_location: 'Berlin', type_of_art: 'music', slug: 'gina-sabatini', @@ -3739,52 +1927,19 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 320 - } - }, - { - events_id: { - id: 310 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 441 - } - }, - { - events_id: { - id: 325 - } - }, - { - events_id: { - id: 472 - } - }, - { - events_id: { - id: 318 - } - }, - { - events_id: { - id: 335 - } - } + { events_id: { id: 320 } }, + { events_id: { id: 310 } }, + { events_id: { id: 309 } }, + { events_id: { id: 441 } }, + { events_id: { id: 325 } }, + { events_id: { id: 472 } }, + { events_id: { id: 318 } }, + { events_id: { id: 335 } } ] }, { id: 1760, artist_name: 'Lieselotte', - image: '812eb580-383f-483b-a173-4d6d7b0afebe', current_location: 'Leipzig', type_of_art: 'music', slug: 'lieselotte', @@ -3797,7 +1952,6 @@ export default { { id: 1761, artist_name: 'Turtur', - image: 'f7ebde38-fda0-48d4-8186-6bb76790cb46', current_location: 'Berlin', type_of_art: 'music', slug: 'turtur', @@ -3805,18 +1959,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1762, artist_name: 'Marcel Puntheller', - image: '75264d00-d6b2-4d6d-986a-39e7ab062d6c', current_location: 'Heidelberg', type_of_art: 'music', slug: 'marcel-puntheller', @@ -3825,42 +1972,17 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 450 - } - }, - { - events_id: { - id: 263 - } - }, - { - events_id: { - id: 422 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 309 } }, + { events_id: { id: 324 } }, + { events_id: { id: 450 } }, + { events_id: { id: 263 } }, + { events_id: { id: 422 } }, + { events_id: { id: 582 } } ] }, { id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', current_location: 'Berlin/Rotterdam', type_of_art: 'music', slug: 'zodya', @@ -3869,47 +1991,18 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 437 - } - }, - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 353 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 309 } }, + { events_id: { id: 437 } }, + { events_id: { id: 449 } }, + { events_id: { id: 324 } }, + { events_id: { id: 351 } }, + { events_id: { id: 353 } }, + { events_id: { id: 582 } } ] }, { id: 1765, artist_name: 'Kyoso', - image: '23d27c37-8001-46c4-b693-5d23f80c8f5b', current_location: 'Berlin', type_of_art: 'music', slug: 'kyoso', @@ -3922,7 +2015,6 @@ export default { { id: 1766, artist_name: 'Jan Buchmann', - image: '660b9070-3d77-4d7e-ae11-68c7d92ae7d7', current_location: 'Darmstadt', type_of_art: 'music', slug: 'jan-buchmann', @@ -3935,7 +2027,6 @@ export default { { id: 1767, artist_name: 'Mieso', - image: 'e2bc2ae0-9c23-406f-bff6-8f166b9689f4', current_location: 'Rostock', type_of_art: 'music', slug: 'mieso', @@ -3948,7 +2039,6 @@ export default { { id: 1768, artist_name: 'Cornelis', - image: '29e03f39-7f8a-4f95-899c-62fbbc199c96', current_location: 'Berlin', type_of_art: 'music', slug: 'cornelis', @@ -3961,7 +2051,6 @@ export default { { id: 1769, artist_name: 'Toldabout', - image: 'c0549aab-3efa-4673-86d2-f2360df5b310', current_location: 'Berlin', type_of_art: 'music', slug: 'toldabout', @@ -3974,7 +2063,6 @@ export default { { id: 1770, artist_name: 'El Zárate', - image: '4fff589e-6545-44b0-aca3-c1956a628e01', current_location: 'Berlin', type_of_art: 'music', slug: 'el-zarate', @@ -3987,7 +2075,6 @@ export default { { id: 1771, artist_name: 'Deep Filip', - image: '2301a5b4-38be-4118-8d33-fedcab6e9cef', current_location: 'Rotterdam', type_of_art: null, slug: 'deep-filip', @@ -3995,23 +2082,11 @@ export default { facebook_url: 'https://www.facebook.com/DeepFilip/?pnref=lhc', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 310 - } - }, - { - events_id: { - id: 312 - } - } - ] + events: [{ events_id: { id: 310 } }, { events_id: { id: 312 } }] }, { id: 1772, artist_name: 'Kraut', - image: 'e102d0f2-80a8-4d6d-8417-5d3fc5d93fdd', current_location: 'Amsterdam', type_of_art: null, slug: 'kraut', @@ -4020,37 +2095,16 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 310 - } - }, - { - events_id: { - id: 423 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 482 - } - }, - { - events_id: { - id: 312 - } - } + { events_id: { id: 310 } }, + { events_id: { id: 423 } }, + { events_id: { id: 351 } }, + { events_id: { id: 482 } }, + { events_id: { id: 312 } } ] }, { id: 1773, artist_name: 'Casimir von Oettingen', - image: 'c2a338dc-86ff-4c86-8624-e11383cbf58a', current_location: 'Berlin', type_of_art: 'music', slug: 'casimir-von-oettingen', @@ -4058,23 +2112,11 @@ export default { facebook_url: 'https://www.facebook.com/der.casimir.von.oettingen/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - }, - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 431 } }, { events_id: { id: 434 } }] }, { id: 1774, artist_name: 'Ring & Dorf', - image: '2d8fab03-945f-4e45-b33e-f03951d7290f', current_location: 'Berlin', type_of_art: 'music', slug: 'ring-and-dorf', @@ -4087,7 +2129,6 @@ export default { { id: 1775, artist_name: 'CaptHaddock', - image: '292daf25-fbff-439c-97f7-95d4ebc44854', current_location: 'Berlin', type_of_art: 'music', slug: 'capthaddock', @@ -4095,23 +2136,11 @@ export default { facebook_url: 'https://www.facebook.com/haddockblau/', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 326 - } - }, - { - events_id: { - id: 327 - } - } - ] + events: [{ events_id: { id: 326 } }, { events_id: { id: 327 } }] }, { id: 1776, artist_name: 'Sawatzki', - image: '4719a40d-c71d-4bed-8b70-3025baa85529', current_location: 'Berlin', type_of_art: 'music', slug: 'sawatzki', @@ -4124,7 +2153,6 @@ export default { { id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', current_location: 'Berlin', type_of_art: 'music', slug: 'andrevictor', @@ -4133,57 +2161,20 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 453 - } - }, - { - events_id: { - id: 456 - } - }, - { - events_id: { - id: 473 - } - }, - { - events_id: { - id: 474 - } - }, - { - events_id: { - id: 475 - } - }, - { - events_id: { - id: 481 - } - }, - { - events_id: { - id: 335 - } - } + { events_id: { id: 309 } }, + { events_id: { id: 324 } }, + { events_id: { id: 453 } }, + { events_id: { id: 456 } }, + { events_id: { id: 473 } }, + { events_id: { id: 474 } }, + { events_id: { id: 475 } }, + { events_id: { id: 481 } }, + { events_id: { id: 335 } } ] }, { id: 1778, artist_name: 'Johnny Kaos', - image: 'a7e40194-d54b-4991-8fac-9d0ebe6023c6', current_location: 'Berlin', type_of_art: 'music', slug: 'johnny-kaos', @@ -4196,7 +2187,6 @@ export default { { id: 1779, artist_name: 'Vittjas Tief', - image: 'e886e10a-242f-4d01-aa80-ecc852a2e0e7', current_location: 'Berlin', type_of_art: 'music', slug: 'vittjas-tief', @@ -4204,18 +2194,11 @@ export default { facebook_url: 'https://www.facebook.com/djvittjastief/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 325 - } - } - ] + events: [{ events_id: { id: 325 } }] }, { id: 1780, artist_name: 'Lonely Ulf', - image: 'cd341dd1-53ad-4778-85d4-a0482b104917', current_location: 'Berlin', type_of_art: 'music', slug: 'lonely-ulf', @@ -4228,7 +2211,6 @@ export default { { id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', current_location: 'Berlin', type_of_art: 'music', slug: 'giz', @@ -4237,52 +2219,19 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 326 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 416 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 319 - } - }, - { - events_id: { - id: 342 - } - }, - { - events_id: { - id: 327 - } - } + { events_id: { id: 326 } }, + { events_id: { id: 309 } }, + { events_id: { id: 416 } }, + { events_id: { id: 324 } }, + { events_id: { id: 351 } }, + { events_id: { id: 319 } }, + { events_id: { id: 342 } }, + { events_id: { id: 327 } } ] }, { id: 1782, artist_name: 'Tuğçe', - image: '93774389-c24e-45d7-8277-1e5eadcd0758', current_location: 'Berlin', type_of_art: 'music', slug: 'tugce', @@ -4290,23 +2239,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 324 } }, { events_id: { id: 534 } }] }, { id: 1783, artist_name: 'Santi', - image: '3d129a1f-9426-4bc9-8c5a-c51f2a965bce', current_location: 'Berlin', type_of_art: 'music', slug: 'santi', @@ -4314,18 +2251,11 @@ export default { facebook_url: 'https://www.facebook.com/santiandtugce', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 1784, artist_name: 'Feller', - image: '8fe6d92e-267a-4ee5-949d-4131c21fcb57', current_location: 'Israel', type_of_art: 'music', slug: 'feller', @@ -4333,23 +2263,11 @@ export default { facebook_url: 'https://www.facebook.com/Feller-108479682537301/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 482 - } - }, - { - events_id: { - id: 321 - } - } - ] + events: [{ events_id: { id: 482 } }, { events_id: { id: 321 } }] }, { id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', current_location: 'Berlin', type_of_art: 'music', slug: 'saphear', @@ -4358,47 +2276,18 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 328 - } - }, - { - events_id: { - id: 424 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 470 - } - }, - { - events_id: { - id: 323 - } - }, - { - events_id: { - id: 321 - } - } + { events_id: { id: 328 } }, + { events_id: { id: 424 } }, + { events_id: { id: 351 } }, + { events_id: { id: 351 } }, + { events_id: { id: 470 } }, + { events_id: { id: 323 } }, + { events_id: { id: 321 } } ] }, { id: 1786, artist_name: 'Roberto Rivadeneira', - image: '5f95db55-6416-4041-b455-a34e7951cf68', current_location: 'Berlin', type_of_art: 'visual', slug: 'roberto-rivadeneira', @@ -4411,7 +2300,6 @@ export default { { id: 1787, artist_name: 'Philipp Fein', - image: 'e7c6362c-a988-43bc-a537-ada880938764', current_location: 'Cologne', type_of_art: 'music', slug: 'philipp-fein', @@ -4424,7 +2312,6 @@ export default { { id: 1788, artist_name: 'Commander Love', - image: 'dac537fa-3ba1-4933-a352-c945af65b46d', current_location: '', type_of_art: 'music', slug: 'commander-love', @@ -4437,7 +2324,6 @@ export default { { id: 1789, artist_name: 'DETMOLT', - image: '41496551-a3b0-4011-87f3-16c3a8257a5e', current_location: 'Cologne', type_of_art: 'music', slug: 'detmolt', @@ -4450,7 +2336,6 @@ export default { { id: 1790, artist_name: 'Thommie G', - image: '754b1003-04ef-4dbe-b077-96eddf1024b0', current_location: 'Haarlem', type_of_art: 'music', slug: 'thommie-g', @@ -4458,23 +2343,11 @@ export default { facebook_url: 'https://www.facebook.com/ThommieGmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 423 - } - }, - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 423 } }, { events_id: { id: 315 } }] }, { id: 1791, artist_name: 'Holed Coin', - image: 'a5f67112-e098-47c7-bda2-3b487f5e637e', current_location: '', type_of_art: 'music', slug: 'holed-coin', @@ -4487,7 +2360,6 @@ export default { { id: 1792, artist_name: 'Luca Musto', - image: 'f789f9cb-6863-49ad-81dc-0fefee2a1dee', current_location: 'Berlin', type_of_art: 'music', slug: 'luca-musto', @@ -4495,18 +2367,11 @@ export default { facebook_url: 'https://www.facebook.com/Luca.Musto/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 329 - } - } - ] + events: [{ events_id: { id: 329 } }] }, { id: 1794, artist_name: 'Simon Jung', - image: '81c0c369-ad58-4660-a071-15931101f7a5', current_location: '', type_of_art: 'visual', slug: 'simon-jung', @@ -4519,7 +2384,6 @@ export default { { id: 1795, artist_name: 'Annika Lintervo & Inka Ylitepsa', - image: 'c4327954-5ba6-4ff4-8e28-a3970075a31a', current_location: '', type_of_art: null, slug: 'annika-lintervo-inka-ylitepsa', @@ -4532,7 +2396,6 @@ export default { { id: 1796, artist_name: 'Arez Metta', - image: '66551cbb-0aa3-4afa-8386-1dc39458b87e', current_location: '', type_of_art: null, slug: 'arez-metta', @@ -4540,18 +2403,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 1797, artist_name: 'Elise Liikala', - image: 'c0d4e146-f57a-4e75-87b2-0462dd67ef2d', current_location: '', type_of_art: null, slug: 'elise-liikala', @@ -4559,18 +2415,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 1799, artist_name: 'Harold Hejazi', - image: 'e273ae80-5fcb-4dd8-a0cb-680e379afd90', current_location: '', type_of_art: null, slug: 'harold-hejazi', @@ -4578,18 +2427,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 1800, artist_name: 'Gilivanka Kedzior', - image: '83d8f674-b8c6-42bc-ab25-eedd737e9bfa', current_location: '', type_of_art: null, slug: 'gilivanka-kedzior', @@ -4602,7 +2444,6 @@ export default { { id: 1801, artist_name: 'Kaisa Illukka', - image: '26043402-8abb-4611-a8a0-5fcc6f0c2e8e', current_location: '', type_of_art: null, slug: 'kaisa-illukka', @@ -4610,18 +2451,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 1802, artist_name: 'Kaisa Kukkonen', - image: '81d118b1-93e0-4688-9e28-99f946e0a8ba', current_location: '', type_of_art: null, slug: 'kaisa-kukkonen', @@ -4634,7 +2468,6 @@ export default { { id: 1803, artist_name: 'Lauri Jäntti', - image: 'dd702d38-b3d8-48f6-945e-da2efc8ed633', current_location: '', type_of_art: null, slug: 'lauri-ja-ntti', @@ -4647,7 +2480,6 @@ export default { { id: 1804, artist_name: 'Laaja-kollektiivi', - image: '5cb2e5cd-c5fe-4fdc-9bac-a87978da6806', current_location: '', type_of_art: null, slug: 'laaja-kollektiivi', @@ -4660,7 +2492,6 @@ export default { { id: 1805, artist_name: 'Laura Cemin', - image: '520c6d99-fe72-405e-9288-c036dc493c09', current_location: '', type_of_art: null, slug: 'laura-cemin', @@ -4673,7 +2504,6 @@ export default { { id: 1806, artist_name: 'M', - image: '40ca9610-5099-4f3a-9037-67913280c8c9', current_location: '', type_of_art: null, slug: 'm', @@ -4686,7 +2516,6 @@ export default { { id: 1807, artist_name: 'Lena Schwingshandl', - image: '32be1884-6016-46b6-baf4-e60753a2fc34', current_location: '', type_of_art: null, slug: 'lena-schwingshandl', @@ -4699,7 +2528,6 @@ export default { { id: 1808, artist_name: 'Mesimarja Paatero', - image: 'ab212239-ae27-4bad-ba47-e505d2e3d1f7', current_location: '', type_of_art: null, slug: 'mesimarja-paatero', @@ -4707,18 +2535,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 1809, artist_name: 'Ona Kamu', - image: 'dcbc5db9-cc7e-4797-8246-d9e1e3ff0f7f', current_location: '', type_of_art: null, slug: 'ona-kamu', @@ -4726,18 +2547,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 1810, artist_name: 'Pekka Litmanen', - image: '7e1074b6-41e0-4c4c-bb60-1563d4e31e5e', current_location: '', type_of_art: null, slug: 'pekka-litmanen', @@ -4750,7 +2564,6 @@ export default { { id: 1811, artist_name: 'Nicolina Stylianou', - image: 'c217e856-a70f-48a2-b3f4-17fea6c40fd4', current_location: '', type_of_art: null, slug: 'nicolina-stylianou', @@ -4763,7 +2576,6 @@ export default { { id: 1812, artist_name: 'elfaux.', - image: 'be248414-c23a-4e7e-8181-c20738d4bf14', current_location: 'Weimar | Dresden', type_of_art: 'music', slug: 'elfaux', @@ -4771,18 +2583,11 @@ export default { facebook_url: 'https://www.facebook.com/elfauxpas/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1813, artist_name: 'Ground', - image: '9c30ca04-14d8-44ea-a7f6-2b0fd6a40f6c', current_location: 'Osaka', type_of_art: 'music', slug: 'ground', @@ -4790,18 +2595,11 @@ export default { facebook_url: 'https://www.facebook.com/groundjp/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1814, artist_name: 'Jennifer Touch', - image: '5d4e90ab-f6b9-4058-85a1-0fbdb45be478', current_location: 'Berlin', type_of_art: 'music', slug: 'jennifer-touch', @@ -4809,18 +2607,11 @@ export default { facebook_url: 'https://www.facebook.com/touch.jennifer/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1815, artist_name: 'Josephine Wedekind', - image: '70666ca9-bbd9-4292-b9f3-f15e31bb6af8', current_location: 'Berlin', type_of_art: 'music', slug: 'josephine-wedekind', @@ -4828,18 +2619,11 @@ export default { facebook_url: 'https://www.facebook.com/djjosephinewedekind/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1816, artist_name: 'Kahl & Kæmena', - image: 'deea67cd-77f6-4da1-81ca-fbc59729ea77', current_location: 'Berlin', type_of_art: 'music', slug: 'kahl-kaemena', @@ -4848,42 +2632,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 5 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 424 - } - }, - { - events_id: { - id: 418 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 353 - } - } + { events_id: { id: 5 } }, + { events_id: { id: 309 } }, + { events_id: { id: 424 } }, + { events_id: { id: 418 } }, + { events_id: { id: 324 } }, + { events_id: { id: 353 } } ] }, { id: 1817, artist_name: 'KATKA', - image: 'e143cd17-546c-4269-96c4-66c1d0ff92b6', current_location: 'Berlin', type_of_art: 'music', slug: 'katka', @@ -4891,23 +2650,11 @@ export default { facebook_url: 'https://www.facebook.com/katkakathiihtak', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 336 - } - }, - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 336 } }, { events_id: { id: 353 } }] }, { id: 1818, artist_name: 'Kotoe', - image: 'd2b294a0-f07d-4f60-9527-c8352e0ee3a8', current_location: 'Berlin', type_of_art: 'music', slug: 'kotoe', @@ -4916,36 +2663,12 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 474 - } - }, - { - events_id: { - id: 353 - } - }, - { - events_id: { - id: 422 - } - }, - { - events_id: { - id: 443 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 351 } }, + { events_id: { id: 474 } }, + { events_id: { id: 353 } }, + { events_id: { id: 422 } }, + { events_id: { id: 443 } }, + { events_id: { id: 582 } } ] }, { @@ -4964,7 +2687,6 @@ export default { { id: 1820, artist_name: 'Raulito Wolf', - image: 'e811b49c-1ad1-490d-9746-ca512f8e8f8d', current_location: 'Berlin', type_of_art: 'music', slug: 'raulito-wolf', @@ -4973,37 +2695,16 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 353 - } - }, - { - events_id: { - id: 513 - } - }, - { - events_id: { - id: 544 - } - }, - { - events_id: { - id: 16 - } - } + { events_id: { id: 449 } }, + { events_id: { id: 353 } }, + { events_id: { id: 513 } }, + { events_id: { id: 544 } }, + { events_id: { id: 16 } } ] }, { id: 1821, artist_name: 'Lazer Lucy', - image: 'f6d91111-83ea-41a5-9996-28924b7d5b9a', current_location: 'Berlin', type_of_art: 'music', slug: 'lazer-lucy', @@ -5012,42 +2713,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 391 - } - }, - { - events_id: { - id: 424 - } - }, - { - events_id: { - id: 353 - } - }, - { - events_id: { - id: 350 - } - }, - { - events_id: { - id: 544 - } - }, - { - events_id: { - id: 16 - } - } + { events_id: { id: 391 } }, + { events_id: { id: 424 } }, + { events_id: { id: 353 } }, + { events_id: { id: 350 } }, + { events_id: { id: 544 } }, + { events_id: { id: 16 } } ] }, { id: 1822, artist_name: 'sagan', - image: '6aa65a1e-1e45-403b-b41c-f475c10518ed', current_location: 'Buenos Aires | Berlin', type_of_art: 'music', slug: 'sagan', @@ -5055,21 +2731,11 @@ export default { facebook_url: 'https://www.facebook.com/SAGANDJ/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - }, - { - events_id: null - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1823, artist_name: 'Thomash', - image: 'a9e27d34-2e2e-4084-81ff-ad8ddb37c72e', current_location: null, type_of_art: 'music', slug: 'thomash', @@ -5077,18 +2743,11 @@ export default { facebook_url: 'https://www.facebook.com/thomash0p', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1824, artist_name: 'VAV', - image: '82ff9a71-351b-4b64-8444-41f5876d1352', current_location: null, type_of_art: 'music', slug: 'vav', @@ -5097,13 +2756,7 @@ export default { 'https://www.facebook.com/vavgermany/?__tn__=K-R&eid=ARAyCpMX1EVMNl6_DntOjMAUWa3nn8f9mVZDI3FoGBnkq2m_gMTcUzifISQurenUPIggqF130GOns7hD&fref=mentions&__xts__[0]=68.ARBSxwIPcZmNkHb-NFQ38zlHqq2ZsK8yl6ATo4y', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1825, @@ -5116,18 +2769,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 1826, artist_name: 'AndShe', - image: 'ca1dc635-2be6-4e32-8bda-332c1df6b8c8', current_location: 'Buenos Aires | Berlin', type_of_art: 'music', slug: 'andshe', @@ -5135,18 +2781,11 @@ export default { facebook_url: 'https://www.facebook.com/andshe222/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1827, artist_name: 'Bonjour Ben', - image: '6a00926f-541e-4f34-8858-b5adbc800e3e', current_location: 'Berlin', type_of_art: 'music', slug: 'bonjour-ben', @@ -5155,32 +2794,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 431 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 352 - } - } + { events_id: { id: 309 } }, + { events_id: { id: 431 } }, + { events_id: { id: 324 } }, + { events_id: { id: 352 } } ] }, { id: 1828, artist_name: 'Ellosophy', - image: 'aa14212b-de0f-47fa-8f1d-4c4a0b52b4ce', current_location: 'Berlin', type_of_art: 'music', slug: 'ellosophy', @@ -5188,13 +2810,7 @@ export default { facebook_url: 'https://www.facebook.com/Ellosophy.live/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1829, @@ -5207,18 +2823,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1830, artist_name: 'Leon Kostner', - image: '7273c75e-30eb-42af-903b-7339d9f69638', current_location: 'Leipzig', type_of_art: 'music', slug: 'leon-kostner', @@ -5226,13 +2835,7 @@ export default { facebook_url: 'https://www.facebook.com/leonkostner/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1831, @@ -5245,18 +2848,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1832, artist_name: 'Mirmur', - image: 'a20a3471-1ebd-46c1-949f-0715f584e22e', current_location: 'Budapest', type_of_art: 'music', slug: 'mirmur', @@ -5264,26 +2860,11 @@ export default { facebook_url: 'https://www.facebook.com/mirmurmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - }, - { - events_id: null - }, - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 431 } }, { events_id: { id: 352 } }] }, { id: 1833, artist_name: 'Sarah Wild', - image: '7610c4b5-89d6-40da-96db-db6dbd4901bb', current_location: 'Berlin', type_of_art: 'music', slug: 'sarah-wild', @@ -5291,18 +2872,11 @@ export default { facebook_url: 'https://www.facebook.com/gutzeitsarah/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1834, artist_name: 'To Be Honest', - image: '33f51123-f8f3-4e24-9ecb-823611c8b13c', current_location: 'Berlin', type_of_art: 'music', slug: 'to-be-honest', @@ -5311,42 +2885,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 422 - } - }, - { - events_id: { - id: 352 - } - }, - { - events_id: { - id: 495 - } - }, - { - events_id: { - id: 16 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 351 } }, + { events_id: { id: 422 } }, + { events_id: { id: 352 } }, + { events_id: { id: 495 } }, + { events_id: { id: 16 } }, + { events_id: { id: 582 } } ] }, { id: 1835, artist_name: 'Tom Eichhagen', - image: '04c2a28a-2478-46b2-9065-467719a5f66c', current_location: 'Berlin', type_of_art: 'music', slug: 'tom-eichhagen', @@ -5354,18 +2903,11 @@ export default { facebook_url: 'https://www.facebook.com/eichhagen/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1837, artist_name: 'Tvisker', - image: '4043625d-b42e-4dfe-9b3a-0ed05596ddbe', current_location: null, type_of_art: 'music', slug: 'tvisker', @@ -5373,23 +2915,11 @@ export default { facebook_url: 'https://www.facebook.com/tviskerberlin/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - }, - { - events_id: { - id: 350 - } - } - ] + events: [{ events_id: { id: 418 } }, { events_id: { id: 350 } }] }, { id: 1838, artist_name: 'Paul Träumer', - image: '7297b7b3-6d9a-447e-99b5-e07656579dff', current_location: null, type_of_art: 'music', slug: 'paul-traeumer', @@ -5397,28 +2927,11 @@ export default { facebook_url: 'https://www.facebook.com/paultraeumer/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 230 - } - }, - { - events_id: { - id: 223 - } - }, - { - events_id: { - id: 350 - } - } - ] + events: [{ events_id: { id: 230 } }, { events_id: { id: 223 } }, { events_id: { id: 350 } }] }, { id: 1839, artist_name: 'Inkaa', - image: 'b3a27cf9-ff35-4abd-b309-652b7a338086', current_location: 'Berlin', type_of_art: 'music', slug: 'inkaa', @@ -5426,13 +2939,7 @@ export default { facebook_url: 'https://www.facebook.com/DJaneINKAA/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 350 - } - } - ] + events: [{ events_id: { id: 350 } }] }, { id: 1840, @@ -5445,18 +2952,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 350 - } - } - ] + events: [{ events_id: { id: 350 } }] }, { id: 1841, artist_name: 'Λrilu', - image: 'adc66033-0720-474d-a152-1c08af0ecb86', current_location: 'Berlin', type_of_art: 'music', slug: 'arilu', @@ -5464,18 +2964,11 @@ export default { facebook_url: 'https://www.facebook.com/arilumusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1842, artist_name: 'Mente Organica', - image: '48f2fca7-e206-41fc-8dac-7ba25dabe997', current_location: 'Bogota', type_of_art: 'music', slug: 'mente-organica', @@ -5483,18 +2976,11 @@ export default { facebook_url: 'https://www.facebook.com/menteorganicamusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1844, artist_name: 'Calling Marian', - image: '0365e7d0-fc63-4eb1-bde1-33f49367a2a4', current_location: 'Paris', type_of_art: 'music', slug: 'calling-marian', @@ -5502,18 +2988,11 @@ export default { facebook_url: 'https://www.facebook.com/callingmarian/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', current_location: 'Dresden', type_of_art: 'music', slug: 'casio', @@ -5522,47 +3001,18 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 424 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 457 - } - }, - { - events_id: { - id: 470 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 309 } }, + { events_id: { id: 424 } }, + { events_id: { id: 324 } }, + { events_id: { id: 351 } }, + { events_id: { id: 457 } }, + { events_id: { id: 470 } }, + { events_id: { id: 582 } } ] }, { id: 1846, artist_name: 'Xynia', - image: '45ce8d85-ae56-4d46-8780-ce3498b942bc', current_location: 'Dresden', type_of_art: 'music', slug: 'xynia', @@ -5570,28 +3020,11 @@ export default { facebook_url: 'https://www.facebook.com/xyniadj', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 336 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 562 - } - } - ] + events: [{ events_id: { id: 336 } }, { events_id: { id: 351 } }, { events_id: { id: 562 } }] }, { id: 1847, artist_name: 'Daensen', - image: '68a55508-cba9-441f-841b-23150cca0450', current_location: 'Berlin', type_of_art: 'music', slug: 'daensen', @@ -5599,18 +3032,11 @@ export default { facebook_url: 'https://www.facebook.com/lsdaensen/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - } - ] + events: [{ events_id: { id: 418 } }] }, { id: 1848, artist_name: 'Eigentlich heißen wir Klaus', - image: '42319ce7-d74f-462f-9858-12fc4b2bf87e', current_location: null, type_of_art: 'music', slug: 'eigentlich-heissen-wir-klaus', @@ -5623,7 +3049,6 @@ export default { { id: 1849, artist_name: 'Fakko', - image: '3d4af202-8b32-495c-93ce-776cfda33bdf', current_location: 'Paris', type_of_art: 'music', slug: 'fakko', @@ -5631,18 +3056,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1850, artist_name: 'Raji', - image: 'a0f310cc-ed55-476a-8897-8be1bcc25cdd', current_location: 'Paris', type_of_art: 'music', slug: 'raji', @@ -5650,18 +3068,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1851, artist_name: 'feinheitsbrei', - image: 'dbc83392-ede5-4494-894b-0f23bbabf9a2', current_location: 'Dresden', type_of_art: 'music', slug: 'feinheitsbrei', @@ -5670,42 +3081,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 329 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 470 - } - }, - { - events_id: { - id: 560 - } - } + { events_id: { id: 449 } }, + { events_id: { id: 351 } }, + { events_id: { id: 329 } }, + { events_id: { id: 434 } }, + { events_id: { id: 470 } }, + { events_id: { id: 560 } } ] }, { id: 1852, artist_name: 'GATS', - image: 'd7cd24c6-06ed-46b9-b342-2d3977cb2ba5', current_location: null, type_of_art: 'music', slug: 'gats', @@ -5713,18 +3099,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1853, artist_name: 'Lagoon', - image: '32253745-e519-456f-b633-c3be02526925', current_location: null, type_of_art: 'music', slug: 'lagoon', @@ -5733,18 +3112,11 @@ export default { facebook_url: 'https://www.facebook.com/lagoonsvoice/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1855, artist_name: 'Gunilla', - image: '92a48dd8-f1cb-4087-b541-1933f8943aea', current_location: null, type_of_art: 'music', slug: 'gunilla', @@ -5752,23 +3124,11 @@ export default { facebook_url: 'https://www.facebook.com/gunillasound/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 418 - } - }, - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 418 } }, { events_id: { id: 351 } }] }, { id: 1856, artist_name: 'Inerit', - image: '2cd5d3e9-71fc-417b-ba5c-0c9274e798cb', current_location: null, type_of_art: 'music', slug: 'inerit', @@ -5783,7 +3143,6 @@ export default { { id: 1857, artist_name: 'Saïph', - image: '1f4560ac-a0a2-4bfe-a77f-6586b701f993', current_location: 'Paris', type_of_art: 'music', slug: 'saiph', @@ -5791,18 +3150,11 @@ export default { facebook_url: 'https://www.facebook.com/Saiphmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1858, artist_name: 'Inès MBRK', - image: '97034e6c-c554-40ee-9f9a-a2598aeecb81', current_location: 'Paris', type_of_art: 'music', slug: 'ines-mbrk', @@ -5810,18 +3162,11 @@ export default { facebook_url: 'Inès MBRK', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1859, artist_name: 'Julio Bolivar', - image: '02ee9a9b-f4c9-4fa8-8d64-b0013fcd4da1', current_location: 'Paris', type_of_art: 'music', slug: 'julio-bolivar', @@ -5829,18 +3174,11 @@ export default { facebook_url: 'https://www.facebook.com/missyoubolivar/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1860, artist_name: 'Indiia', - image: '85726e93-7bdf-416d-b68c-3a8d1afaacf2', current_location: null, type_of_art: 'music', slug: 'indiia', @@ -5848,18 +3186,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1862, artist_name: 'Lilly & Kazan', - image: '7ec5febf-da00-482d-8460-4f0c7be5795e', current_location: null, type_of_art: 'music', slug: 'lilly-kazan', @@ -5867,18 +3198,11 @@ export default { facebook_url: 'https://www.facebook.com/lillykazan/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1863, artist_name: 'Luana Schwengber', - image: '2044e067-2da8-4b22-81bd-22a5c0e3a025', current_location: null, type_of_art: 'music', slug: 'luana-schwengber', @@ -5886,28 +3210,11 @@ export default { facebook_url: 'https://www.facebook.com/schwengberluana/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 309 } }, { events_id: { id: 324 } }, { events_id: { id: 351 } }] }, { id: 1864, artist_name: 'Marlon', - image: '6bc790b0-0788-401e-95ba-0af5d064ae9d', current_location: null, type_of_art: 'music', slug: 'marlon', @@ -5916,18 +3223,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1865, artist_name: 'Maya Postepski', - image: '299d7df7-bb5b-405a-8d7c-ab1a8aa4f181', current_location: null, type_of_art: 'music', slug: 'maya-postepski', @@ -5935,13 +3235,7 @@ export default { facebook_url: 'https://www.facebook.com/magicprincessmaya', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1866, @@ -5959,7 +3253,6 @@ export default { { id: 1867, artist_name: 'Mr. Lighthouse', - image: '9d707a6b-2253-43fb-9409-4825ff6af878', current_location: 'Berlin', type_of_art: 'music', slug: 'mr-lighthouse', @@ -5967,13 +3260,7 @@ export default { facebook_url: 'https://www.facebook.com/misterlighthouse/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1868, @@ -5991,7 +3278,6 @@ export default { { id: 1869, artist_name: 'NOËLIA', - image: '9fc27598-04b9-484a-bab5-977f838a3e05', current_location: 'Berlin', type_of_art: 'music', slug: 'noelia', @@ -6000,28 +3286,11 @@ export default { facebook_url: 'https://www.facebook.com/music.noelia/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 495 - } - }, - { - events_id: { - id: 16 - } - } - ] + events: [{ events_id: { id: 351 } }, { events_id: { id: 495 } }, { events_id: { id: 16 } }] }, { id: 1870, artist_name: 'P2Z', - image: '5b466a8a-4439-4dc0-a4a7-2c48fee26e2a', current_location: 'Paris', type_of_art: 'music', slug: 'p2z', @@ -6029,18 +3298,11 @@ export default { facebook_url: 'https://www.facebook.com/parizinzin/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1871, artist_name: 'Rafael Aragon', - image: '4e84b522-7263-4d54-94b7-8b564d1a25e3', current_location: 'Brussels', type_of_art: 'music', slug: 'rafael-aragon', @@ -6048,28 +3310,11 @@ export default { facebook_url: 'https://www.facebook.com/rafael.aragon.paris/', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 419 - } - }, - { - events_id: { - id: 442 - } - }, - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 419 } }, { events_id: { id: 442 } }, { events_id: { id: 351 } }] }, { id: 1872, artist_name: 'Rafael Castiglione', - image: '6c85a24d-e841-4891-b650-73d6853bd1cb', current_location: 'Fürth', type_of_art: 'music', slug: 'rafael-castiglione', @@ -6077,18 +3322,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1873, artist_name: 'Mattmosphere', - image: 'd355b5dd-d762-40f5-bfe7-207743321c71', current_location: 'Berlin', type_of_art: 'music', slug: 'mattmosphere', @@ -6097,32 +3335,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: '#E91E63', events: [ - { - events_id: { - id: 441 - } - }, - { - events_id: { - id: 444 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 342 - } - } + { events_id: { id: 441 } }, + { events_id: { id: 444 } }, + { events_id: { id: 351 } }, + { events_id: { id: 342 } } ] }, { id: 1874, artist_name: 'Risikogruppe', - image: 'b8e3347e-a814-4cbb-ba1b-426512a80350', current_location: 'Zürich', type_of_art: 'music', slug: 'risikogruppe', @@ -6130,18 +3351,11 @@ export default { facebook_url: 'https://www.facebook.com/Risikogruppe/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1875, artist_name: 'Rhizomatique', - image: 'cdf6c6ef-50b5-40be-9526-4578c6c0fece', current_location: 'Dresden', type_of_art: 'music', slug: 'rhizomatique', @@ -6150,37 +3364,16 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 422 - } - } + { events_id: { id: 309 } }, + { events_id: { id: 324 } }, + { events_id: { id: 351 } }, + { events_id: { id: 434 } }, + { events_id: { id: 422 } } ] }, { id: 1876, artist_name: 'Robin Schellenberg', - image: '9f30a9e0-8758-473c-9a70-758b638517da', current_location: 'Berlin', type_of_art: 'music', slug: 'robin-schellenberg', @@ -6188,18 +3381,11 @@ export default { facebook_url: 'https://www.facebook.com/robinschellenbergmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1877, artist_name: 'Rubi ツ', - image: '91ed6ef4-5588-447c-8791-49b08f278a5f', current_location: null, type_of_art: 'music', slug: 'rubi', @@ -6208,23 +3394,11 @@ export default { 'https://www.facebook.com/itsmerubi/?__tn__=%2Cd%2CP-R&eid=ARDgKkPwOV69zbVJ_SFCbKeswb17hzU-fc0admQNHuAE9ZR4ydWYAkYsleb0XRI0_n6CG_rCdhDe73tF', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - }, - { - events_id: { - id: 497 - } - } - ] + events: [{ events_id: { id: 351 } }, { events_id: { id: 497 } }] }, { id: 1880, artist_name: 'Stina Francina', - image: '753d8567-dec9-4f6e-9e36-8a6b90ca1c36', current_location: 'Berlin', type_of_art: 'music', slug: 'stina-francina', @@ -6232,18 +3406,7 @@ export default { facebook_url: 'https://www.facebook.com/stinafrancina/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 420 - } - }, - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 420 } }, { events_id: { id: 351 } }] }, { id: 1883, @@ -6256,13 +3419,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 281 - } - } - ] + events: [{ events_id: { id: 281 } }] }, { id: 1884, @@ -6275,13 +3432,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 228 - } - } - ] + events: [{ events_id: { id: 228 } }] }, { id: 1885, @@ -6294,18 +3445,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 228 - } - } - ] + events: [{ events_id: { id: 228 } }] }, { id: 1886, artist_name: 'Midlight Malte', - image: '7c1e91fd-6a91-4cde-a319-2dd68adce5c4', current_location: 'Berlin', type_of_art: 'music', slug: 'midlight-malte', @@ -6313,18 +3457,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 226 - } - }, - { - events_id: { - id: 303 - } - } - ] + events: [{ events_id: { id: 226 } }, { events_id: { id: 303 } }] }, { id: 1887, @@ -6337,18 +3470,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 226 - } - } - ] + events: [{ events_id: { id: 226 } }] }, { id: 1888, artist_name: 'Maserati Janis', - image: 'c9a2c560-248d-4f36-a503-11937ace421e', current_location: 'Berlin', type_of_art: 'music', slug: 'maserati-janis', @@ -6356,13 +3482,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 303 - } - } - ] + events: [{ events_id: { id: 303 } }] }, { id: 1889, @@ -6375,18 +3495,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 303 - } - } - ] + events: [{ events_id: { id: 303 } }] }, { id: 1890, artist_name: 'Ghettohousedrummachine', - image: '2b554f9c-826c-4805-9a05-063b43eda25a', current_location: null, type_of_art: 'music', slug: 'ghettohousedrummachine', @@ -6394,18 +3507,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 301 - } - } - ] + events: [{ events_id: { id: 301 } }] }, { id: 1891, artist_name: 'BurnTale', - image: 'b069d0ae-cd6a-41f8-8917-aea7b264d6dc', current_location: 'Berlin', type_of_art: 'music', slug: 'burntale', @@ -6413,18 +3519,11 @@ export default { facebook_url: 'https://www.facebook.com/BurnTaleUCR/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 310 - } - } - ] + events: [{ events_id: { id: 310 } }] }, { id: 1892, artist_name: 'Lotte Ahoi', - image: 'a0acd9e3-9a61-4cf7-9fd0-1a1841803bcd', current_location: 'Berlin', type_of_art: 'music', slug: 'lotte-ahoi', @@ -6432,18 +3531,11 @@ export default { facebook_url: 'https://www.facebook.com/ahoilotte/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 310 - } - } - ] + events: [{ events_id: { id: 310 } }] }, { id: 1893, artist_name: 'Bonnie Ford', - image: '784167b5-b1da-4981-bf9a-509ec908e427', current_location: 'Berlin', type_of_art: 'music', slug: 'bonnie-ford', @@ -6451,18 +3543,11 @@ export default { facebook_url: 'https://www.facebook.com/bonniefordmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 310 - } - } - ] + events: [{ events_id: { id: 310 } }] }, { id: 1894, artist_name: 'Felidae', - image: 'daafccac-6ddb-414c-916c-2c29cd656b43', current_location: 'Berlin', type_of_art: 'music', slug: 'felidae', @@ -6470,18 +3555,11 @@ export default { facebook_url: 'https://www.facebook.com/felidae911/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 310 - } - } - ] + events: [{ events_id: { id: 310 } }] }, { id: 1896, artist_name: 'Kitti Mimizan', - image: '3278b1c6-23f0-430e-b4bd-0f764833c32a', current_location: 'Leipzig', type_of_art: 'music', slug: 'kitti-mimizan', @@ -6489,18 +3567,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 309 - } - } - ] + events: [{ events_id: { id: 309 } }] }, { id: 1897, artist_name: 'Pacifico', - image: '2aa99563-4b13-43a6-a13b-0a953beb1cf2', current_location: 'Milan/ Maastricht', type_of_art: 'music', slug: 'pacifico', @@ -6508,18 +3579,11 @@ export default { facebook_url: 'https://www.facebook.com/eternalloveytm/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 317 - } - } - ] + events: [{ events_id: { id: 317 } }] }, { id: 1898, artist_name: 'Mild Curry', - image: '6db6065a-0bd0-47e1-9093-33d08e500ab1', current_location: 'Maastricht', type_of_art: 'music', slug: 'mild-curry', @@ -6528,18 +3592,11 @@ export default { 'https://www.facebook.com/liamccurry?__tn__=K-R&eid=ARC81W7KYavbYEUyEG1fOyDe0Nl0fpqImK3flbSPHjzp0yzQOH6v8oEGfDWwZptEZG8j2XdabaQg-pyL&__xts__[0]=68.ARCbRpTn5G1HTky-zLX1X086uqfrtt2rk3WWKMIk-jXxx_d1P5XpD5', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 317 - } - } - ] + events: [{ events_id: { id: 317 } }] }, { id: 1899, artist_name: 'Rines', - image: 'f8c0122f-d23e-4673-a677-f55d0f774108', current_location: 'Maastricht', type_of_art: 'music', slug: 'rines', @@ -6554,7 +3611,6 @@ export default { { id: 1900, artist_name: 'Planty Herbs', - image: 'acf67139-5b37-4650-b93f-74788197c5d8', current_location: 'Rotterdam', type_of_art: 'music', slug: 'planty-herbs', @@ -6562,18 +3618,11 @@ export default { facebook_url: 'https://www.facebook.com/plantyherbs/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 294 - } - } - ] + events: [{ events_id: { id: 294 } }] }, { id: 1901, artist_name: 'Octopus Garden', - image: '371b5123-4d82-4f17-9d13-70ef0b904aee', current_location: 'Maastricht', type_of_art: 'music', slug: 'octopus-garden', @@ -6582,40 +3631,16 @@ export default { level_of_involvement: 'resident', hero_background_color: '#E91E63', events: [ - { - events_id: { - id: 437 - } - }, - { - events_id: { - id: 330 - } - }, - { - events_id: null - }, - { - events_id: { - id: 588 - } - }, - { - events_id: { - id: 582 - } - }, - { - events_id: { - id: 607 - } - } + { events_id: { id: 437 } }, + { events_id: { id: 330 } }, + { events_id: { id: 588 } }, + { events_id: { id: 582 } }, + { events_id: { id: 607 } } ] }, { id: 1902, artist_name: 'Clemens Friedrich', - image: '6eeacefb-be7b-4f02-9624-599f77f6929a', current_location: 'Leipzig', type_of_art: 'music', slug: 'clemens-friedrich', @@ -6624,18 +3649,7 @@ export default { facebook_url: 'https://www.facebook.com/baldsoon', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 330 - } - }, - { - events_id: { - id: 564 - } - } - ] + events: [{ events_id: { id: 330 } }, { events_id: { id: 564 } }] }, { id: 1903, @@ -6648,18 +3662,11 @@ export default { facebook_url: 'https://www.facebook.com/pablo.perezlemaignan', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 317 - } - } - ] + events: [{ events_id: { id: 317 } }] }, { id: 1904, artist_name: 'Martin Augustin', - image: 'c50da1c5-739f-4024-90cb-b09ecd007ee4', current_location: 'Maastricht', type_of_art: 'music', slug: 'martin-augustin', @@ -6686,7 +3693,6 @@ export default { { id: 1907, artist_name: 'Zenoção', - image: '5d857153-958e-408e-a3a1-ef275fe92f97', current_location: 'Brazil', type_of_art: 'music', slug: 'zenocao', @@ -6694,18 +3700,11 @@ export default { facebook_url: 'https://www.facebook.com/zenocao/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 318 - } - } - ] + events: [{ events_id: { id: 318 } }] }, { id: 1908, artist_name: 'Midas 104', - image: 'b469b662-f368-48ce-8bb6-4e153fe2eef8', current_location: 'Berlin', type_of_art: 'music', slug: 'midas-104', @@ -6713,18 +3712,11 @@ export default { facebook_url: 'https://www.facebook.com/MIDAS104/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 316 - } - } - ] + events: [{ events_id: { id: 316 } }] }, { id: 1909, artist_name: 'Dirrty Dishes', - image: '59cc8447-631a-41be-b0b8-d9ec06704c17', current_location: 'Hamburg', type_of_art: 'music', slug: 'dirrty-dishes', @@ -6733,18 +3725,11 @@ export default { facebook_url: 'https://www.facebook.com/dirrtydishes1/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 316 - } - } - ] + events: [{ events_id: { id: 316 } }] }, { id: 1910, artist_name: 'Mehr ist Mehr', - image: '7e33f955-b139-454d-a382-4dd4c384a983', current_location: 'Berlin', type_of_art: 'music', slug: 'mehr-ist-mehr', @@ -6753,23 +3738,11 @@ export default { facebook_url: 'https://www.facebook.com/mehrismehr/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 325 - } - }, - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 325 } }, { events_id: { id: 434 } }] }, { id: 1911, artist_name: 'Marco Tegui', - image: '5a97fe97-5059-4435-a0b1-0c22f93e1e92', current_location: null, type_of_art: 'music', slug: 'marco-tegui', @@ -6777,28 +3750,11 @@ export default { facebook_url: 'https://www.facebook.com/djmarcotegui', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 319 - } - }, - { - events_id: { - id: 418 - } - }, - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 319 } }, { events_id: { id: 418 } }, { events_id: { id: 324 } }] }, { id: 1912, artist_name: 'ALUNA', - image: '84c75ecd-335c-4eff-8e62-841f59e46f11', current_location: null, type_of_art: 'music', slug: 'aluna', @@ -6806,18 +3762,11 @@ export default { facebook_url: 'https://www.facebook.com/alunapage/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1913, artist_name: 'Peter Power', - image: 'ff3a4b0b-ac0c-4252-a3c9-912245f4fbe6', current_location: null, type_of_art: 'music', slug: 'peter-power', @@ -6825,18 +3774,11 @@ export default { facebook_url: 'https://www.facebook.com/ufordia/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 300 - } - } - ] + events: [{ events_id: { id: 300 } }] }, { id: 1915, artist_name: 'Apocapoc', - image: 'a710691e-e809-4d1c-86e6-b56d45598700', current_location: 'Berlin/ Barcelona', type_of_art: 'music', slug: 'apocapoc', @@ -6844,23 +3786,11 @@ export default { facebook_url: 'https://www.facebook.com/ApocapocOfficial/', level_of_involvement: 'resident', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 336 - } - }, - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 336 } }, { events_id: { id: 324 } }] }, { id: 1916, artist_name: 'Troja', - image: '3a81d323-2cf7-4e97-b4ae-4b262b90ee37', current_location: 'Berlin', type_of_art: 'music', slug: 'troja', @@ -6869,23 +3799,11 @@ export default { 'https://www.facebook.com/trideeptroja/?__tn__=K-R&eid=ARASdj-wDQeIpDUXLB08BZfbrA-vVy6OgxsaEeXM2PXxIwPegk_XRXnO8H7Hwri6AdOEC7iUNW4mjUzW&fref=mentions&__xts__[0]=68.ARCFG_anP9VJVVVfOgn1U9cbz1ajBYhXr1aqK', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 331 - } - }, - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 331 } }, { events_id: { id: 324 } }] }, { id: 1917, artist_name: 'Cigarra', - image: '64f98d0b-f895-41be-8d37-aa6ff1c5b78e', current_location: 'São Paulo/ Lisboa', type_of_art: 'music', slug: 'cigarra', @@ -6894,32 +3812,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: '#E91E63', events: [ - { - events_id: { - id: 300 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 473 - } - }, - { - events_id: { - id: 474 - } - } + { events_id: { id: 300 } }, + { events_id: { id: 324 } }, + { events_id: { id: 473 } }, + { events_id: { id: 474 } } ] }, { id: 1918, artist_name: 'BirdzZie', - image: '42a3f41c-f6a2-4f8b-a345-1f70336145ca', current_location: 'Alentejo', type_of_art: 'music', slug: 'birdzzie', @@ -6928,28 +3829,11 @@ export default { facebook_url: 'https://www.facebook.com/BirdzZie/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 300 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 300 } }, { events_id: { id: 324 } }, { events_id: { id: 474 } }] }, { id: 1919, artist_name: 'Ramona Wouters', - image: '75d2c9c2-c5d2-447f-8ba4-4e884387edad', current_location: 'San Francisco/ Leipzig', type_of_art: 'music', slug: 'ramona-wouters', @@ -6957,18 +3841,11 @@ export default { facebook_url: 'https://www.facebook.com/RamonaWoutersDJ/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1920, artist_name: 'IntiNahual', - image: '9541004d-2e10-425c-abdf-aa28510c53fb', current_location: null, type_of_art: 'music', slug: 'intinahual', @@ -6976,18 +3853,11 @@ export default { facebook_url: 'https://www.facebook.com/Intinagualmusic/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1921, artist_name: 'Kurup ', - image: 'f8075b47-21df-4de4-a329-172b37c9fde0', current_location: null, type_of_art: 'music', slug: 'kurup', @@ -6995,28 +3865,11 @@ export default { facebook_url: 'https://www.facebook.com/kuruppp/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 456 - } - }, - { - events_id: { - id: 473 - } - } - ] + events: [{ events_id: { id: 324 } }, { events_id: { id: 456 } }, { events_id: { id: 473 } }] }, { id: 1922, artist_name: 'JAÇIRA ', - image: '2fd18cfa-e7a0-4dfa-be30-2534baacbbb5', current_location: null, type_of_art: 'music', slug: 'jacira', @@ -7024,18 +3877,11 @@ export default { facebook_url: 'https://www.facebook.com/jaciramusica/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1923, artist_name: 'SODA KIDS', - image: '3bcb3712-f46a-40cb-9d5c-8e4b1be74bd2', current_location: 'Leipzig/ Montreal', type_of_art: 'music', slug: 'soda-kids', @@ -7043,28 +3889,11 @@ export default { facebook_url: 'https://www.facebook.com/sodakidz/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 420 - } - }, - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 309 } }, { events_id: { id: 420 } }, { events_id: { id: 324 } }] }, { id: 1924, artist_name: 'Alizarina', - image: '83a1b58a-0951-4ecd-ae6a-9f26b30ce388', current_location: '', type_of_art: 'music', slug: 'alizarina', @@ -7072,18 +3901,11 @@ export default { facebook_url: 'https://www.facebook.com/alizarinamusic/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1925, artist_name: 'Motomenja', - image: '8ecd5970-05ee-4c31-a015-aa0573686ae4', current_location: 'Berlin', type_of_art: 'music', slug: 'motomenja', @@ -7091,18 +3913,11 @@ export default { facebook_url: 'https://www.facebook.com/motomenja', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1927, artist_name: 'Álvaro Suárez', - image: '7e1681c5-d392-4634-86d9-d90ff0f5d78b', current_location: null, type_of_art: 'music', slug: 'alvaro-suarez', @@ -7110,18 +3925,11 @@ export default { facebook_url: 'https://www.facebook.com/alvarosuarezmusic', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1928, artist_name: 'Maria Die RUHE', - image: '9ad18940-49f6-4d25-9d0a-ded7203671f8', current_location: 'Leipzig', type_of_art: 'music', slug: 'maria-die-ruhe', @@ -7129,18 +3937,11 @@ export default { facebook_url: 'https://www.facebook.com/mariadieruhe/', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 1929, artist_name: 'Yanakuna', - image: '24ef067f-f667-4983-b908-cad52503a5a8', current_location: null, type_of_art: 'music', slug: 'yanakuna', @@ -7148,23 +3949,11 @@ export default { facebook_url: 'https://www.facebook.com/Yanakuna-740043689483683/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 324 } }, { events_id: { id: 351 } }] }, { id: 1930, artist_name: 'Judith van Waterkant', - image: '3cccdc82-746b-45b9-83f2-7fed69ec4bab', current_location: 'Leipzig', type_of_art: 'music', slug: 'judith-van-waterkant', @@ -7172,28 +3961,11 @@ export default { facebook_url: 'https://www.facebook.com/judithvanwaterkant', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 336 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 422 - } - } - ] + events: [{ events_id: { id: 336 } }, { events_id: { id: 434 } }, { events_id: { id: 422 } }] }, { id: 1931, artist_name: 'Vincent Vidal', - image: 'ce42af95-58b0-442a-bf66-be4964c6ae5e', current_location: null, type_of_art: 'music', slug: 'vincent-vidal', @@ -7202,13 +3974,7 @@ export default { 'https://www.facebook.com/vincent.vidal3?fref=search&__tn__=%2Cd%2CP-R&eid=ARCCsR87SqZZKDCQv_no9MNR8ytcyHIqcKYUh6Nxqm0rQa6i7wOsloMT7IIbb3IOvPeIxzunTI_zn4is', level_of_involvement: 'supporter', hero_background_color: '#E91E63', - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 1933, @@ -7234,18 +4000,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 352 - } - } - ] + events: [{ events_id: { id: 352 } }] }, { id: 1936, artist_name: 'Harey', - image: '12ccf863-0779-4d58-ab63-e08539e19597', current_location: 'Falkenstein', type_of_art: 'music', slug: 'harey', @@ -7253,18 +4012,11 @@ export default { facebook_url: 'https://www.facebook.com/hhaarreeyy/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 319 - } - } - ] + events: [{ events_id: { id: 319 } }] }, { id: 1937, artist_name: 'Lotta Sleeps', - image: 'd400f57f-b510-4dd6-8cd0-6eddb854b081', current_location: 'Dresden', type_of_art: 'music', slug: 'lotta-sleeps', @@ -7272,18 +4024,11 @@ export default { facebook_url: 'https://www.facebook.com/lottasleeps', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 319 - } - } - ] + events: [{ events_id: { id: 319 } }] }, { id: 1938, artist_name: 'Christian Buchmann', - image: '1cfb2e92-94f5-4537-999f-2c6964c9a0b8', current_location: 'Dresden', type_of_art: 'music', slug: 'christian-buchmann', @@ -7291,18 +4036,11 @@ export default { facebook_url: 'https://www.facebook.com/christian.buchmann.gitarre/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 319 - } - } - ] + events: [{ events_id: { id: 319 } }] }, { id: 1939, artist_name: 'Disaster! Disaster!', - image: 'e1960dee-9803-499f-94e8-c7028bf6c81f', current_location: 'Dresden', type_of_art: 'music', slug: 'disaster-disaster', @@ -7310,18 +4048,11 @@ export default { facebook_url: 'https://www.facebook.com/DisasterDisaster', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 319 - } - } - ] + events: [{ events_id: { id: 319 } }] }, { id: 1940, artist_name: 'Olaf Stuut', - image: '84ef613c-d52b-4af9-a84e-089b214a9dcf', current_location: 'Amsterdam', type_of_art: 'music', slug: 'olaf-stuut', @@ -7329,18 +4060,11 @@ export default { facebook_url: 'https://www.facebook.com/olafstuut', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 316 - } - } - ] + events: [{ events_id: { id: 316 } }] }, { id: 1941, artist_name: 'Martin Rosie', - image: '526d92c8-0e8f-4830-8afb-1fef93e78dac', current_location: 'Munich', type_of_art: 'music', slug: 'martin-rosie', @@ -7348,18 +4072,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 316 - } - } - ] + events: [{ events_id: { id: 316 } }] }, { id: 1942, artist_name: 'Carolain Luf', - image: '2642e35f-ea8f-4030-a81d-442eb86c7a56', current_location: 'Berlin', type_of_art: 'music', slug: 'carolain-luf', @@ -7367,23 +4084,11 @@ export default { facebook_url: 'https://www.facebook.com/Carolain-Luf-277517955599291/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 336 - } - }, - { - events_id: { - id: 420 - } - } - ] + events: [{ events_id: { id: 336 } }, { events_id: { id: 420 } }] }, { id: 1943, artist_name: 'Danielle Arielli', - image: '0c0e3834-adf6-4090-95a9-da89b31647e6', current_location: 'Berlin', type_of_art: 'music', slug: 'danielle-arielli', @@ -7391,18 +4096,11 @@ export default { facebook_url: 'https://www.facebook.com/danielleariellimusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 336 - } - } - ] + events: [{ events_id: { id: 336 } }] }, { id: 1944, artist_name: 'Doob', - image: '1920f27f-71c5-4723-9bff-6e0ea77fcdee', current_location: 'Berlin', type_of_art: 'music', slug: 'doob', @@ -7410,18 +4108,11 @@ export default { facebook_url: 'https://www.facebook.com/doobistdoof/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 336 - } - } - ] + events: [{ events_id: { id: 336 } }] }, { id: 1945, artist_name: 'Gottlieb Scheppert', - image: '62f49661-5048-4921-b94c-9cdb4b81e750', current_location: 'Berlin', type_of_art: 'music', slug: 'gottlieb-scheppert', @@ -7429,18 +4120,11 @@ export default { facebook_url: 'https://www.facebook.com/GottliebScheppert', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 336 - } - } - ] + events: [{ events_id: { id: 336 } }] }, { id: 1946, artist_name: 'Maywa', - image: '0e2e8211-6867-4491-b918-501ded2d91f3', current_location: null, type_of_art: 'music', slug: 'maywa', @@ -7448,18 +4132,11 @@ export default { facebook_url: 'https://www.facebook.com/musicbymaywa/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 331 - } - } - ] + events: [{ events_id: { id: 331 } }] }, { id: 1947, artist_name: 'Intiche', - image: '8893b1d6-9d30-4c78-a09f-030ed2e4f7c5', current_location: null, type_of_art: 'music', slug: 'intiche', @@ -7467,23 +4144,11 @@ export default { facebook_url: 'https://www.facebook.com/INTICHE-311520156525/?ref=hl', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 331 - } - }, - { - events_id: { - id: 342 - } - } - ] + events: [{ events_id: { id: 331 } }, { events_id: { id: 342 } }] }, { id: 1948, artist_name: 'Warte:mal', - image: 'adc3459b-8927-441f-a785-7340478ed1bd', current_location: 'Berlin', type_of_art: 'music', slug: 'wartemal', @@ -7491,18 +4156,7 @@ export default { facebook_url: 'https://www.facebook.com/wartemal', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 342 - } - }, - { - events_id: { - id: 444 - } - } - ] + events: [{ events_id: { id: 342 } }, { events_id: { id: 444 } }] }, { id: 1949, @@ -7515,13 +4169,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 407 - } - } - ] + events: [{ events_id: { id: 407 } }] }, { id: 1950, @@ -7534,13 +4182,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 407 - } - } - ] + events: [{ events_id: { id: 407 } }] }, { id: 1951, @@ -7553,18 +4195,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 407 - } - }, - { - events_id: { - id: 408 - } - } - ] + events: [{ events_id: { id: 407 } }, { events_id: { id: 408 } }] }, { id: 1952, @@ -7577,13 +4208,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 407 - } - } - ] + events: [{ events_id: { id: 407 } }] }, { id: 1953, @@ -7596,13 +4221,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 407 - } - } - ] + events: [{ events_id: { id: 407 } }] }, { id: 1954, @@ -7615,13 +4234,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 407 - } - } - ] + events: [{ events_id: { id: 407 } }] }, { id: 1955, @@ -7634,28 +4247,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 407 - } - }, - { - events_id: { - id: 408 - } - }, - { - events_id: { - id: 249 - } - } - ] + events: [{ events_id: { id: 407 } }, { events_id: { id: 408 } }, { events_id: { id: 249 } }] }, { id: 1956, artist_name: 'strassenkoeter', - image: '4a93b638-8e7b-4e71-9eee-4c5134cdba03', current_location: 'Hamburg', type_of_art: 'visual', slug: 'strassenkoeter', @@ -7663,13 +4259,7 @@ export default { facebook_url: 'https://www.facebook.com/StrassenKoeterHH', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 408 - } - } - ] + events: [{ events_id: { id: 408 } }] }, { id: 1957, @@ -7682,13 +4272,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 408 - } - } - ] + events: [{ events_id: { id: 408 } }] }, { id: 1958, @@ -7701,18 +4285,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 408 - } - } - ] + events: [{ events_id: { id: 408 } }] }, { id: 1959, artist_name: 'Triumph Odita Illustrations', - image: '137b9dff-daa6-451c-95e7-f4942a8fbfbf', current_location: null, type_of_art: 'visual', slug: 'triumph-odita-illustrations', @@ -7720,13 +4297,7 @@ export default { facebook_url: 'https://www.facebook.com/Triumph-Odita-Illustrations-285280808239561/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 408 - } - } - ] + events: [{ events_id: { id: 408 } }] }, { id: 1960, @@ -7739,18 +4310,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 266 - } - }, - { - events_id: { - id: 282 - } - } - ] + events: [{ events_id: { id: 266 } }, { events_id: { id: 282 } }] }, { id: 1961, @@ -7763,18 +4323,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 240 - } - } - ] + events: [{ events_id: { id: 240 } }] }, { id: 1962, artist_name: 'Disco Droid', - image: '0f4bd331-3f56-4d05-9d40-7a9accc754ed', current_location: null, type_of_art: null, slug: 'disco-droid', @@ -7782,13 +4335,7 @@ export default { facebook_url: 'https://www.facebook.com/sauercrowdmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 259 - } - } - ] + events: [{ events_id: { id: 259 } }] }, { id: 1963, @@ -7801,18 +4348,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 267 - } - } - ] + events: [{ events_id: { id: 267 } }] }, { id: 1964, artist_name: 'Groove Riddim', - image: '5677349b-1fa4-4842-862a-0f6313e46c53', current_location: 'Belgium', type_of_art: null, slug: 'groove-riddim', @@ -7820,18 +4360,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 216 - } - } - ] + events: [{ events_id: { id: 216 } }] }, { id: 1965, artist_name: 'Captain Bee', - image: 'ff703470-7607-4255-b171-1ee4589806e3', current_location: null, type_of_art: null, slug: 'captain-bee', @@ -7839,18 +4372,11 @@ export default { facebook_url: 'https://www.facebook.com/lezbeyonce/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 409 - } - } - ] + events: [{ events_id: { id: 409 } }] }, { id: 1966, artist_name: 'gravitas', - image: 'fef88b83-03a1-4e4f-bd66-d2ec5c6fb258', current_location: 'Dresden', type_of_art: 'music', slug: 'gravitas', @@ -7859,13 +4385,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 411 - } - } - ] + events: [{ events_id: { id: 411 } }] }, { id: 1967, @@ -7878,18 +4398,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 411 - } - } - ] + events: [{ events_id: { id: 411 } }] }, { id: 1968, artist_name: 'Til Seifert', - image: '0358f20b-d9b8-4ffb-ba29-4d4c84a6858d', current_location: 'Dresden', type_of_art: 'music', slug: 'til-seifert', @@ -7897,23 +4410,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 411 - } - }, - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 411 } }, { events_id: { id: 434 } }] }, { id: 1969, artist_name: 'PAU PAU', - image: '4be1901f-d807-4ce0-9842-c9d7ce0e94e9', current_location: 'Dresden', type_of_art: 'music', slug: 'pau-pau', @@ -7921,23 +4422,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 411 - } - }, - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 411 } }, { events_id: { id: 434 } }] }, { id: 1970, artist_name: 'RÆZA', - image: '16d4c12a-276f-455c-b7a3-1f9583c4539f', current_location: 'Vienna', type_of_art: null, slug: 'raeza', @@ -7945,18 +4434,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 411 - } - } - ] + events: [{ events_id: { id: 411 } }] }, { id: 1971, artist_name: 'Alice Phoebe Lou', - image: 'c0f48bda-e6c2-4ece-af6f-2dffb535230a', current_location: 'Berlin', type_of_art: 'music', slug: 'alice-phoebe-lou', @@ -7964,23 +4446,11 @@ export default { facebook_url: 'https://www.facebook.com/alicephoebeloumusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 391 - } - }, - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 391 } }, { events_id: { id: 351 } }] }, { id: 1972, artist_name: 'Sjef Rolet', - image: '38e5d605-9d0e-4c40-9695-25e702c92b8c', current_location: 'Haarlem', type_of_art: null, slug: 'sjef-rolet', @@ -7988,18 +4458,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 413 - } - } - ] + events: [{ events_id: { id: 413 } }] }, { id: 1973, artist_name: 'Joe Ctylin', - image: '32e186be-dd03-440b-9cf2-ab958c6f978c', current_location: 'Capetown', type_of_art: 'music', slug: 'joe-ctylin', @@ -8007,28 +4470,11 @@ export default { facebook_url: 'https://www.facebook.com/joectylin/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 414 - } - }, - { - events_id: { - id: 432 - } - }, - { - events_id: { - id: 558 - } - } - ] + events: [{ events_id: { id: 414 } }, { events_id: { id: 432 } }, { events_id: { id: 558 } }] }, { id: 1974, artist_name: 'Novelty', - image: '96d1bb79-f473-464f-a9a3-e10490d96563', current_location: null, type_of_art: 'music', slug: 'novelty', @@ -8036,18 +4482,11 @@ export default { facebook_url: 'https://www.facebook.com/NoveltyMusic', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 414 - } - } - ] + events: [{ events_id: { id: 414 } }] }, { id: 1975, artist_name: 'ISO 1900', - image: '4df57c80-c61e-41c3-b49d-4061b5395cc2', current_location: null, type_of_art: 'music', slug: 'iso-1900', @@ -8055,18 +4494,11 @@ export default { facebook_url: 'https://www.facebook.com/Iso1900/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 414 - } - } - ] + events: [{ events_id: { id: 414 } }] }, { id: 1976, artist_name: 'Blaq Huf', - image: '76199ae8-5e37-4cad-bbaf-c5031179df21', current_location: null, type_of_art: 'music', slug: 'blaq-huf', @@ -8074,18 +4506,11 @@ export default { facebook_url: 'https://www.facebook.com/BlaqHuf/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 414 - } - } - ] + events: [{ events_id: { id: 414 } }] }, { id: 1977, artist_name: 'Zezão', - image: '13e4131a-32ec-42fc-a99c-c1b7e9094f97', current_location: null, type_of_art: 'visual', slug: 'zezao', @@ -8093,18 +4518,11 @@ export default { facebook_url: 'https://www.facebook.com/zezao/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 414 - } - } - ] + events: [{ events_id: { id: 414 } }] }, { id: 1978, artist_name: 'Mina Taurus', - image: '459cfa15-a36e-4bd1-8b0e-5d1bdb9964a3', current_location: null, type_of_art: 'music', slug: 'mina-taurus', @@ -8112,23 +4530,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 413 - } - }, - { - events_id: { - id: 417 - } - } - ] + events: [{ events_id: { id: 413 } }, { events_id: { id: 417 } }] }, { id: 1979, artist_name: 'fcmdl', - image: '141640b6-2803-46db-8266-d3ba6272b336', current_location: 'Amsterdam', type_of_art: 'music', slug: 'fcmdl', @@ -8136,18 +4542,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 413 - } - } - ] + events: [{ events_id: { id: 413 } }] }, { id: 1980, artist_name: '959er', - image: 'f757e08e-6a65-4d9b-9f36-2e4dae885d3f', current_location: null, type_of_art: 'music', slug: '959er', @@ -8155,18 +4554,11 @@ export default { facebook_url: 'https://www.facebook.com/959er/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 415 - } - } - ] + events: [{ events_id: { id: 415 } }] }, { id: 1981, artist_name: 'GIZMO', - image: 'a5a32b2e-0fba-4ba6-a4c8-7161228e567d', current_location: 'Munich', type_of_art: 'music', slug: 'gizmo', @@ -8175,37 +4567,16 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 415 - } - }, - { - events_id: { - id: 559 - } - }, - { - events_id: { - id: 534 - } - }, - { - events_id: { - id: 582 - } - }, - { - events_id: { - id: 9 - } - } + { events_id: { id: 415 } }, + { events_id: { id: 559 } }, + { events_id: { id: 534 } }, + { events_id: { id: 582 } }, + { events_id: { id: 9 } } ] }, { id: 1982, artist_name: 'Keff Krs', - image: '19b891bb-e5fc-4cef-8c0f-79936e6ad2d0', current_location: 'Munich', type_of_art: 'music', slug: 'keff-krs', @@ -8213,18 +4584,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 415 - } - } - ] + events: [{ events_id: { id: 415 } }] }, { id: 1983, artist_name: 'Ella Gotman', - image: '3ecc7429-e4ab-45f5-8e4b-700fc1b09c23', current_location: 'Tel Aviv', type_of_art: 'music', slug: 'ella-gotman', @@ -8232,23 +4596,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 416 - } - }, - { - events_id: { - id: 455 - } - } - ] + events: [{ events_id: { id: 416 } }, { events_id: { id: 455 } }] }, { id: 1984, artist_name: 'FunKamel', - image: '69624c7a-d185-4575-8e11-dfb0b1fa3d25', current_location: 'Tel Aviv', type_of_art: 'music', slug: 'funkamel', @@ -8256,28 +4608,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 416 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 455 - } - } - ] + events: [{ events_id: { id: 416 } }, { events_id: { id: 324 } }, { events_id: { id: 455 } }] }, { id: 1985, artist_name: 'JiaLing', - image: '2e446f29-fd2c-48a1-84ba-77fc5b421e5f', current_location: 'Tel Aviv', type_of_art: 'music', slug: 'jialing', @@ -8285,13 +4620,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 416 - } - } - ] + events: [{ events_id: { id: 416 } }] }, { id: 1986, @@ -8304,18 +4633,11 @@ export default { facebook_url: 'https://www.facebook.com/sodadreamm', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 416 - } - } - ] + events: [{ events_id: { id: 416 } }] }, { id: 1987, artist_name: 'Boreal CaMi', - image: '6acf38e6-a7fe-4739-aaa2-0300da419b12', current_location: 'Berlin', type_of_art: 'visual', slug: 'boreal-cami', @@ -8324,37 +4646,16 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 416 - } - }, - { - events_id: { - id: 309 - } - }, - { - events_id: { - id: 418 - } - }, - { - events_id: { - id: 424 - } - }, - { - events_id: { - id: 456 - } - } + { events_id: { id: 416 } }, + { events_id: { id: 309 } }, + { events_id: { id: 418 } }, + { events_id: { id: 424 } }, + { events_id: { id: 456 } } ] }, { id: 1988, artist_name: 'Lump von Bengel', - image: 'f3eb9580-7806-4c2a-9253-4401758c3db3', current_location: null, type_of_art: 'music', slug: 'lump-von-bengel', @@ -8362,18 +4663,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 417 - } - } - ] + events: [{ events_id: { id: 417 } }] }, { id: 1989, artist_name: 'Sændrå Ballack', - image: 'bccde82e-e7ea-4204-80da-a82742a41896', current_location: 'Maastricht', type_of_art: 'music', slug: 'saendra-ballack', @@ -8381,18 +4675,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 417 - } - } - ] + events: [{ events_id: { id: 417 } }] }, { id: 1990, artist_name: 'Gingergeesus', - image: '17893536-f585-4ed1-aeb4-6db083f94935', current_location: 'Maastricht', type_of_art: 'music', slug: 'gingergeesus', @@ -8400,18 +4687,11 @@ export default { facebook_url: '', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 417 - } - } - ] + events: [{ events_id: { id: 417 } }] }, { id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', current_location: 'Dresden', type_of_art: 'music', slug: 'dorian-fecht', @@ -8420,52 +4700,19 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 417 - } - }, - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 469 - } - }, - { - events_id: { - id: 471 - } - }, - { - events_id: { - id: 422 - } - }, - { - events_id: { - id: 534 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 417 } }, + { events_id: { id: 449 } }, + { events_id: { id: 434 } }, + { events_id: { id: 469 } }, + { events_id: { id: 471 } }, + { events_id: { id: 422 } }, + { events_id: { id: 534 } }, + { events_id: { id: 582 } } ] }, { id: 1992, artist_name: 't.zer', - image: 'b49bd86d-913b-43b0-8ec5-5166de90d436', current_location: 'Dresden', type_of_art: 'music', slug: 'tzer', @@ -8473,28 +4720,11 @@ export default { facebook_url: 'https://www.facebook.com/tizer/', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 417 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 445 - } - } - ] + events: [{ events_id: { id: 417 } }, { events_id: { id: 434 } }, { events_id: { id: 445 } }] }, { id: 1993, artist_name: 'Kafka', - image: 'a7130f3f-c9e2-48ab-8cc6-aaeef66c60fd', current_location: 'Dresden', type_of_art: 'music', slug: 'kafka', @@ -8503,32 +4733,15 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 417 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 471 - } - }, - { - events_id: { - id: 525 - } - } + { events_id: { id: 417 } }, + { events_id: { id: 434 } }, + { events_id: { id: 471 } }, + { events_id: { id: 525 } } ] }, { id: 1994, artist_name: 'RTNG', - image: '7e7a8cf8-d9d9-4d35-821a-39134cc2038d', current_location: null, type_of_art: 'music', slug: 'rtng', @@ -8536,18 +4749,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 417 - } - } - ] + events: [{ events_id: { id: 417 } }] }, { id: 1995, artist_name: '2 Girls 1 Club', - image: '6d960525-a661-40a7-aeca-658007a9ea5d', current_location: 'Berlin', type_of_art: 'music', slug: '2-girls-1-club', @@ -8555,23 +4761,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - }, - { - events_id: { - id: 495 - } - } - ] + events: [{ events_id: { id: 418 } }, { events_id: { id: 495 } }] }, { id: 1996, artist_name: 'Barbarella', - image: 'c2e8a040-7d7a-4660-a267-ce4584ef0f7f', current_location: null, type_of_art: 'music', slug: 'barbarella', @@ -8579,18 +4773,11 @@ export default { facebook_url: 'https://www.facebook.com/barbarelladd/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - } - ] + events: [{ events_id: { id: 418 } }] }, { id: 1997, artist_name: 'Hesh', - image: 'e6d916db-a299-4a45-8cce-cb25fdb87232', current_location: null, type_of_art: 'music', slug: 'hesh', @@ -8598,18 +4785,11 @@ export default { facebook_url: 'https://www.facebook.com/hesh.initiate/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 419 - } - } - ] + events: [{ events_id: { id: 419 } }] }, { id: 1998, artist_name: 'Melisa VelascO', - image: '963ca8e2-5eea-4cc8-9cec-735c7fa73d6f', current_location: 'Brussels', type_of_art: 'music', slug: 'melisa-velasco', @@ -8617,18 +4797,11 @@ export default { facebook_url: 'https://www.facebook.com/DJMelisaVelascO/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 419 - } - } - ] + events: [{ events_id: { id: 419 } }] }, { id: 1999, artist_name: 'Empasym', - image: '10d0a192-c79a-4230-8f3b-84ae8cd2f62c', current_location: 'Brussels', type_of_art: 'music', slug: 'empasym', @@ -8637,18 +4810,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 419 - } - } - ] + events: [{ events_id: { id: 419 } }] }, { id: 2000, artist_name: 'Daniela Cast', - image: '371ce5c5-06f4-43e4-a42f-c81a7fc378e4', current_location: '', type_of_art: 'music', slug: 'daniela-cast', @@ -8656,18 +4822,11 @@ export default { facebook_url: 'https://www.facebook.com/danielacastmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 420 - } - } - ] + events: [{ events_id: { id: 420 } }] }, { id: 2001, artist_name: 'Fabio Florido', - image: '567623b7-dd6e-419f-8861-8d7817b022d6', current_location: 'Berlin', type_of_art: 'music', slug: 'fabio-florido', @@ -8675,18 +4834,11 @@ export default { facebook_url: 'https://www.facebook.com/fabioflorido.official/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 420 - } - } - ] + events: [{ events_id: { id: 420 } }] }, { id: 2002, artist_name: 'Holly North', - image: '6014ed55-b11c-4ac5-8eb6-34e4f7a87760', current_location: null, type_of_art: 'music', slug: 'holly-north', @@ -8694,23 +4846,11 @@ export default { facebook_url: 'https://www.facebook.com/hollynorthmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 420 - } - }, - { - events_id: { - id: 422 - } - } - ] + events: [{ events_id: { id: 420 } }, { events_id: { id: 422 } }] }, { id: 2003, artist_name: 'Isa Wolff', - image: 'f677cc96-1658-47e9-b224-556c175ccaea', current_location: null, type_of_art: 'music', slug: 'isa-wolff', @@ -8718,18 +4858,11 @@ export default { facebook_url: 'https://www.facebook.com/isawolffmusic/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 420 - } - } - ] + events: [{ events_id: { id: 420 } }] }, { id: 2004, artist_name: 'Miss Jools', - image: 'b874b499-d675-4557-825e-830df4f4c9a4', current_location: null, type_of_art: 'music', slug: 'miss-jools', @@ -8737,18 +4870,11 @@ export default { facebook_url: 'https://www.facebook.com/MissJoolsOfficial/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 420 - } - } - ] + events: [{ events_id: { id: 420 } }] }, { id: 2005, artist_name: 'Arnau Amatista', - image: '6b2298f5-7f72-472f-8861-2335e60b5ab4', current_location: 'Berlin', type_of_art: null, slug: 'arnau-amatista', @@ -8757,32 +4883,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 420 - } - }, - { - events_id: { - id: 495 - } - }, - { - events_id: { - id: 534 - } - }, - { - events_id: { - id: 596 - } - } + { events_id: { id: 420 } }, + { events_id: { id: 495 } }, + { events_id: { id: 534 } }, + { events_id: { id: 596 } } ] }, { id: 2006, artist_name: 'Space Kadett', - image: '92b49210-b08a-43bb-8cf5-8fa80933d49f', current_location: 'Amsterdam', type_of_art: 'music', slug: 'space-kadett', @@ -8790,18 +4899,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 423 - } - } - ] + events: [{ events_id: { id: 423 } }] }, { id: 2007, artist_name: 'DJ Isis', - image: 'e55d30cb-6007-4d51-a165-d0193800a6fe', current_location: 'Amsterdam', type_of_art: 'music', slug: 'dj-isis', @@ -8809,18 +4911,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 423 - } - } - ] + events: [{ events_id: { id: 423 } }] }, { id: 2008, artist_name: 'A.D.H.S.', - image: '5dabd9b3-fc92-41ce-9c58-5f889333fe44', current_location: null, type_of_art: 'music', slug: 'adhs', @@ -8828,23 +4923,11 @@ export default { facebook_url: 'https://www.facebook.com/adhsmusic', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 423 - } - }, - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 423 } }, { events_id: { id: 324 } }] }, { id: 2009, artist_name: 'Cesár B', - image: 'baed714e-633c-4eea-b932-5b8bd505a6ae', current_location: null, type_of_art: 'music', slug: 'cesar-b', @@ -8852,13 +4935,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 424 - } - } - ] + events: [{ events_id: { id: 424 } }] }, { id: 2010, @@ -8871,18 +4948,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 424 - } - } - ] + events: [{ events_id: { id: 424 } }] }, { id: 2011, artist_name: 'Phil dB+', - image: '6dde078c-5b03-4f06-8a51-f496a22ad843', current_location: null, type_of_art: 'music', slug: 'phil-db', @@ -8890,18 +4960,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 424 - } - } - ] + events: [{ events_id: { id: 424 } }] }, { id: 2012, artist_name: 'Ragi', - image: '55bc3073-312b-43ba-9e3e-532075481681', current_location: null, type_of_art: 'music', slug: 'ragi', @@ -8909,18 +4972,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 424 - } - } - ] + events: [{ events_id: { id: 424 } }] }, { id: 2013, artist_name: 'sa.mu', - image: 'b1c802bb-e193-49cd-88e4-47ca5179a18c', current_location: null, type_of_art: 'music', slug: 'samu', @@ -8928,18 +4984,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 424 - } - } - ] + events: [{ events_id: { id: 424 } }] }, { id: 2014, artist_name: 'Taen', - image: '6921c67a-ea45-4479-82f7-edd57deaf79a', current_location: 'Magdeburg/Dresden', type_of_art: 'music', slug: 'taen', @@ -8947,18 +4996,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 424 - } - } - ] + events: [{ events_id: { id: 424 } }] }, { id: 2015, artist_name: 'Vitus Soska', - image: 'f711b116-b89f-4dd9-96fd-35cf6d3ade5c', current_location: null, type_of_art: 'music', slug: 'vitus-soska', @@ -8966,18 +5008,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 424 - } - } - ] + events: [{ events_id: { id: 424 } }] }, { id: 2016, artist_name: 'Señora', - image: '97c1c9fd-67f0-4e46-a0ab-d2a04ee141b0', current_location: null, type_of_art: 'music', slug: 'senora', @@ -8985,28 +5020,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - }, - { - events_id: { - id: 418 - } - }, - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 431 } }, { events_id: { id: 418 } }, { events_id: { id: 351 } }] }, { id: 2017, artist_name: 'Lui Mafuta', - image: 'f4419544-83c3-4a44-969f-b785f0f006ac', current_location: null, type_of_art: 'music', slug: 'lui-mafuta', @@ -9014,18 +5032,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - } - ] + events: [{ events_id: { id: 431 } }] }, { id: 2020, artist_name: 'Dorothee', - image: '8b470e3e-14c7-4d24-9b81-2c168005e92c', current_location: null, type_of_art: 'music', slug: 'dorothee', @@ -9033,18 +5044,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - } - ] + events: [{ events_id: { id: 431 } }] }, { id: 2021, artist_name: 'Aldo Rado', - image: '61037240-1221-4914-938b-68f9980909af', current_location: null, type_of_art: 'music', slug: 'aldo-rado', @@ -9052,18 +5056,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - } - ] + events: [{ events_id: { id: 431 } }] }, { id: 2022, artist_name: 'MataHari', - image: '34462311-3717-4e3d-9cef-6c914ba3d469', current_location: null, type_of_art: 'music', slug: 'matahari', @@ -9071,18 +5068,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - } - ] + events: [{ events_id: { id: 431 } }] }, { id: 2023, artist_name: 'Schnuppo', - image: '41f9c513-2eaf-4b65-b893-68648c598bbc', current_location: null, type_of_art: null, slug: 'schnuppo', @@ -9090,23 +5080,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 431 - } - }, - { - events_id: { - id: 441 - } - } - ] + events: [{ events_id: { id: 431 } }, { events_id: { id: 441 } }] }, { id: 2024, artist_name: 'Barista', - image: 'f4579031-88bd-4887-9766-11380709e206', current_location: 'Capetown', type_of_art: 'music', slug: 'barista', @@ -9114,18 +5092,11 @@ export default { facebook_url: 'https://www.facebook.com/barista.ofe/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 432 - } - } - ] + events: [{ events_id: { id: 432 } }] }, { id: 2025, artist_name: 'Nativesound', - image: 'c4fca27b-7f70-4e09-9113-15d670fbe63c', current_location: 'Capetown', type_of_art: 'music', slug: 'nativesound', @@ -9133,18 +5104,11 @@ export default { facebook_url: 'https://www.facebook.com/nativesoundsa/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 432 - } - } - ] + events: [{ events_id: { id: 432 } }] }, { id: 2026, artist_name: 'Kyle Thomas', - image: '2f70fd02-b588-4445-9b20-e18c456616bb', current_location: null, type_of_art: 'music', slug: 'kyle-thomas', @@ -9152,18 +5116,11 @@ export default { facebook_url: 'https://www.facebook.com/kyle.thomas.33671', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 432 - } - } - ] + events: [{ events_id: { id: 432 } }] }, { id: 2027, artist_name: 'Sunavagun', - image: 'fa119913-a82c-4af2-b52c-584bcfd67709', current_location: null, type_of_art: 'music', slug: 'sunavagun', @@ -9171,18 +5128,11 @@ export default { facebook_url: 'https://www.facebook.com/sunavagun/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 432 - } - } - ] + events: [{ events_id: { id: 432 } }] }, { id: 2028, artist_name: 'Astrafunk', - image: 'f011705c-a1ab-47fc-8de5-88e05ac6d79a', current_location: null, type_of_art: 'music', slug: 'astrafunk', @@ -9190,18 +5140,11 @@ export default { facebook_url: 'https://www.facebook.com/ASTRAFUNK/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 433 - } - } - ] + events: [{ events_id: { id: 433 } }] }, { id: 2029, artist_name: 'Brenda Pakkies', - image: '8d84dc08-802e-4028-8cd5-2d8617fff4e7', current_location: null, type_of_art: 'music', slug: 'brenda-pakkies', @@ -9209,18 +5152,11 @@ export default { facebook_url: 'https://www.facebook.com/brenda.pakkies', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 433 - } - } - ] + events: [{ events_id: { id: 433 } }] }, { id: 2030, artist_name: 'Samuel Heuermann', - image: 'f7e94bce-7d5f-444e-8d7f-07026f6b8d8a', current_location: null, type_of_art: 'music', slug: 'samuel-heuermann', @@ -9228,18 +5164,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 433 - } - } - ] + events: [{ events_id: { id: 433 } }] }, { id: 2031, artist_name: 'Mosquett', - image: '7136ec84-ade0-484e-bcda-1403becccb84', current_location: null, type_of_art: 'music', slug: 'mosquett', @@ -9247,13 +5176,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 437 - } - } - ] + events: [{ events_id: { id: 437 } }] }, { id: 2032, @@ -9266,23 +5189,11 @@ export default { facebook_url: 'https://www.facebook.com/juliemuzik/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 437 - } - }, - { - events_id: { - id: 444 - } - } - ] + events: [{ events_id: { id: 437 } }, { events_id: { id: 444 } }] }, { id: 2033, artist_name: 'Tony Casanova', - image: 'c1238614-8697-4678-8a4b-e86d6a190910', current_location: null, type_of_art: 'music', slug: 'tony-casanova', @@ -9290,18 +5201,11 @@ export default { facebook_url: 'https://www.facebook.com/tonycasanova.page/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 441 - } - } - ] + events: [{ events_id: { id: 441 } }] }, { id: 2034, artist_name: "Käpt'n 12 & Düsentrieb", - image: '6193011d-4b31-4ae8-a461-bd0899f07679', current_location: null, type_of_art: 'music', slug: 'kaptn-12-and-dusentrieb', @@ -9309,23 +5213,11 @@ export default { facebook_url: 'https://www.facebook.com/Kaeptn12Duesentrieb/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 441 - } - }, - { - events_id: { - id: 431 - } - } - ] + events: [{ events_id: { id: 441 } }, { events_id: { id: 431 } }] }, { id: 2035, artist_name: 'THDS', - image: '08aeb728-d364-4a67-9a51-e58da286311c', current_location: null, type_of_art: 'music', slug: 'thds', @@ -9333,13 +5225,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 442 - } - } - ] + events: [{ events_id: { id: 442 } }] }, { id: 2036, @@ -9352,18 +5238,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - } - ] + events: [{ events_id: { id: 418 } }] }, { id: 2037, artist_name: 'Johnson Patrick', - image: 'dee1bc20-a2ed-4b0e-bf13-0b0f7e4082fc', current_location: null, type_of_art: null, slug: 'johnson-patrick', @@ -9371,18 +5250,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - } - ] + events: [{ events_id: { id: 418 } }] }, { id: 2038, artist_name: 'Naozobra', - image: '1d5c59f6-6ecc-4588-bc89-463f321cda60', current_location: null, type_of_art: null, slug: 'naozobra', @@ -9390,18 +5262,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - } - ] + events: [{ events_id: { id: 418 } }] }, { id: 2039, artist_name: 'Pandu', - image: '4cbb98e6-31b8-4ebd-9391-7eec8ca0f98d', current_location: null, type_of_art: null, slug: 'pandu', @@ -9409,18 +5274,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 418 - } - } - ] + events: [{ events_id: { id: 418 } }] }, { id: 2040, artist_name: 'Lenia', - image: '0550d7d0-e061-4fdd-adec-27767042c7da', current_location: null, type_of_art: 'music', slug: 'lenia', @@ -9429,18 +5287,11 @@ export default { facebook_url: 'https://www.facebook.com/djlenia/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 441 - } - } - ] + events: [{ events_id: { id: 441 } }] }, { id: 2041, artist_name: 'DJ Narok', - image: '8ef22b7c-37c2-4c3b-b426-5a46e64785f5', current_location: null, type_of_art: 'music', slug: 'dj-narok', @@ -9449,13 +5300,7 @@ export default { facebook_url: 'https://www.facebook.com/djnarok/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 441 - } - } - ] + events: [{ events_id: { id: 441 } }] }, { id: 2042, @@ -9469,13 +5314,7 @@ export default { facebook_url: 'https://www.facebook.com/IllRakete/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 441 - } - } - ] + events: [{ events_id: { id: 441 } }] }, { id: 2043, @@ -9488,13 +5327,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 441 - } - } - ] + events: [{ events_id: { id: 441 } }] }, { id: 2044, @@ -9508,18 +5341,11 @@ export default { facebook_url: 'https://www.facebook.com/Al_paca-289682344873484/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 441 - } - } - ] + events: [{ events_id: { id: 441 } }] }, { id: 2045, artist_name: 'Jonn Dark', - image: '77bfb36d-8375-427a-bbe1-665b36b055c8', current_location: null, type_of_art: 'music', slug: 'jonn-dark', @@ -9527,13 +5353,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 230 - } - } - ] + events: [{ events_id: { id: 230 } }] }, { id: 2046, @@ -9546,18 +5366,11 @@ export default { facebook_url: 'https://www.facebook.com/technofruestueck', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 230 - } - } - ] + events: [{ events_id: { id: 230 } }] }, { id: 2047, artist_name: 'Absolutes Tanzgebot', - image: 'fbecfa2e-fa4a-4541-a1c3-b0c56565361e', current_location: null, type_of_art: 'music', slug: 'absolutes-tanzgebot', @@ -9565,18 +5378,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 449 - } - } - ] + events: [{ events_id: { id: 449 } }] }, { id: 2048, artist_name: 'Schlicke & Schlacke', - image: '1b69b841-2826-4f51-9406-a4d54a06d9f7', current_location: null, type_of_art: 'music', slug: 'schlicke-and-schlacke', @@ -9585,37 +5391,16 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 449 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 470 - } - }, - { - events_id: { - id: 471 - } - }, - { - events_id: { - id: 525 - } - } + { events_id: { id: 449 } }, + { events_id: { id: 434 } }, + { events_id: { id: 470 } }, + { events_id: { id: 471 } }, + { events_id: { id: 525 } } ] }, { id: 2049, artist_name: 'Labluxz_', - image: '7a02c912-eb92-4ffe-a5de-8939977fd113', current_location: null, type_of_art: 'visual', slug: 'labluxz_', @@ -9623,18 +5408,11 @@ export default { facebook_url: 'https://www.facebook.com/LabLUXZ/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 2050, artist_name: 'Alma Linda', - image: '97d19e65-d7bf-486f-91ea-6a464ae3d10d', current_location: null, type_of_art: 'music', slug: 'alma-linda', @@ -9643,32 +5421,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 513 - } - }, - { - events_id: { - id: 15 - } - }, - { - events_id: { - id: 324 - } - }, - { - events_id: { - id: 16 - } - } + { events_id: { id: 513 } }, + { events_id: { id: 15 } }, + { events_id: { id: 324 } }, + { events_id: { id: 16 } } ] }, { id: 2051, artist_name: 'Emorine', - image: '30fd6800-d3f7-46b6-aaec-05863630ec99', current_location: null, type_of_art: 'music', slug: 'emorine', @@ -9676,18 +5437,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 2052, artist_name: 'V-NYC', - image: '14eba3a3-f242-4170-9051-36c8fc7c2020', current_location: null, type_of_art: 'music', slug: 'v-nyc', @@ -9695,18 +5449,11 @@ export default { facebook_url: 'https://www.facebook.com/vnyc.music/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 2053, artist_name: 'Xique-Xique music', - image: '1dfcf320-d5d3-439d-867e-548ed00279ff', current_location: null, type_of_art: 'music', slug: 'xique-xique-music', @@ -9714,18 +5461,11 @@ export default { facebook_url: 'https://www.facebook.com/xiquexiquemusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 324 - } - } - ] + events: [{ events_id: { id: 324 } }] }, { id: 2054, artist_name: 'Chikiss aka Galina Ozeran', - image: '033f43a7-b0d5-47b1-aca9-ec9058be86d2', current_location: null, type_of_art: 'music', slug: 'chikiss-aka-galina-ozeran', @@ -9733,18 +5473,11 @@ export default { facebook_url: 'https://www.facebook.com/chikissecrets/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2055, artist_name: 'MXMR', - image: 'f3016878-5e37-4405-b90d-6685853da51e', current_location: null, type_of_art: 'music', slug: 'mxmr', @@ -9752,18 +5485,11 @@ export default { facebook_url: 'https://www.facebook.com/mxmrmxmr', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2057, artist_name: 'Urem', - image: 'b626eda9-4e89-4a81-8ce9-caca4b41d657', current_location: null, type_of_art: 'music', slug: 'urem', @@ -9771,18 +5497,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2058, artist_name: 'Lasse Lambretta', - image: 'ad0befd2-e251-4a1a-8366-4ff43db4275a', current_location: null, type_of_art: 'music', slug: 'lasse-lambretta', @@ -9790,18 +5509,11 @@ export default { facebook_url: 'https://www.facebook.com/LasseLambretta/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2059, artist_name: 'Donny Dunkel', - image: '3e640c60-68a9-4265-8efc-60d056884bf9', current_location: null, type_of_art: 'music', slug: 'donny-dunkel', @@ -9809,18 +5521,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2060, artist_name: 'mex_heimlich', - image: 'eb0a9f90-3456-4a98-94b5-560920addeb5', current_location: null, type_of_art: 'music', slug: 'mex_heimlich', @@ -9828,18 +5533,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2061, artist_name: 'Sugar Free', - image: 'bed48492-5c75-4676-8756-665fcb1c163c', current_location: null, type_of_art: 'music', slug: 'sugar-free', @@ -9847,18 +5545,11 @@ export default { facebook_url: 'https://www.facebook.com/freesugarfree/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2062, artist_name: 'Thorgerdur Johanna', - image: '64cd93b0-f6bc-4222-837c-85d7ef249f36', current_location: null, type_of_art: 'music', slug: 'thorgerdur-johanna', @@ -9866,18 +5557,11 @@ export default { facebook_url: 'https://www.facebook.com/thorgerdur.johanna.music/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 351 - } - } - ] + events: [{ events_id: { id: 351 } }] }, { id: 2065, artist_name: 'Muende', - image: '1b387a7d-5cd7-4cbe-9935-181c4d3f6475', current_location: '', type_of_art: 'music', slug: 'muende', @@ -9885,18 +5569,11 @@ export default { facebook_url: 'https://www.facebook.com/slowmuende/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 450 - } - } - ] + events: [{ events_id: { id: 450 } }] }, { id: 2066, artist_name: 'longvân', - image: 'dee458a5-098f-4642-882f-99f440a47153', current_location: null, type_of_art: 'music', slug: 'longvan', @@ -9904,18 +5581,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 452 - } - } - ] + events: [{ events_id: { id: 452 } }] }, { id: 2067, artist_name: 'ElPeche', - image: 'd6aa7b6e-8330-4083-bec8-b7f6858b3911', current_location: null, type_of_art: 'music', slug: 'elpeche', @@ -9923,23 +5593,11 @@ export default { facebook_url: 'https://www.facebook.com/ElPecheMusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 453 - } - }, - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 453 } }, { events_id: { id: 474 } }] }, { id: 2068, artist_name: 'Lady Slama', - image: '761a9e51-6a80-4182-830f-bcb91a5ae293', current_location: null, type_of_art: 'music', slug: 'lady-slama', @@ -9947,18 +5605,11 @@ export default { facebook_url: 'https://www.facebook.com/ladyslama/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 453 - } - } - ] + events: [{ events_id: { id: 453 } }] }, { id: 2069, artist_name: 'Meraki', - image: 'db66e202-f857-4026-ba50-a76e335688ca', current_location: null, type_of_art: 'music', slug: 'meraki', @@ -9966,28 +5617,11 @@ export default { facebook_url: 'https://www.facebook.com/merakiismee/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 453 - } - }, - { - events_id: { - id: 456 - } - }, - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 453 } }, { events_id: { id: 456 } }, { events_id: { id: 474 } }] }, { id: 2070, artist_name: 'Nikkatze', - image: '4f8bb24c-8b58-43a4-82d9-7f045b352d8e', current_location: null, type_of_art: 'music', slug: 'nikkatze', @@ -9995,23 +5629,11 @@ export default { facebook_url: 'https://www.facebook.com/nikkatze/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 453 - } - }, - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 453 } }, { events_id: { id: 474 } }] }, { id: 2071, artist_name: 's4liv4', - image: '375790ff-addb-4c0c-9429-54ac1714c5e3', current_location: null, type_of_art: 'music', slug: 's4liv4', @@ -10019,23 +5641,11 @@ export default { facebook_url: 'https://www.facebook.com/s4liv4/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 453 - } - }, - { - events_id: { - id: 475 - } - } - ] + events: [{ events_id: { id: 453 } }, { events_id: { id: 475 } }] }, { id: 2072, artist_name: 'Caleidoscópio Imaginário', - image: '34bfc538-0afd-44f2-9306-4cf1d3864d73', current_location: null, type_of_art: 'visual', slug: 'caleidoscopio-imaginario', @@ -10043,28 +5653,11 @@ export default { facebook_url: 'https://www.facebook.com/caleidoscopioimaginario/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 453 - } - }, - { - events_id: { - id: 456 - } - }, - { - events_id: { - id: 475 - } - } - ] + events: [{ events_id: { id: 453 } }, { events_id: { id: 456 } }, { events_id: { id: 475 } }] }, { id: 2073, artist_name: 'Studio Lagolagoa', - image: '91f9dcde-f7b8-4ec7-9c20-68cc129e9ac2', current_location: null, type_of_art: 'visual', slug: 'studio-lagolagoa', @@ -10072,28 +5665,11 @@ export default { facebook_url: 'https://www.facebook.com/lagolagoart/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 453 - } - }, - { - events_id: { - id: 474 - } - }, - { - events_id: { - id: 475 - } - } - ] + events: [{ events_id: { id: 453 } }, { events_id: { id: 474 } }, { events_id: { id: 475 } }] }, { id: 2074, artist_name: 'Digital Hippies', - image: 'e7fed805-8eb0-4602-8331-75e993965949', current_location: null, type_of_art: 'music', slug: 'digital-hippies', @@ -10101,18 +5677,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 454 - } - } - ] + events: [{ events_id: { id: 454 } }] }, { id: 2075, artist_name: 'DJ Bush Beats', - image: 'abb11561-b748-4298-a5f7-665b13c8f9aa', current_location: null, type_of_art: 'music', slug: 'dj-bush-beats', @@ -10120,18 +5689,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 455 - } - } - ] + events: [{ events_id: { id: 455 } }] }, { id: 2076, artist_name: 'Benji', - image: '7a187717-15f1-40c7-a72e-d15ae80e1f3c', current_location: null, type_of_art: 'music', slug: 'benji', @@ -10139,18 +5701,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 455 - } - } - ] + events: [{ events_id: { id: 455 } }] }, { id: 2077, artist_name: 'milkmaid', - image: '64084bf3-332d-416f-8511-05805681d6a0', current_location: '', type_of_art: 'music', slug: 'milkmaid', @@ -10158,18 +5713,11 @@ export default { facebook_url: 'https://www.facebook.com/milkmaidmusic', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 219 - } - } - ] + events: [{ events_id: { id: 219 } }] }, { id: 2078, artist_name: 'Gerra G', - image: '3d1f49f9-aab5-468b-a2e9-f7745b24f554', current_location: null, type_of_art: 'music', slug: 'gerra-g', @@ -10177,18 +5725,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 456 - } - } - ] + events: [{ events_id: { id: 456 } }] }, { id: 2079, artist_name: 'Cold Cold Nights', - image: 'a754ccb2-6f72-4279-b068-e81522226ebe', current_location: null, type_of_art: 'music', slug: 'cold-cold-nights', @@ -10196,18 +5737,11 @@ export default { facebook_url: 'https://www.facebook.com/ColdColdNights', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 224 - } - } - ] + events: [{ events_id: { id: 224 } }] }, { id: 2080, artist_name: 'Harry Hancock', - image: '4704b872-48b4-49e9-b947-127f6db9e95e', current_location: null, type_of_art: null, slug: 'harry-hancock', @@ -10215,18 +5749,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 223 - } - } - ] + events: [{ events_id: { id: 223 } }] }, { id: 2081, artist_name: 'Cromatics', - image: '9f0a4a79-7206-4198-8f87-e2e029405c18', current_location: null, type_of_art: 'visual', slug: 'cromatics', @@ -10234,13 +5761,7 @@ export default { facebook_url: 'https://www.facebook.com/CROMATICS/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 223 - } - } - ] + events: [{ events_id: { id: 223 } }] }, { id: 2082, @@ -10253,13 +5774,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 290 - } - } - ] + events: [{ events_id: { id: 290 } }] }, { id: 2083, @@ -10272,13 +5787,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 290 - } - } - ] + events: [{ events_id: { id: 290 } }] }, { id: 2084, @@ -10291,18 +5800,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 457 - } - } - ] + events: [{ events_id: { id: 457 } }] }, { id: 2085, artist_name: 'Leon Haller', - image: '7afb13a3-3afd-4ae1-98ad-1eb9c5f1d551', current_location: null, type_of_art: 'music', slug: 'leon-haller', @@ -10310,13 +5812,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 457 - } - } - ] + events: [{ events_id: { id: 457 } }] }, { id: 2086, @@ -10329,18 +5825,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 319 - } - } - ] + events: [{ events_id: { id: 319 } }] }, { id: 2087, artist_name: 'sourton', - image: 'a6b231e4-ff76-402c-b312-70b30601a758', current_location: null, type_of_art: null, slug: 'sourton', @@ -10348,23 +5837,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 460 - } - }, - { - events_id: { - id: 470 - } - } - ] + events: [{ events_id: { id: 460 } }, { events_id: { id: 470 } }] }, { id: 2088, artist_name: 'flooke', - image: '98056647-0066-474b-ab5e-d30a6e8d50fd', current_location: 'Dresden', type_of_art: null, slug: 'flooke', @@ -10373,32 +5850,15 @@ export default { level_of_involvement: 'supporter', hero_background_color: null, events: [ - { - events_id: { - id: 460 - } - }, - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 471 - } - }, - { - events_id: { - id: 443 - } - } + { events_id: { id: 460 } }, + { events_id: { id: 434 } }, + { events_id: { id: 471 } }, + { events_id: { id: 443 } } ] }, { id: 2089, artist_name: 'Habiri', - image: '9cff5132-a74c-48f5-aec4-f46d56ba9178', current_location: null, type_of_art: null, slug: 'habiri', @@ -10406,18 +5866,11 @@ export default { facebook_url: 'https://www.facebook.com/Habiriii/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 460 - } - } - ] + events: [{ events_id: { id: 460 } }] }, { id: 2090, artist_name: 'Alva', - image: 'e2d9cd9a-5783-4608-b399-60c12ae0aff4', current_location: null, type_of_art: 'music', slug: 'alva', @@ -10425,18 +5878,11 @@ export default { facebook_url: 'https://www.facebook.com/Alvaberlinmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2091, artist_name: 'Amy.G.Dala', - image: 'aa633c31-ac64-4506-a5d8-5da8bd64c532', current_location: null, type_of_art: 'music', slug: 'amygdala', @@ -10444,18 +5890,11 @@ export default { facebook_url: 'https://www.facebook.com/amygdalasound', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2092, artist_name: 'Martin Saupe', - image: 'd12c198f-e452-4140-bd34-e9d0f36a805e', current_location: null, type_of_art: 'music', slug: 'martin-saupe', @@ -10463,18 +5902,11 @@ export default { facebook_url: 'https://www.facebook.com/msaupe', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2093, artist_name: 'Ch1p', - image: 'e78b0cb4-fde8-4f60-86af-58f52f3879f7', current_location: null, type_of_art: 'music', slug: 'ch1p', @@ -10482,18 +5914,11 @@ export default { facebook_url: 'https://www.facebook.com/ch1pakaformatc/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2094, artist_name: 'Mit B.', - image: '9c4bbf47-188c-4933-9b67-8c13aa84fbc4', current_location: null, type_of_art: 'music', slug: 'mit-b', @@ -10501,18 +5926,11 @@ export default { facebook_url: 'https://www.facebook.com/mitbpunkt/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2095, artist_name: 'Dan && Rather', - image: '59ac720e-7747-4a25-ab4e-92986dd806a7', current_location: null, type_of_art: 'music', slug: 'dan-and-rather', @@ -10520,13 +5938,7 @@ export default { facebook_url: 'https://www.facebook.com/danratherdj/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2096, @@ -10539,13 +5951,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2097, @@ -10558,18 +5964,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2098, artist_name: 'RixiBoi', - image: '69bae316-6f84-4aed-8bb1-3a29531d4aac', current_location: null, type_of_art: 'music', slug: 'rixiboi', @@ -10577,18 +5976,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2099, artist_name: 'Serafin', - image: '20b39307-b5a0-4fdd-b6d0-4dcc08026b46', current_location: null, type_of_art: 'music', slug: 'serafin', @@ -10596,18 +5988,11 @@ export default { facebook_url: 'https://www.facebook.com/serafinzirkulation/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2100, artist_name: 'Frida Darko', - image: '498034b7-ade8-4930-b5d6-b0c1da1bb49a', current_location: null, type_of_art: 'music', slug: 'frida-darko', @@ -10615,23 +6000,11 @@ export default { facebook_url: 'https://www.facebook.com/justfridadarko/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - }, - { - events_id: { - id: 470 - } - } - ] + events: [{ events_id: { id: 434 } }, { events_id: { id: 470 } }] }, { id: 2101, artist_name: 'Intaktogene', - image: '5925395e-da1e-431a-92db-44a61912a54c', current_location: null, type_of_art: 'music', slug: 'intaktogene', @@ -10639,13 +6012,7 @@ export default { facebook_url: 'https://www.facebook.com/intaktogene/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2102, @@ -10658,18 +6025,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2103, artist_name: 'Shaleen', - image: 'a549260d-a364-4f1e-91f4-d65bb4c76266', current_location: null, type_of_art: 'music', slug: 'shaleen', @@ -10677,18 +6037,11 @@ export default { facebook_url: 'https://www.facebook.com/shaleen.official/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2104, artist_name: 'Swinka', - image: 'b06fc3fb-843a-4f72-991c-029aec3da67e', current_location: null, type_of_art: 'music', slug: 'swinka', @@ -10696,18 +6049,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2105, artist_name: 'V', - image: '4a75895b-6fec-453c-b006-1aa1eedab1c0', current_location: null, type_of_art: 'music', slug: 'v', @@ -10715,18 +6061,11 @@ export default { facebook_url: 'https://www.facebook.com/vnyc.music/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2106, artist_name: 'Yves Eden', - image: '400d6b72-07a5-4734-8787-f1ec57abe034', current_location: null, type_of_art: 'music', slug: 'yves-eden', @@ -10734,18 +6073,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2107, artist_name: 'HabibiShip', - image: '705e5d3a-803e-4d32-bddd-b1731f6f98cd', current_location: null, type_of_art: 'visual', slug: 'habibiship', @@ -10753,18 +6085,11 @@ export default { facebook_url: 'https://www.facebook.com/habibiship/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 434 - } - } - ] + events: [{ events_id: { id: 434 } }] }, { id: 2108, artist_name: 'Goat Retriever', - image: '28e1c57f-4ddd-4f8f-b9c4-801b3e4e6732', current_location: null, type_of_art: 'music', slug: 'goat-retriever', @@ -10772,18 +6097,11 @@ export default { facebook_url: 'https://www.facebook.com/GoatRetrieverBand/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 463 - } - } - ] + events: [{ events_id: { id: 463 } }] }, { id: 2109, artist_name: 'isolate', - image: '426c611a-46e6-4238-8ea5-908df7ab1036', current_location: null, type_of_art: 'music', slug: 'isolate', @@ -10791,18 +6109,11 @@ export default { facebook_url: 'https://www.facebook.com/we.are.isolate/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 463 - } - } - ] + events: [{ events_id: { id: 463 } }] }, { id: 2110, artist_name: 'Brendan', - image: '41c63369-85ba-4258-8ac1-dd32e88291c7', current_location: null, type_of_art: 'music', slug: 'brendan', @@ -10810,18 +6121,11 @@ export default { facebook_url: 'https://www.facebook.com/whosbrendan/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 410 - } - } - ] + events: [{ events_id: { id: 410 } }] }, { id: 2111, artist_name: 'Varasada', - image: '8ed6501d-5cff-4fbc-aa5e-a57bd34a0fd5', current_location: null, type_of_art: 'music', slug: 'varasada', @@ -10829,18 +6133,11 @@ export default { facebook_url: 'https://www.facebook.com/varasadaband/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 410 - } - } - ] + events: [{ events_id: { id: 410 } }] }, { id: 2112, artist_name: 'John Known', - image: '9c8e4503-c6f1-40fa-86a8-fadcc048d7ce', current_location: null, type_of_art: 'music', slug: 'john-known', @@ -10848,18 +6145,11 @@ export default { facebook_url: 'https://www.facebook.com/johntheknown/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 467 - } - } - ] + events: [{ events_id: { id: 467 } }] }, { id: 2113, artist_name: 'Gisela Björn', - image: 'd1c81e19-a760-48df-884b-7a5c5d4ed175', current_location: null, type_of_art: 'music', slug: 'gisela-bjorn', @@ -10867,18 +6157,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 467 - } - } - ] + events: [{ events_id: { id: 467 } }] }, { id: 2114, artist_name: 'Simon Tober', - image: '5c0ac9ed-b0fa-4a21-b133-0f5f958d137b', current_location: null, type_of_art: 'music', slug: 'simon-tober', @@ -10886,18 +6169,11 @@ export default { facebook_url: 'https://www.facebook.com/dietobers/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 469 - } - } - ] + events: [{ events_id: { id: 469 } }] }, { id: 2115, artist_name: 'Vineeth', - image: '13c4714e-541c-4448-80be-b95eb792f1d2', current_location: 'Dresden', type_of_art: 'visual', slug: 'vineeth', @@ -10905,18 +6181,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 469 - } - } - ] + events: [{ events_id: { id: 469 } }] }, { id: 2116, artist_name: 'Ostbam', - image: 'd23b7a70-ae3d-4e1b-99de-0180bbfe6fa9', current_location: null, type_of_art: 'music', slug: 'ostbam', @@ -10924,18 +6193,11 @@ export default { facebook_url: 'https://www.facebook.com/ostbaaam/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 470 - } - } - ] + events: [{ events_id: { id: 470 } }] }, { id: 2117, artist_name: 'KAWA KAWA', - image: '79b96263-b208-445b-a2f9-b12b0c47097d', current_location: null, type_of_art: 'music', slug: 'kawa-kawa', @@ -10943,18 +6205,11 @@ export default { facebook_url: 'https://www.facebook.com/KAWAKAWASOUND/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 471 - } - } - ] + events: [{ events_id: { id: 471 } }] }, { id: 2118, artist_name: 'Purita D.', - image: '6a6e451b-c819-4814-aeca-b5e94ee10035', current_location: null, type_of_art: 'music', slug: 'purita-d', @@ -10962,18 +6217,11 @@ export default { facebook_url: 'https://www.facebook.com/djPuritaD/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 471 - } - } - ] + events: [{ events_id: { id: 471 } }] }, { id: 2119, artist_name: 'Sinamin', - image: '20efdef1-d116-412c-95b7-bc0f66f727ca', current_location: null, type_of_art: 'music', slug: 'sinamin', @@ -10981,23 +6229,11 @@ export default { facebook_url: 'https://www.facebook.com/sinaminsound/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 471 - } - }, - { - events_id: { - id: 525 - } - } - ] + events: [{ events_id: { id: 471 } }, { events_id: { id: 525 } }] }, { id: 2120, artist_name: 'Zeno Chino', - image: '976df0cd-0774-491e-afac-c27b8c832399', current_location: null, type_of_art: 'music', slug: 'zeno-chino', @@ -11005,18 +6241,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 471 - } - } - ] + events: [{ events_id: { id: 471 } }] }, { id: 2121, artist_name: 'EXZ', - image: '17e75a16-5e5a-4daa-86e9-8c09ee4dbad8', current_location: null, type_of_art: 'music', slug: 'exz', @@ -11024,23 +6253,11 @@ export default { facebook_url: 'https://www.facebook.com/exzlive/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 473 - } - }, - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 473 } }, { events_id: { id: 474 } }] }, { id: 2122, artist_name: 'Mariana Perelli', - image: '4fa3c201-a21c-4c8f-963c-5a65cad48f1d', current_location: null, type_of_art: 'music', slug: 'mariana-perelli', @@ -11048,18 +6265,11 @@ export default { facebook_url: 'https://www.facebook.com/marianaperrellim', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 473 - } - } - ] + events: [{ events_id: { id: 473 } }] }, { id: 2123, artist_name: 'Cxxju', - image: 'fb3443dc-069e-4594-827c-6a81a121e3ce', current_location: null, type_of_art: 'music', slug: 'cxxju', @@ -11067,18 +6277,11 @@ export default { facebook_url: 'https://www.facebook.com/cxxju/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 473 - } - } - ] + events: [{ events_id: { id: 473 } }] }, { id: 2124, artist_name: 'ANRMS', - image: 'eebda1b3-2726-418a-b0dd-987a6b6a1db4', current_location: null, type_of_art: 'music', slug: 'anrms', @@ -11086,18 +6289,11 @@ export default { facebook_url: 'https://www.facebook.com/anrmsxxx', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 473 - } - } - ] + events: [{ events_id: { id: 473 } }] }, { id: 2125, artist_name: 'Fata & Morgana', - image: '598c7098-3b28-41c2-a74f-005318b16ea4', current_location: null, type_of_art: 'music', slug: 'fata-and-morgana', @@ -11105,18 +6301,11 @@ export default { facebook_url: 'https://www.facebook.com/fataanddmorgana/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 474 } }] }, { id: 2126, artist_name: 'Nutty', - image: 'a5b5238a-32ba-4bec-97df-7edca8626714', current_location: null, type_of_art: 'music', slug: 'nutty', @@ -11124,18 +6313,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 474 } }] }, { id: 2127, artist_name: 'Entropia-Entalpia', - image: '2abe2d83-9b3b-40c0-a92c-67ee7fd3ce1b', current_location: null, type_of_art: 'music', slug: 'entropia-entalpia', @@ -11143,18 +6325,11 @@ export default { facebook_url: 'https://www.facebook.com/entropialive/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 474 } }] }, { id: 2128, artist_name: 'Felipe MD', - image: '96bcd1a7-e727-4ed6-9085-2b6e92468ebd', current_location: null, type_of_art: 'music', slug: 'felipe-md', @@ -11162,18 +6337,11 @@ export default { facebook_url: 'https://www.facebook.com/felipemdmdmd/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 474 } }] }, { id: 2129, artist_name: 'Txäi', - image: 'ff8c3117-c04e-496f-a2c2-9f7a7dfefba1', current_location: null, type_of_art: 'music', slug: 'txai', @@ -11181,18 +6349,11 @@ export default { facebook_url: 'https://www.facebook.com/txxai/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 474 } }] }, { id: 2130, artist_name: 'DJ Maco Malturo', - image: 'fdc7ce8e-2d78-4bab-98c0-5c8c14c1f89d', current_location: null, type_of_art: 'music', slug: 'dj-maco-malturo', @@ -11200,18 +6361,11 @@ export default { facebook_url: 'https://www.facebook.com/DjMaltauro/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 474 } }] }, { id: 2131, artist_name: 'DJ MATTA', - image: '9417a513-2a25-4806-b392-a5ab9b5cfda0', current_location: null, type_of_art: 'music', slug: 'dj-matta', @@ -11219,18 +6373,11 @@ export default { facebook_url: 'https://www.facebook.com/DAMATTADJ/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 474 - } - } - ] + events: [{ events_id: { id: 474 } }] }, { id: 2132, artist_name: 'Ágatha a.k.a Agrabah ', - image: '77797bfb-4a57-4f58-b704-252ea842fb96', current_location: null, type_of_art: 'music', slug: 'agatha-aka-agrabah', @@ -11238,18 +6385,11 @@ export default { facebook_url: 'https://www.facebook.com/agathagrabah/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 475 - } - } - ] + events: [{ events_id: { id: 475 } }] }, { id: 2133, artist_name: 'ANTILINE', - image: '6584c7dd-398f-4540-941f-7058dff40003', current_location: null, type_of_art: 'music', slug: 'antiline', @@ -11257,18 +6397,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 475 - } - } - ] + events: [{ events_id: { id: 475 } }] }, { id: 2134, artist_name: 'PAC', - image: '1b09a75f-1b44-40d5-82a7-389337bda2f6', current_location: null, type_of_art: 'visual', slug: 'pac', @@ -11276,13 +6409,7 @@ export default { facebook_url: 'https://www.facebook.com/paccalory/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 475 - } - } - ] + events: [{ events_id: { id: 475 } }] }, { id: 2135, @@ -11295,18 +6422,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 479 - } - } - ] + events: [{ events_id: { id: 479 } }] }, { id: 2136, artist_name: 'Roxy JC', - image: '64dfa7c5-b1e8-4a43-b3d6-7806bceb9f05', current_location: 'Amsterdam', type_of_art: 'speaker', slug: 'roxy-jc', @@ -11314,18 +6434,11 @@ export default { facebook_url: 'https://www.facebook.com/damroxyjc', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - } - ] + events: [{ events_id: { id: 480 } }] }, { id: 2137, artist_name: 'Sjoerd Scott', - image: 'a247b3ab-b2bf-4f07-a71a-1b8bd77d254f', current_location: null, type_of_art: 'speaker', slug: 'sjoerd-scott', @@ -11333,13 +6446,7 @@ export default { facebook_url: 'https://www.facebook.com/sjoerd.scott', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - } - ] + events: [{ events_id: { id: 480 } }] }, { id: 2138, @@ -11352,18 +6459,7 @@ export default { facebook_url: 'https://www.facebook.com/jim.bim.1612', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - }, - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 480 } }, { events_id: { id: 348 } }] }, { id: 2139, @@ -11376,18 +6472,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - }, - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 480 } }, { events_id: { id: 348 } }] }, { id: 2140, @@ -11400,13 +6485,7 @@ export default { facebook_url: 'https://www.facebook.com/bkhaykin', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - } - ] + events: [{ events_id: { id: 480 } }] }, { id: 2141, @@ -11419,13 +6498,7 @@ export default { facebook_url: 'https://www.facebook.com/cris.rivera.calderon', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - } - ] + events: [{ events_id: { id: 480 } }] }, { id: 2142, @@ -11438,13 +6511,7 @@ export default { facebook_url: 'https://www.facebook.com/rami.alnima.7', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - } - ] + events: [{ events_id: { id: 480 } }] }, { id: 2143, @@ -11457,13 +6524,7 @@ export default { facebook_url: 'https://www.facebook.com/kimon.inglessis.5', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 480 - } - } - ] + events: [{ events_id: { id: 480 } }] }, { id: 2144, @@ -11476,18 +6537,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 481 - } - } - ] + events: [{ events_id: { id: 481 } }] }, { id: 2145, artist_name: 'Érica', - image: 'd7c48be2-3372-4c9a-8a78-70c37009c6ee', current_location: null, type_of_art: 'music', slug: 'erica', @@ -11495,18 +6549,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 481 - } - } - ] + events: [{ events_id: { id: 481 } }] }, { id: 2147, artist_name: 'Mr. John', - image: '2cd76bf1-d429-4bc8-a124-48ab6fb01148', current_location: null, type_of_art: 'music', slug: 'mr-john', @@ -11514,18 +6561,11 @@ export default { facebook_url: 'https://www.facebook.com/MrJohnAdl', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 257 - } - } - ] + events: [{ events_id: { id: 257 } }] }, { id: 2148, artist_name: 'DYP', - image: '7e917de3-4aee-47cc-a4c0-6c25f6811c29', current_location: null, type_of_art: 'music', slug: 'dyp', @@ -11533,18 +6573,11 @@ export default { facebook_url: 'https://www.facebook.com/dypbass/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 257 - } - } - ] + events: [{ events_id: { id: 257 } }] }, { id: 2149, artist_name: 'Freddie Norwood', - image: 'ebd4f928-7eb4-4f1a-bac6-e0db583e6cc6', current_location: null, type_of_art: 'music', slug: 'freddie-norwood', @@ -11552,18 +6585,11 @@ export default { facebook_url: 'https://www.facebook.com/freddnorr/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 257 - } - } - ] + events: [{ events_id: { id: 257 } }] }, { id: 2150, artist_name: 'Strict Face', - image: 'a9bd036e-ac3f-482e-a6f6-490c9edc01c2', current_location: null, type_of_art: 'music', slug: 'strict-face', @@ -11571,18 +6597,11 @@ export default { facebook_url: 'https://www.facebook.com/strictface/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 257 - } - } - ] + events: [{ events_id: { id: 257 } }] }, { id: 2151, artist_name: 'Not Just A Number', - image: '5a098509-2434-4610-aa26-838587db7fb0', current_location: null, type_of_art: 'speaker', slug: 'not-just-a-number', @@ -11590,13 +6609,7 @@ export default { facebook_url: 'https://www.facebook.com/Not-Just-A-Number-566659233472250/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 210 - } - } - ] + events: [{ events_id: { id: 210 } }] }, { id: 2152, @@ -11609,13 +6622,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 200 - } - } - ] + events: [{ events_id: { id: 200 } }] }, { id: 2153, @@ -11628,13 +6635,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 200 - } - } - ] + events: [{ events_id: { id: 200 } }] }, { id: 2154, @@ -11647,13 +6648,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 200 - } - } - ] + events: [{ events_id: { id: 200 } }] }, { id: 2155, @@ -11666,13 +6661,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 200 - } - } - ] + events: [{ events_id: { id: 200 } }] }, { id: 2156, @@ -11685,13 +6674,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 200 - } - } - ] + events: [{ events_id: { id: 200 } }] }, { id: 2157, @@ -11706,13 +6689,7 @@ export default { 'https://www.facebook.com/hyperfuturelevelism/?notif_t=page_user_activity¬if_id=1482554309517363', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 211 - } - } - ] + events: [{ events_id: { id: 211 } }] }, { id: 2158, @@ -11725,18 +6702,11 @@ export default { facebook_url: 'https://www.facebook.com/natalie.rolt/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 217 - } - } - ] + events: [{ events_id: { id: 217 } }] }, { id: 2159, artist_name: 'LIPT', - image: 'bddef27c-7f3d-462c-b1c5-c62ef0de16cc', current_location: null, type_of_art: 'visual', slug: 'lipt', @@ -11744,13 +6714,7 @@ export default { facebook_url: 'https://www.facebook.com/liptlabel/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 217 - } - } - ] + events: [{ events_id: { id: 217 } }] }, { id: 2160, @@ -11763,13 +6727,7 @@ export default { facebook_url: 'https://www.facebook.com/emma.ritchie.56', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 217 - } - } - ] + events: [{ events_id: { id: 217 } }] }, { id: 2161, @@ -11782,13 +6740,7 @@ export default { facebook_url: 'https://www.facebook.com/claudi.jvr', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 217 - } - } - ] + events: [{ events_id: { id: 217 } }] }, { id: 2162, @@ -11801,13 +6753,7 @@ export default { facebook_url: 'https://www.facebook.com/elaandjackson/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 217 - } - } - ] + events: [{ events_id: { id: 217 } }] }, { id: 2163, @@ -11820,13 +6766,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 218 - } - } - ] + events: [{ events_id: { id: 218 } }] }, { id: 2164, @@ -11839,13 +6779,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 218 - } - } - ] + events: [{ events_id: { id: 218 } }] }, { id: 2165, @@ -11858,13 +6792,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 218 - } - } - ] + events: [{ events_id: { id: 218 } }] }, { id: 2166, @@ -11877,13 +6805,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 218 - } - } - ] + events: [{ events_id: { id: 218 } }] }, { id: 2167, @@ -11896,13 +6818,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 218 - } - } - ] + events: [{ events_id: { id: 218 } }] }, { id: 2168, @@ -11915,23 +6831,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 218 - } - }, - { - events_id: { - id: 252 - } - }, - { - events_id: { - id: 254 - } - } - ] + events: [{ events_id: { id: 218 } }, { events_id: { id: 252 } }, { events_id: { id: 254 } }] }, { id: 2169, @@ -11944,18 +6844,11 @@ export default { facebook_url: 'https://www.facebook.com/allanedensart/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 2170, artist_name: 'Bastiaan Lipsicus', - image: '562f0bd1-c081-48bc-9b22-8d17461013fa', current_location: null, type_of_art: 'music', slug: 'bastiaan-lipsicus', @@ -11963,18 +6856,11 @@ export default { facebook_url: 'https://www.facebook.com/bastiaanlips', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 2171, artist_name: 'vreemde vogels', - image: '88a41215-8e4a-4a47-9d41-70a6f23763e8', current_location: null, type_of_art: 'visual', slug: 'vreemde-vogels', @@ -11982,18 +6868,11 @@ export default { facebook_url: 'https://www.facebook.com/Vreemde-Vogels-749510808416225/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 2172, artist_name: 'levensavonturiers', - image: '938ec07e-5715-479d-a4fc-87759afe6605', current_location: null, type_of_art: 'workshop', slug: 'levensavonturiers', @@ -12001,18 +6880,11 @@ export default { facebook_url: 'https://www.facebook.com/levensavonturiers/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 2173, artist_name: 'theboardroomcafe', - image: 'fb9d48e2-6246-47cb-8e18-41e8e3a11771', current_location: null, type_of_art: 'workshop', slug: 'theboardroomcafe', @@ -12020,18 +6892,11 @@ export default { facebook_url: 'https://www.facebook.com/theboardroomcafe/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 236 - } - } - ] + events: [{ events_id: { id: 236 } }] }, { id: 2174, artist_name: 'Villanova', - image: '6838b7fb-8bf1-4d8a-8207-b8110d391ae4', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'villanova', @@ -12039,28 +6904,11 @@ export default { facebook_url: 'https://www.facebook.com/villanovabandofficial/timeline', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - }, - { - events_id: { - id: 254 - } - }, - { - events_id: { - id: 354 - } - } - ] + events: [{ events_id: { id: 252 } }, { events_id: { id: 254 } }, { events_id: { id: 354 } }] }, { id: 2175, artist_name: 'Young and the Beast', - image: 'b607d3a1-971d-4eae-8c9e-b7a41f4abbe9', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'young-and-the-beast', @@ -12068,18 +6916,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - } - ] + events: [{ events_id: { id: 252 } }] }, { id: 2176, artist_name: 'Matt Evans', - image: 'fed9bd42-740a-4a49-bdc7-004ce84e68e9', current_location: null, type_of_art: 'music', slug: 'matt-evans', @@ -12087,23 +6928,11 @@ export default { facebook_url: 'https://www.facebook.com/mevsmusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - }, - { - events_id: { - id: 256 - } - } - ] + events: [{ events_id: { id: 252 } }, { events_id: { id: 256 } }] }, { id: 2177, artist_name: 'Chris Hall', - image: '64f24390-373e-45ab-9118-f03eb7ec2433', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'chris-hall', @@ -12111,18 +6940,11 @@ export default { facebook_url: 'https://www.facebook.com/ChrisHallMusician/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - } - ] + events: [{ events_id: { id: 252 } }] }, { id: 2178, artist_name: 'Sarah Gamble', - image: '021f4a63-b2f9-4e10-ac9f-7907adda859e', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'sarah-gamble', @@ -12130,18 +6952,11 @@ export default { facebook_url: 'https://www.facebook.com/sarah.gamble.1217', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - } - ] + events: [{ events_id: { id: 252 } }] }, { id: 2179, artist_name: 'Claire Fahie', - image: '36865b10-2ba2-44c4-9d06-386c50ae7e15', current_location: null, type_of_art: 'music', slug: 'claire-fahie', @@ -12149,18 +6964,11 @@ export default { facebook_url: 'https://www.facebook.com/clairefahiemusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - } - ] + events: [{ events_id: { id: 252 } }] }, { id: 2180, artist_name: 'Negrocity', - image: '9dd7f0de-86f7-4d95-aa6d-e86e32025033', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'negrocity', @@ -12168,23 +6976,11 @@ export default { facebook_url: 'https://www.facebook.com/NegrocityWorld/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - }, - { - events_id: { - id: 256 - } - } - ] + events: [{ events_id: { id: 252 } }, { events_id: { id: 256 } }] }, { id: 2181, artist_name: 'Gianni', - image: 'f57c3d4f-b088-4813-a3a5-e6f3507da54c', current_location: 'Perth', type_of_art: 'music', slug: 'gianni', @@ -12192,18 +6988,11 @@ export default { facebook_url: 'https://www.facebook.com/giannimusicperth/about/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 252 - } - } - ] + events: [{ events_id: { id: 252 } }] }, { id: 2182, artist_name: 'The Hunting Birds', - image: '8d20109a-8a4d-4eb1-ad0b-761ff1aa5e50', current_location: null, type_of_art: 'music', slug: 'the-hunting-birds', @@ -12211,18 +7000,11 @@ export default { facebook_url: 'https://www.facebook.com/thehuntingbirds', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 254 - } - } - ] + events: [{ events_id: { id: 254 } }] }, { id: 2183, artist_name: 'The Encounters', - image: 'b994d15d-223c-445b-ab15-f03614017fbe', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'the-encounters', @@ -12230,23 +7012,11 @@ export default { facebook_url: 'https://www.facebook.com/theencountersband/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 256 - } - }, - { - events_id: { - id: 254 - } - } - ] + events: [{ events_id: { id: 256 } }, { events_id: { id: 254 } }] }, { id: 2184, artist_name: 'Chief Monarchy', - image: '2a6f3a1b-509b-43f1-ba0c-9ef0cb55c0dd', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'chief-monarchy', @@ -12254,18 +7024,11 @@ export default { facebook_url: 'https://www.facebook.com/ChiefMonarchy/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 256 - } - } - ] + events: [{ events_id: { id: 256 } }] }, { id: 2185, artist_name: 'Nicky Sandover', - image: 'abbe46cd-e4ac-4ada-b03c-e2df7d95df51', current_location: null, type_of_art: 'music', slug: 'nicky-sandover', @@ -12273,18 +7036,11 @@ export default { facebook_url: 'https://www.facebook.com/nickysandovermusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 256 - } - } - ] + events: [{ events_id: { id: 256 } }] }, { id: 2186, artist_name: 'Little Bird', - image: '64225c86-5642-4e0d-ad72-76fb0f0d8d95', current_location: 'Perth, Australia', type_of_art: 'music', slug: 'little-bird', @@ -12292,18 +7048,11 @@ export default { facebook_url: 'https://www.facebook.com/littlebirdperth/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 256 - } - } - ] + events: [{ events_id: { id: 256 } }] }, { id: 2187, artist_name: 'Three Hands One Hoof', - image: '4577fc1c-a331-4a4d-8dd4-6f3abbf703e4', current_location: null, type_of_art: 'music', slug: 'three-hands-one-hoof', @@ -12311,18 +7060,11 @@ export default { facebook_url: 'https://www.facebook.com/threehandsonehoof/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 256 - } - } - ] + events: [{ events_id: { id: 256 } }] }, { id: 2188, artist_name: 'Jake Yarwood', - image: 'db792e5d-1165-4f76-9b1e-03f844d62d6d', current_location: 'Perth, Australia', type_of_art: 'visual', slug: 'jake-yarwood', @@ -12330,18 +7072,11 @@ export default { facebook_url: 'https://www.facebook.com/jakeyarwood/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 262 - } - } - ] + events: [{ events_id: { id: 262 } }] }, { id: 2189, artist_name: 'Annemieke Mulders', - image: '2fdbd685-ca93-41ec-9b16-bcd5a2dd841a', current_location: null, type_of_art: 'visual', slug: 'annemieke-mulders', @@ -12349,18 +7084,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 262 - } - } - ] + events: [{ events_id: { id: 262 } }] }, { id: 2190, artist_name: 'Matteo Morrielli', - image: 'b9ced2b9-a885-4cbd-a7ef-4b3e0ffc9f42', current_location: 'Barcelona', type_of_art: 'music', slug: 'matteo-morrielli', @@ -12368,18 +7096,11 @@ export default { facebook_url: 'https://www.facebook.com/matteomrlli', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 263 - } - } - ] + events: [{ events_id: { id: 263 } }] }, { id: 2191, artist_name: 'Ben Greenfell', - image: '380b0fee-599f-4818-9a52-ab2e49fe24a9', current_location: null, type_of_art: 'music', slug: 'ben-greenfell', @@ -12387,13 +7108,7 @@ export default { facebook_url: 'https://www.facebook.com/ben.grenfell', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 273 - } - } - ] + events: [{ events_id: { id: 273 } }] }, { id: 2192, @@ -12406,18 +7121,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 273 - } - } - ] + events: [{ events_id: { id: 273 } }] }, { id: 2193, artist_name: '7 come 11', - image: '955d146b-6fb2-4ba2-8c06-32083b830267', current_location: 'Santa Cruz', type_of_art: 'music', slug: '7-come-11', @@ -12425,23 +7133,11 @@ export default { facebook_url: 'https://www.facebook.com/7come11/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 274 - } - }, - { - events_id: { - id: 285 - } - } - ] + events: [{ events_id: { id: 274 } }, { events_id: { id: 285 } }] }, { id: 2194, artist_name: 'TV broken 3rd eye open', - image: 'e158f5bd-7081-4528-809d-db257554ae1c', current_location: null, type_of_art: 'music', slug: 'tv-broken-3rd-eye-open', @@ -12449,18 +7145,11 @@ export default { facebook_url: 'https://www.facebook.com/tvbroken3rdeyeopen/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 274 - } - } - ] + events: [{ events_id: { id: 274 } }] }, { id: 2195, artist_name: 'Wicked Man', - image: '3019f99e-6061-4380-8a71-5b2b01bea3ef', current_location: null, type_of_art: 'music', slug: 'wicked-man', @@ -12468,18 +7157,11 @@ export default { facebook_url: 'https://www.facebook.com/wickedmanpage/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 274 - } - } - ] + events: [{ events_id: { id: 274 } }] }, { id: 2196, artist_name: 'Hella Deer', - image: '880c536b-5a48-4de7-b5a5-e68901d3db75', current_location: 'Santa Cruz', type_of_art: 'music', slug: 'hella-deer', @@ -12487,18 +7169,11 @@ export default { facebook_url: 'https://www.facebook.com/helladeer/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 285 - } - } - ] + events: [{ events_id: { id: 285 } }] }, { id: 2197, artist_name: 'Taborsky', - image: '003ec8fe-2985-40b2-b798-4fc6024f71a6', current_location: null, type_of_art: 'music', slug: 'taborsky', @@ -12507,18 +7182,11 @@ export default { facebook_url: 'https://www.facebook.com/octaviantaborsky/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 293 - } - } - ] + events: [{ events_id: { id: 293 } }] }, { id: 2198, artist_name: 'Strip Steve', - image: '441849a2-60d4-4b60-b5e6-8016361214e8', current_location: 'Berlin, Germany', type_of_art: 'music', slug: 'strip-steve', @@ -12527,23 +7195,11 @@ export default { facebook_url: 'https://www.facebook.com/stripsteve/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 296 - } - }, - { - events_id: { - id: 295 - } - } - ] + events: [{ events_id: { id: 296 } }, { events_id: { id: 295 } }] }, { id: 2199, artist_name: 'Michalis Massage and Soundhealing', - image: '0dbd2744-e378-46ae-b201-b0bb8e5ff80f', current_location: 'Amsterdam, Netherlands', type_of_art: 'workshop', slug: 'michalis-massage-and-soundhealing', @@ -12551,18 +7207,11 @@ export default { facebook_url: 'https://www.facebook.com/michalismassageandsoundhealing/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 297 - } - } - ] + events: [{ events_id: { id: 297 } }] }, { id: 2200, artist_name: 'Nomalanga Draws', - image: '0e78b96d-ae9b-40bb-ba4f-a0f4fe72c3c4', current_location: null, type_of_art: 'visual', slug: 'nomalanga-draws', @@ -12570,18 +7219,11 @@ export default { facebook_url: 'https://www.facebook.com/NomalangaDraws/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 297 - } - } - ] + events: [{ events_id: { id: 297 } }] }, { id: 2201, artist_name: 'Prasand', - image: '60732db0-8ee9-498e-9119-ce4f12cf08d0', current_location: null, type_of_art: 'visual', slug: 'prasand', @@ -12589,18 +7231,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 297 - } - } - ] + events: [{ events_id: { id: 297 } }] }, { id: 2202, artist_name: 'Laineen Kasperi', - image: 'f934d333-1d1a-4bbd-9749-21eef153561d', current_location: null, type_of_art: 'music', slug: 'laineen-kasperi', @@ -12608,18 +7243,11 @@ export default { facebook_url: 'https://www.facebook.com/laineenkasperi/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 2203, artist_name: 'Jukka Viikilä', - image: '03190a64-cf8f-4217-a218-8aa8321221e7', current_location: 'Helsinki, Finland', type_of_art: 'music', slug: 'jukka-viikila', @@ -12627,18 +7255,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 2204, artist_name: 'Risto Oikarinen', - image: '169b00c3-81b9-4ea6-a9a4-842662831c94', current_location: 'Helsinki, Finland', type_of_art: 'music', slug: 'risto-oikarinen', @@ -12646,18 +7267,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 2205, artist_name: 'Toni Kamula', - image: '7055cb94-92ed-49ed-a67e-cd1867367bdb', current_location: 'Helsinki, Finland', type_of_art: 'visual', slug: 'toni-kamula', @@ -12665,18 +7279,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 2206, artist_name: 'Elina Latva', - image: 'e22971c9-53a2-42ab-a324-d81d6f6ee970', current_location: 'Helsinki, Finland', type_of_art: 'visual', slug: 'elina-latva', @@ -12684,23 +7291,11 @@ export default { facebook_url: 'https://www.facebook.com/elina.latva', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - }, - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 305 } }, { events_id: { id: 347 } }] }, { id: 2207, artist_name: 'Lotta Esko', - image: '308b9d8c-3aed-4c02-a597-b900b5604862', current_location: 'Helsinki, Finland', type_of_art: 'visual', slug: 'lotta-esko', @@ -12708,18 +7303,11 @@ export default { facebook_url: 'https://www.facebook.com/lotta.esko', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 305 - } - } - ] + events: [{ events_id: { id: 305 } }] }, { id: 2208, artist_name: 'liali', - image: 'f1f51f0b-f86c-4a38-84b1-9e43d34c782a', current_location: 'Dresden, Germany', type_of_art: 'workshop', slug: 'liali', @@ -12727,23 +7315,11 @@ export default { facebook_url: 'https://www.facebook.com/lea.treuner.1/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 469 - } - }, - { - events_id: { - id: 422 - } - } - ] + events: [{ events_id: { id: 469 } }, { events_id: { id: 422 } }] }, { id: 2209, artist_name: 'Pipaluk Universe', - image: 'ccffe0c8-cb94-4e24-98be-701a1b31de6e', current_location: null, type_of_art: null, slug: 'pipaluk-universe', @@ -12751,18 +7327,11 @@ export default { facebook_url: 'https://www.facebook.com/pipalukuniverse/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 306 - } - } - ] + events: [{ events_id: { id: 306 } }] }, { id: 2210, artist_name: 'Fantus', - image: '3b30e63b-6676-495c-967f-8a583ef8a217', current_location: 'Dresden, Germany', type_of_art: 'music', slug: 'fantus', @@ -12770,18 +7339,11 @@ export default { facebook_url: 'https://www.instagram.com/fantus.studio/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 494 - } - } - ] + events: [{ events_id: { id: 494 } }] }, { id: 2211, artist_name: 'Kokōlora', - image: '81a23f17-6bcb-46ed-9ada-4bb71c12a4a7', current_location: 'Dresden, Germany', type_of_art: 'music', slug: 'koklora', @@ -12789,18 +7351,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 494 - } - } - ] + events: [{ events_id: { id: 494 } }] }, { id: 2212, artist_name: 'Jonas San', - image: '92cffca3-e308-4ced-8f25-965fe730f568', current_location: 'Maastricht', type_of_art: 'music', slug: 'jonas-san', @@ -12809,18 +7364,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 323 - } - } - ] + events: [{ events_id: { id: 323 } }] }, { id: 2213, artist_name: 'Realusion', - image: 'cd28aaea-adcc-437d-99ba-91cbb10a086d', current_location: 'Maastricht, Netherlands', type_of_art: 'music', slug: 'realusion', @@ -12829,18 +7377,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 330 - } - } - ] + events: [{ events_id: { id: 330 } }] }, { id: 2214, artist_name: 'Storyteller Milda', - image: '664ecfde-838e-48e7-b419-0731da72b6d3', current_location: null, type_of_art: 'speaker', slug: 'storyteller-milda', @@ -12848,23 +7389,11 @@ export default { facebook_url: 'https://www.facebook.com/storytellermilda/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 346 - } - }, - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 346 } }, { events_id: { id: 315 } }] }, { id: 2215, artist_name: 'Yann Arthus-Bertrand', - image: 'e702abe5-1124-4b3d-959a-8dc3848d5b09', current_location: null, type_of_art: null, slug: 'yann-arthus-bertrand', @@ -12872,18 +7401,11 @@ export default { facebook_url: 'https://www.facebook.com/Y.A.Bertrand', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2216, artist_name: 'Saffron Ardern-Sodje', - image: 'f66f8eba-5ccb-4219-8a6a-1dd9622dc7d4', current_location: null, type_of_art: 'visual', slug: 'saffron-ardern-sodje', @@ -12891,18 +7413,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2217, artist_name: 'Nevidimye', - image: '740554cd-069e-47c8-b2d1-574958e44dc2', current_location: 'Moscow, Russia', type_of_art: 'visual', slug: 'nevidimye', @@ -12910,18 +7425,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2218, artist_name: 'Vandana Shiva', - image: '8c6c0c08-df59-4e36-b1de-21be3b0df562', current_location: null, type_of_art: 'visual', slug: 'vandana-shiva', @@ -12929,18 +7437,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2219, artist_name: 'George Warren & Leuan Lewis', - image: 'f3478cdc-6343-4820-85f2-195f2c35eb52', current_location: 'London, United Kingdom', type_of_art: 'visual', slug: 'george-warren-and-leuan-lewis', @@ -12948,18 +7449,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2220, artist_name: 'Julian Glander', - image: '9fe1cce3-c4f2-43cd-b402-3a4544fff469', current_location: 'USA', type_of_art: 'visual', slug: 'julian-glander', @@ -12967,18 +7461,11 @@ export default { facebook_url: 'https://www.instagram.com/glanderco/?hl=de', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2221, artist_name: 'Brian Schulz', - image: '045951ce-78b5-46dd-bfab-1cff1da56572', current_location: null, type_of_art: 'visual', slug: 'brian-schulz', @@ -12986,13 +7473,7 @@ export default { facebook_url: '', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2222, @@ -13005,18 +7486,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2223, artist_name: 'Gold Panda', - image: '059fcfcf-5261-4f7e-a582-bcf74db46641', current_location: null, type_of_art: 'music', slug: 'gold-panda', @@ -13024,18 +7498,11 @@ export default { facebook_url: 'https://www.facebook.com/iamgoldpanda', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2224, artist_name: 'Lydia Reid', - image: 'c111053c-f61d-4388-b6bd-95ba4b526219', current_location: 'London, United Kingdom', type_of_art: 'visual', slug: 'lydia-reid', @@ -13043,18 +7510,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2225, artist_name: 'Harrison Ford', - image: '1d0a7b8f-39e7-455d-87c7-cc8302be4231', current_location: null, type_of_art: 'visual', slug: 'harrison-ford', @@ -13062,13 +7522,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2226, @@ -13081,13 +7535,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2227, @@ -13100,13 +7548,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2228, @@ -13119,13 +7561,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2229, @@ -13138,13 +7574,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2230, @@ -13157,13 +7587,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2231, @@ -13176,13 +7600,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 333 - } - } - ] + events: [{ events_id: { id: 333 } }] }, { id: 2232, @@ -13195,18 +7613,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 343 - } - } - ] + events: [{ events_id: { id: 343 } }] }, { id: 2233, artist_name: 'Wiebke B', - image: '34674104-c5be-4bd6-a195-1159d5b02f4e', current_location: 'Leipzig, Germany', type_of_art: 'music', slug: 'wiebke-b', @@ -13214,18 +7625,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 2234, artist_name: 'Fifi Fantôme', - image: '2711af90-c4a7-4d46-86ca-6ed38f804279', current_location: null, type_of_art: 'visual', slug: 'fifi-fantome', @@ -13233,18 +7637,11 @@ export default { facebook_url: 'https://www.facebook.com/fifiifantome/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 2235, artist_name: 'Paula Alejandra Riquelme Orbenes', - image: '55d44190-2468-4b48-ade7-746d5c94602d', current_location: 'Berlin, Germany', type_of_art: 'visual', slug: 'paula-alejandra-riquelme-orbenes', @@ -13252,13 +7649,7 @@ export default { facebook_url: 'https://www.facebook.com/paula.orbenes', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 2236, @@ -13271,18 +7662,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 353 - } - } - ] + events: [{ events_id: { id: 353 } }] }, { id: 2237, artist_name: 'Maloua Loup', - image: 'c532863c-6803-456b-998c-55eed561e4e3', current_location: 'Dresden, Germany', type_of_art: 'music', slug: 'maloua-loup', @@ -13290,18 +7674,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 422 - } - } - ] + events: [{ events_id: { id: 422 } }] }, { id: 2238, artist_name: 'anoush:k', - image: 'f5079503-2902-4124-9c51-860cabe3c47c', current_location: 'Magdeburg', type_of_art: 'music', slug: 'anoushk', @@ -13310,42 +7687,17 @@ export default { level_of_involvement: 'resident', hero_background_color: null, events: [ - { - events_id: { - id: 506 - } - }, - { - events_id: { - id: 12 - } - }, - { - events_id: { - id: 13 - } - }, - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 422 - } - }, - { - events_id: { - id: 544 - } - } + { events_id: { id: 506 } }, + { events_id: { id: 12 } }, + { events_id: { id: 13 } }, + { events_id: { id: 527 } }, + { events_id: { id: 422 } }, + { events_id: { id: 544 } } ] }, { id: 2239, artist_name: 'Mogli', - image: '639bf314-9d4d-4bb6-9eb9-2b5321a1b7bd', current_location: null, type_of_art: 'music', slug: 'mogli', @@ -13354,18 +7706,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 443 - } - } - ] + events: [{ events_id: { id: 443 } }] }, { id: 2240, artist_name: 'Presque', - image: 'd81ddea8-27af-48af-8318-192abf5350b5', current_location: 'Frankfurt, Germany', type_of_art: 'music', slug: 'presque', @@ -13374,18 +7719,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 443 - } - } - ] + events: [{ events_id: { id: 443 } }] }, { id: 2241, artist_name: 'Madeleine Linke', - image: '285e929a-e3c2-4e54-81d7-a33c1b53e907', current_location: 'Magdeburg, Germany', type_of_art: 'speaker', slug: 'madeleine-linke', @@ -13393,13 +7731,7 @@ export default { facebook_url: 'https://www.facebook.com/linke.m.magdeburg/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 445 - } - } - ] + events: [{ events_id: { id: 445 } }] }, { id: 2242, @@ -13412,13 +7744,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 445 - } - } - ] + events: [{ events_id: { id: 445 } }] }, { id: 2243, @@ -13431,13 +7757,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 445 - } - } - ] + events: [{ events_id: { id: 445 } }] }, { id: 2244, @@ -13450,18 +7770,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 445 - } - } - ] + events: [{ events_id: { id: 445 } }] }, { id: 2245, artist_name: 'Valeentin-1', - image: 'bb706bc9-f0c4-47cb-b0f6-29edab40adcf', current_location: null, type_of_art: 'music', slug: 'valeentin-1', @@ -13469,18 +7782,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 447 - } - } - ] + events: [{ events_id: { id: 447 } }] }, { id: 2246, artist_name: 'WHYBE', - image: 'cc6055a6-4e4e-44ef-b429-5e16fc62efb1', current_location: null, type_of_art: 'music', slug: 'whybe', @@ -13488,18 +7794,11 @@ export default { facebook_url: 'https://www.facebook.com/whybesingersongwriter/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 447 - } - } - ] + events: [{ events_id: { id: 447 } }] }, { id: 2247, artist_name: 'Lisette Lowe', - image: '53013a6d-7ebb-4d2a-b2bd-2ed3c8aa5079', current_location: null, type_of_art: 'music', slug: 'lisette-lowe', @@ -13507,18 +7806,11 @@ export default { facebook_url: 'https://www.facebook.com/lisettelowemusic/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 447 - } - } - ] + events: [{ events_id: { id: 447 } }] }, { id: 2248, artist_name: 'Triana', - image: 'e1baef71-51e6-452b-99ad-8db28b67d9c6', current_location: 'Maastricht, Netherlands', type_of_art: 'music', slug: 'triana', @@ -13526,13 +7818,7 @@ export default { facebook_url: 'https://www.facebook.com/triana.segovia', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 447 - } - } - ] + events: [{ events_id: { id: 447 } }] }, { id: 2249, @@ -13545,13 +7831,7 @@ export default { facebook_url: 'https://www.facebook.com/malanghiarts/', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 447 - } - } - ] + events: [{ events_id: { id: 447 } }] }, { id: 2251, @@ -13564,13 +7844,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 254 - } - } - ] + events: [{ events_id: { id: 254 } }] }, { id: 2252, @@ -13583,13 +7857,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 254 - } - } - ] + events: [{ events_id: { id: 254 } }] }, { id: 2253, @@ -13602,13 +7870,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 262 - } - } - ] + events: [{ events_id: { id: 262 } }] }, { id: 2254, @@ -13621,13 +7883,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 262 - } - } - ] + events: [{ events_id: { id: 262 } }] }, { id: 2255, @@ -13640,13 +7896,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 263 - } - } - ] + events: [{ events_id: { id: 263 } }] }, { id: 2257, @@ -13659,13 +7909,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 2258, @@ -13678,13 +7922,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 2263, @@ -13697,13 +7935,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 2264, @@ -13716,13 +7948,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 2267, @@ -13735,18 +7961,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 347 - } - } - ] + events: [{ events_id: { id: 347 } }] }, { id: 2269, artist_name: 'Masha Bronnikova', - image: 'e2aeb562-3337-4ee8-b450-95dde426b839', current_location: null, type_of_art: 'music', slug: 'masha-bronnikova', @@ -13754,13 +7973,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - } - ] + events: [{ events_id: { id: 334 } }] }, { id: 2270, @@ -13773,18 +7986,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - } - ] + events: [{ events_id: { id: 334 } }] }, { id: 2271, artist_name: 'Guy Galloway', - image: 'c231b197-b3b4-425b-8f55-e1c599f2d232', current_location: null, type_of_art: 'speaker', slug: 'guy-galloway', @@ -13792,18 +7998,11 @@ export default { facebook_url: 'https://www.facebook.com/okcomedytime', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - } - ] + events: [{ events_id: { id: 334 } }] }, { id: 2272, artist_name: 'Gerard van Soelen', - image: 'e042a176-5a91-4caa-a8b4-13fda1704027', current_location: null, type_of_art: 'music', slug: 'gerard-van-soelen', @@ -13811,23 +8010,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - }, - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 334 } }, { events_id: { id: 315 } }] }, { id: 2273, artist_name: 'Stanislav Nikolov', - image: '59d91a8a-5d01-4c88-8277-0f1d0fdd49d1', current_location: null, type_of_art: 'speaker', slug: 'stanislav-nikolov', @@ -13835,13 +8022,7 @@ export default { facebook_url: 'https://www.facebook.com/Stanislav-Nikolov-225088244931170/about/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - } - ] + events: [{ events_id: { id: 334 } }] }, { id: 2274, @@ -13854,13 +8035,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - } - ] + events: [{ events_id: { id: 334 } }] }, { id: 2275, @@ -13873,13 +8048,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - } - ] + events: [{ events_id: { id: 334 } }] }, { id: 2276, @@ -13892,18 +8061,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 334 - } - } - ] + events: [{ events_id: { id: 334 } }] }, { id: 2277, artist_name: 'Lucas Sinka Concee', - image: '5a53c444-b469-41a1-b6fc-8ecf08538e50', current_location: 'Amsterdam, Netherlands', type_of_art: 'music', slug: 'lucas-sinka-concee', @@ -13911,23 +8073,11 @@ export default { facebook_url: 'https://www.facebook.com/lucasmitc', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 315 - } - }, - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 315 } }, { events_id: { id: 341 } }] }, { id: 2278, artist_name: 'DYNNO DADA', - image: 'a43aa6d8-8aa1-486a-b70b-cd6f81dc2d02', current_location: null, type_of_art: 'visual', slug: 'dynno-dada', @@ -13935,13 +8085,7 @@ export default { facebook_url: 'https://www.facebook.com/dynnodada/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 320 - } - } - ] + events: [{ events_id: { id: 320 } }] }, { id: 2279, @@ -13954,18 +8098,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 315 } }] }, { id: 2280, artist_name: 'Louise Goodger', - image: 'bc3a8b50-23b0-40f0-a051-e815f180e34a', current_location: '', type_of_art: 'music', slug: 'louise-goodger', @@ -13974,13 +8111,7 @@ export default { facebook_url: 'https://www.facebook.com/louisegoodgermusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 315 } }] }, { id: 2281, @@ -13993,13 +8124,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 315 } }] }, { id: 2282, @@ -14012,13 +8137,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 315 } }] }, { id: 2283, @@ -14031,13 +8150,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 315 - } - } - ] + events: [{ events_id: { id: 315 } }] }, { id: 2284, @@ -14050,13 +8163,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 348 } }] }, { id: 2286, @@ -14069,13 +8176,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 348 } }] }, { id: 2287, @@ -14088,13 +8189,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 348 } }] }, { id: 2288, @@ -14107,13 +8202,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 348 } }] }, { id: 2289, @@ -14126,13 +8215,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 348 } }] }, { id: 2290, @@ -14145,18 +8228,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 348 - } - } - ] + events: [{ events_id: { id: 348 } }] }, { id: 2291, artist_name: 'Harriet Davey', - image: '3079ef5f-4d68-49c8-a9b9-bb878f95a6dd', current_location: 'Berlin, Germany', type_of_art: 'visual', slug: 'harriet-davey', @@ -14164,18 +8240,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2292, artist_name: 'Katy Wang', - image: '4bdbbaf3-cc28-4333-8e7d-ad2d9a566f89', current_location: 'United Kingdom', type_of_art: 'visual', slug: 'katy-wang', @@ -14183,18 +8252,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2293, artist_name: 'Marc Meier', - image: '30824687-b897-4d8b-9ac4-6242dae0e8ac', current_location: null, type_of_art: 'visual', slug: 'marc-meier', @@ -14202,13 +8264,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2294, @@ -14221,18 +8277,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2295, artist_name: 'Kevin McGloughlin', - image: '6207b8c6-c7d8-47b2-9aba-db01980f77e0', current_location: 'Sligo, Ireland', type_of_art: 'visual', slug: 'kevin-mcgloughlin', @@ -14240,18 +8289,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2296, artist_name: 'Tim Ellrich', - image: '8fe71dc1-afe9-4f3d-9e94-5e3888a76052', current_location: 'Ludwigsburg, Germany', type_of_art: 'visual', slug: 'tim-ellrich', @@ -14259,13 +8301,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2297, @@ -14278,18 +8314,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2298, artist_name: 'Dan Taberski', - image: 'd4cc5546-257f-409c-b2dc-25814171f3b7', current_location: '', type_of_art: 'visual', slug: 'dan-taberski', @@ -14297,18 +8326,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2299, artist_name: 'Kirsten Lepore', - image: 'c981ca0a-5097-401b-9bdc-bf9526a335d3', current_location: null, type_of_art: 'visual', slug: 'kirsten-lepore', @@ -14316,18 +8338,11 @@ export default { facebook_url: 'https://www.facebook.com/kirstenlepore', level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 341 - } - } - ] + events: [{ events_id: { id: 341 } }] }, { id: 2300, artist_name: 'Lemonella', - image: '9e6c164f-881d-4fdc-9d58-babdfc17c57c', current_location: null, type_of_art: 'music', slug: 'lemonella', @@ -14336,13 +8351,7 @@ export default { facebook_url: 'https://www.facebook.com/lemonellamusic/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 497 - } - } - ] + events: [{ events_id: { id: 497 } }] }, { id: 2301, @@ -14355,18 +8364,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 507 - } - } - ] + events: [{ events_id: { id: 507 } }] }, { id: 2302, artist_name: 'Turak', - image: 'c0dfec97-a068-4283-bbc6-d574fcb31812', current_location: 'Berlin', type_of_art: null, slug: 'turak', @@ -14374,18 +8376,7 @@ export default { facebook_url: 'https://www.facebook.com/djturak/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 527 - } - }, - { - events_id: { - id: 507 - } - } - ] + events: [{ events_id: { id: 527 } }, { events_id: { id: 507 } }] }, { id: 2303, @@ -14398,18 +8389,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 513 - } - } - ] + events: [{ events_id: { id: 513 } }] }, { id: 2304, artist_name: 'Monoglot', - image: '6ffcfced-349d-403b-86c4-dd871851232b', current_location: 'Berlin, Basel, Reykjavik', type_of_art: 'music', slug: 'monoglot', @@ -14417,18 +8401,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 514 - } - } - ] + events: [{ events_id: { id: 514 } }] }, { id: 2305, artist_name: 'MADmoiselle', - image: 'f587fc08-9329-4225-8d0e-ebf0a68a4b5b', current_location: null, type_of_art: 'music', slug: 'madmoiselle', @@ -14436,23 +8413,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 530 - } - }, - { - events_id: { - id: 560 - } - } - ] + events: [{ events_id: { id: 530 } }, { events_id: { id: 560 } }] }, { id: 2306, artist_name: 'LadyBug', - image: '0ec6b96b-1621-457b-8c45-8928328beba0', current_location: null, type_of_art: null, slug: 'ladybug', @@ -14460,18 +8425,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 530 - } - } - ] + events: [{ events_id: { id: 530 } }] }, { id: 2307, artist_name: 'kerria', - image: '27e12940-8abe-42bd-8571-098d4ec3c0cb', current_location: null, type_of_art: null, slug: 'kerria', @@ -14479,18 +8437,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 530 - } - } - ] + events: [{ events_id: { id: 530 } }] }, { id: 2308, artist_name: 'F.R.A.N.', - image: 'ce46d5e2-5ffc-4965-8462-35b49fcdde99', current_location: 'Munich', type_of_art: 'music', slug: 'fran', @@ -14498,18 +8449,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 533 - } - } - ] + events: [{ events_id: { id: 533 } }] }, { id: 2309, artist_name: 'Yves Ruffet', - image: '239b0bf2-35e8-40f1-b9f0-00f98eae4439', current_location: 'Munich', type_of_art: 'music', slug: 'yves-ruffet', @@ -14517,18 +8461,11 @@ export default { facebook_url: 'https://www.facebook.com/YvesRuffetDJ', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 533 - } - } - ] + events: [{ events_id: { id: 533 } }] }, { id: 2310, artist_name: 'Kan', - image: '8b74ce08-bd9b-4b69-a8c4-bf87cb5a3938', current_location: 'Munich', type_of_art: 'music', slug: 'kan', @@ -14536,18 +8473,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 533 - } - } - ] + events: [{ events_id: { id: 533 } }] }, { id: 2311, artist_name: 'Audae', - image: '25321f7b-3547-4c8a-8634-cb5c39744498', current_location: 'Berlin', type_of_art: null, slug: 'audae', @@ -14555,23 +8485,11 @@ export default { facebook_url: 'https://www.facebook.com/audaemusic', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 544 - } - }, - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 544 } }, { events_id: { id: 534 } }] }, { id: 2312, artist_name: 'Pea', - image: '7b60a49b-9a5d-46e5-a02d-d097b9fbdf69', current_location: 'Leipzig', type_of_art: 'music', slug: 'pea', @@ -14580,18 +8498,11 @@ export default { facebook_url: 'https://www.facebook.com/vypadkovist', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 544 - } - } - ] + events: [{ events_id: { id: 544 } }] }, { id: 2313, artist_name: 'Just Etienne', - image: 'b8964634-310c-4d41-939c-3054f1ed85b5', current_location: 'Magdeburg', type_of_art: 'music', slug: 'justetienne', @@ -14599,18 +8510,11 @@ export default { facebook_url: 'https://www.facebook.com/JUSTETIENNE', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 544 - } - } - ] + events: [{ events_id: { id: 544 } }] }, { id: 2314, artist_name: 'Malabarista', - image: '7fb45a81-3c70-4def-b316-5f8b5256e532', current_location: 'Magdeburg', type_of_art: 'visual', slug: 'malabarista', @@ -14618,23 +8522,11 @@ export default { facebook_url: 'https://www.facebook.com/MalabaristaMD', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 544 - } - }, - { - events_id: { - id: 560 - } - } - ] + events: [{ events_id: { id: 544 } }, { events_id: { id: 560 } }] }, { id: 2315, artist_name: 'Living Room Gallery Magdeburg', - image: '852206d4-47cb-4713-bc97-1824877a9dfc', current_location: 'Magdeburg', type_of_art: 'visual', slug: 'livingroomgallery', @@ -14642,18 +8534,11 @@ export default { facebook_url: 'https://www.facebook.com/livingroomgallerymagdeburg', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 544 - } - } - ] + events: [{ events_id: { id: 544 } }] }, { id: 2316, artist_name: 'Jayānī', - image: '23074077-6ed2-4625-87a1-8703d0950ab9', current_location: 'Magdeburg', type_of_art: 'workshop', slug: 'jayani', @@ -14661,13 +8546,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 544 - } - } - ] + events: [{ events_id: { id: 544 } }] }, { id: 2327, @@ -14680,13 +8559,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 558 - } - } - ] + events: [{ events_id: { id: 558 } }] }, { id: 2328, @@ -14699,13 +8572,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 558 - } - } - ] + events: [{ events_id: { id: 558 } }] }, { id: 2329, @@ -14718,28 +8585,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 558 - } - }, - { - events_id: { - id: 562 - } - }, - { - events_id: { - id: 582 - } - } - ] + events: [{ events_id: { id: 558 } }, { events_id: { id: 562 } }, { events_id: { id: 582 } }] }, { id: 2330, artist_name: 'Lenny Gravity', - image: '19ea293d-6311-4827-92a0-5edd2348b138', current_location: 'Munich', type_of_art: 'music', slug: 'lenny-gravity', @@ -14747,21 +8597,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: null - }, - { - events_id: { - id: 559 - } - } - ] + events: [{ events_id: { id: 559 } }] }, { id: 2331, artist_name: 'FUCHSEN', - image: '314cfb87-5a77-4c4e-a728-3e1177e17c4a', current_location: 'Berlin', type_of_art: 'music', slug: 'fuchsen', @@ -14769,26 +8609,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: null - }, - { - events_id: { - id: 559 - } - }, - { - events_id: { - id: 16 - } - } - ] + events: [{ events_id: { id: 559 } }, { events_id: { id: 16 } }] }, { id: 2332, artist_name: 'pulli & chomba', - image: '8782bbd7-86bc-4439-bdab-152756e58824', current_location: 'Berlin', type_of_art: 'music', slug: 'pulli-and-chomba', @@ -14796,18 +8621,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 560 - } - } - ] + events: [{ events_id: { id: 560 } }] }, { id: 2333, artist_name: 'Augenstein', - image: '5ca3ad83-e51d-40d3-ac49-9c4602da8f3b', current_location: 'Halle', type_of_art: 'music', slug: 'augenstein', @@ -14815,18 +8633,11 @@ export default { facebook_url: 'https://www.facebook.com/augensteinofficial/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 560 - } - } - ] + events: [{ events_id: { id: 560 } }] }, { id: 2334, artist_name: 'Judith Ahrends', - image: '6841d1f7-c091-446f-a0bb-b511341b67ac', current_location: 'Berlin', type_of_art: 'music', slug: 'judith-ahrends', @@ -14834,18 +8645,11 @@ export default { facebook_url: 'https://www.facebook.com/judith.ahrends/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 560 - } - } - ] + events: [{ events_id: { id: 560 } }] }, { id: 2335, artist_name: 'AmuAmu', - image: '60e4ce23-1d6e-4d96-8bfe-7b58f372b0cb', current_location: 'Essen', type_of_art: 'music', slug: 'amuamu', @@ -14853,13 +8657,7 @@ export default { facebook_url: 'https://www.facebook.com/AmuAmuMusic', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 560 - } - } - ] + events: [{ events_id: { id: 560 } }] }, { id: 2336, @@ -14872,13 +8670,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 561 - } - } - ] + events: [{ events_id: { id: 561 } }] }, { id: 2337, @@ -14891,13 +8683,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 561 - } - } - ] + events: [{ events_id: { id: 561 } }] }, { id: 2338, @@ -14910,13 +8696,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 561 - } - } - ] + events: [{ events_id: { id: 561 } }] }, { id: 2339, @@ -14929,13 +8709,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 561 - } - } - ] + events: [{ events_id: { id: 561 } }] }, { id: 2340, @@ -14948,13 +8722,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 561 - } - } - ] + events: [{ events_id: { id: 561 } }] }, { id: 2341, @@ -14967,13 +8735,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 561 - } - } - ] + events: [{ events_id: { id: 561 } }] }, { id: 2342, @@ -14986,13 +8748,7 @@ export default { facebook_url: 'https://www.facebook.com/dancedivinez', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 562 - } - } - ] + events: [{ events_id: { id: 562 } }] }, { id: 2343, @@ -15005,13 +8761,7 @@ export default { facebook_url: 'https://www.facebook.com/marco.moro.712', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 562 - } - } - ] + events: [{ events_id: { id: 562 } }] }, { id: 2344, @@ -15024,13 +8774,7 @@ export default { facebook_url: 'https://www.facebook.com/stanislawa.dde', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 562 - } - } - ] + events: [{ events_id: { id: 562 } }] }, { id: 2391, @@ -15043,13 +8787,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 564 - } - } - ] + events: [{ events_id: { id: 564 } }] }, { id: 2392, @@ -15062,13 +8800,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 564 - } - } - ] + events: [{ events_id: { id: 564 } }] }, { id: 2393, @@ -15081,13 +8813,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 564 - } - } - ] + events: [{ events_id: { id: 564 } }] }, { id: 2394, @@ -15100,18 +8826,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 564 - } - } - ] + events: [{ events_id: { id: 564 } }] }, { id: 2404, artist_name: 'ACUD', - image: 'cd32adf7-3030-4394-8a66-f610f0b3ffcb', current_location: 'Berlin', type_of_art: 'music', slug: 'acud', @@ -15119,18 +8838,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 2405, artist_name: 'Bizarro Universe', - image: '533f7a0d-fd73-4cb4-a379-5282314ae3f9', current_location: null, type_of_art: 'music', slug: 'bizarro-universe', @@ -15138,18 +8850,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 2406, artist_name: 'SAGAN', - image: '20eaf9d1-c0dd-4f96-a0f4-224668244a2b', current_location: null, type_of_art: 'music', slug: 'sagan-musica', @@ -15157,18 +8862,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 2407, artist_name: 'Shirley Shot', - image: '4c72f40f-1649-4b02-90ac-fa554af6683a', current_location: null, type_of_art: 'music', slug: 'shirley-shot', @@ -15176,23 +8874,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - }, - { - events_id: { - id: 16 - } - } - ] + events: [{ events_id: { id: 534 } }, { events_id: { id: 16 } }] }, { id: 2408, artist_name: 'Tummetott', - image: 'aba875dd-046b-48be-b664-b12f2fc844a1', current_location: null, type_of_art: 'music', slug: 'tummetott', @@ -15200,18 +8886,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 2409, artist_name: 'Faul & Spaeth', - image: '73720e09-b782-49a1-9d0e-c473f5ff49a1', current_location: null, type_of_art: 'music', slug: 'faul-spaeth', @@ -15219,18 +8898,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 2410, artist_name: 'Luu Sierra', - image: 'd5eeffb0-0b15-4cab-b8ac-021501822a9d', current_location: null, type_of_art: 'music', slug: 'luu-sierra', @@ -15238,18 +8910,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 2411, artist_name: 'Barbara Bös', - image: '96b1d581-11a9-41c0-9def-11f69a8fb240', current_location: null, type_of_art: null, slug: 'barbara-boes', @@ -15257,18 +8922,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 534 - } - } - ] + events: [{ events_id: { id: 534 } }] }, { id: 2412, artist_name: 'Aliaksei Babets', - image: '464a798c-9edc-48e2-82f0-3a1e8d9afd2a', current_location: null, type_of_art: null, slug: 'aliaksei-babets', @@ -15276,18 +8934,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2413, artist_name: 'Aquiles Jarrín', - image: 'c60db0d2-0421-4e5e-92de-75f2daee7391', current_location: null, type_of_art: 'visual', slug: 'aquiles-jarrin', @@ -15295,18 +8946,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2414, artist_name: 'Bárbara Acevedo Strange', - image: '0f242685-52fa-4950-9dee-4c08fc066cbb', current_location: null, type_of_art: 'visual', slug: 'barbara-acevedo-strange', @@ -15314,18 +8958,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2415, artist_name: 'Elena Lazutkaite', - image: 'ddc4a948-ce29-482b-be1c-fbf23526fa42', current_location: null, type_of_art: 'speaker', slug: 'elena-lazutkaite', @@ -15333,18 +8970,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2416, artist_name: 'Jonas Liepmann', - image: 'c0351751-b9e0-4eb1-9dd0-3131bbfaff76', current_location: null, type_of_art: 'visual', slug: 'jonas-liepmann', @@ -15352,18 +8982,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2417, artist_name: 'Nini Khuroshvili', - image: 'bd66a3b9-eca4-4f15-b8d2-a19d7b224a9d', current_location: null, type_of_art: 'speaker', slug: 'nini', @@ -15371,18 +8994,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2418, artist_name: 'Rebecca Schedler', - image: '7311921a-9c57-4be9-919b-cd0b923f5cfc', current_location: null, type_of_art: null, slug: 'rebecca-schedler', @@ -15390,18 +9006,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2419, artist_name: 'Noémie Despland-Lichtert + Brendan Sullivan Shea', - image: 'aa161d46-ecac-4cda-a795-36ca8d4a67e4', current_location: null, type_of_art: 'visual', slug: 'noemie-and-brendan', @@ -15409,18 +9018,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2420, artist_name: 'Vanessa Bosch', - image: 'a5da54f3-8f73-408e-a9c3-89d34329965f', current_location: null, type_of_art: 'visual', slug: 'vanessa-bosch', @@ -15428,18 +9030,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2421, artist_name: 'Zeno Nan', - image: '13742239-bee8-4447-b6bc-3eb6b1bb1b21', current_location: null, type_of_art: 'visual', slug: 'zeno-nan', @@ -15447,18 +9042,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 580 - } - } - ] + events: [{ events_id: { id: 580 } }] }, { id: 2422, artist_name: 'rhere', - image: '71d9ffe0-cfe8-4977-a316-eee10cae0b06', current_location: 'Berlin', type_of_art: 'music', slug: 'rhere', @@ -15466,18 +9054,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 581 - } - } - ] + events: [{ events_id: { id: 581 } }] }, { id: 2424, artist_name: 'Chao54ngel', - image: 'be765882-4346-4cdb-a3d8-68dda220beff', current_location: 'Zürich', type_of_art: 'music', slug: 'chao54ngel', @@ -15485,18 +9066,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 581 - } - } - ] + events: [{ events_id: { id: 581 } }] }, { id: 2425, artist_name: 'M o n t u n o', - image: '7c32e6bd-0797-46e5-9ea1-8909dd7aad32', current_location: 'Argentina based Berlin', type_of_art: 'music', slug: 'montuno', @@ -15504,18 +9078,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 581 - } - } - ] + events: [{ events_id: { id: 581 } }] }, { id: 2426, artist_name: 'Bloom', - image: 'a21c060a-2e01-4bd1-ab4e-469ec56c5136', current_location: 'Magdeburg', type_of_art: 'music', slug: 'bloom', @@ -15523,18 +9090,11 @@ export default { facebook_url: 'https://www.facebook.com/claudiounifei', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 584 - } - } - ] + events: [{ events_id: { id: 584 } }] }, { id: 2427, artist_name: 'Chaos Katy', - image: '1eae0ff0-a4f0-43d7-9196-9edccbbea58e', current_location: 'Leipzig', type_of_art: 'music', slug: 'chaoskaty', @@ -15543,18 +9103,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 584 - } - } - ] + events: [{ events_id: { id: 584 } }] }, { id: 2428, artist_name: 'ninsn', - image: '152a8587-73fe-4dab-9a01-b763e8110e17', current_location: 'Berlin', type_of_art: 'music', slug: 'ninsn', @@ -15562,18 +9115,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 584 - } - } - ] + events: [{ events_id: { id: 584 } }] }, { id: 2429, artist_name: '[chudnowski: analysis]', - image: 'fb6f5840-fe65-4758-ae2c-4c5e42fc090b', current_location: 'Magdeburg', type_of_art: 'music', slug: 'chudnowski', @@ -15581,18 +9127,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 584 - } - } - ] + events: [{ events_id: { id: 584 } }] }, { id: 2430, artist_name: 'ELIZEN THE EMPEROR', - image: '5dd416d9-9cff-4136-b9a6-a42acfcb13e6', current_location: 'Berlin', type_of_art: 'music', slug: 'elizentheemperor', @@ -15600,23 +9139,7 @@ export default { facebook_url: 'https://www.facebook.com/elizentheemperor', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 584 - } - }, - { - events_id: { - id: 16 - } - }, - { - events_id: { - id: 594 - } - } - ] + events: [{ events_id: { id: 584 } }, { events_id: { id: 16 } }, { events_id: { id: 594 } }] }, { id: 2431, @@ -15629,13 +9152,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 584 - } - } - ] + events: [{ events_id: { id: 584 } }] }, { id: 2434, @@ -15648,18 +9165,7 @@ export default { facebook_url: 'https://de-de.facebook.com/Mannemond/', level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 590 - } - }, - { - events_id: { - id: 592 - } - } - ] + events: [{ events_id: { id: 590 } }, { events_id: { id: 592 } }] }, { id: 2435, @@ -15672,13 +9178,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 590 - } - } - ] + events: [{ events_id: { id: 590 } }] }, { id: 2436, @@ -15691,13 +9191,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 590 - } - } - ] + events: [{ events_id: { id: 590 } }] }, { id: 2437, @@ -15710,13 +9204,7 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 590 - } - } - ] + events: [{ events_id: { id: 590 } }] }, { id: 2438, @@ -15729,16 +9217,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: null - }, - { - events_id: { - id: 592 - } - } - ] + events: [{ events_id: { id: 592 } }] }, { id: 2439, @@ -15751,18 +9230,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 590 - } - } - ] + events: [{ events_id: { id: 590 } }] }, { id: 2440, artist_name: 'HansCendence', - image: '44d02af8-e1ad-4adf-b7c7-fa9feb306a3e', current_location: 'Magdeburg', type_of_art: 'music', slug: 'hanscendence', @@ -15770,28 +9242,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 560 - } - }, - { - events_id: { - id: 587 - } - }, - { - events_id: { - id: 603 - } - } - ] + events: [{ events_id: { id: 560 } }, { events_id: { id: 587 } }, { events_id: { id: 603 } }] }, { id: 2441, artist_name: 'SILSAN', - image: '5ff4269b-6684-4784-bed0-a06106b5f226', current_location: 'Munich', type_of_art: 'music', slug: 'silsan', @@ -15799,18 +9254,7 @@ export default { facebook_url: 'https://www.facebook.com/silsan.music', level_of_involvement: 'resident', hero_background_color: '#000000', - events: [ - { - events_id: { - id: 16 - } - }, - { - events_id: { - id: 596 - } - } - ] + events: [{ events_id: { id: 16 } }, { events_id: { id: 596 } }] }, { id: 2442, @@ -15823,13 +9267,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 590 - } - } - ] + events: [{ events_id: { id: 590 } }] }, { id: 2443, @@ -15842,18 +9280,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 592 - } - }, - { - events_id: { - id: 610 - } - } - ] + events: [{ events_id: { id: 592 } }, { events_id: { id: 610 } }] }, { id: 2444, @@ -15866,18 +9293,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 592 - } - }, - { - events_id: { - id: 612 - } - } - ] + events: [{ events_id: { id: 592 } }, { events_id: { id: 612 } }, { events_id: { id: 616 } }] }, { id: 2445, @@ -15890,13 +9306,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 592 - } - } - ] + events: [{ events_id: { id: 592 } }] }, { id: 2446, @@ -15909,18 +9319,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 592 - } - } - ] + events: [{ events_id: { id: 592 } }] }, { id: 2447, artist_name: 'Duygu', - image: '41d44bd8-7128-450c-a033-5ce1d1a5dc24', current_location: 'Munich', type_of_art: 'music', slug: 'duygu-music', @@ -15929,27 +9332,15 @@ export default { level_of_involvement: 'resident', hero_background_color: '#6644FF', events: [ - { - events_id: { - id: 594 - } - }, - { - events_id: { - id: 595 - } - }, - { - events_id: { - id: 582 - } - } + { events_id: { id: 594 } }, + { events_id: { id: 595 } }, + { events_id: { id: 582 } }, + { events_id: { id: 613 } } ] }, { id: 2448, artist_name: 'mmoja', - image: '3c277c36-118c-485d-9954-414329005525', current_location: 'Munich', type_of_art: 'music', slug: 'mmoja-dj', @@ -15957,23 +9348,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: '#FF8040', - events: [ - { - events_id: { - id: 594 - } - }, - { - events_id: { - id: 595 - } - } - ] + events: [{ events_id: { id: 594 } }, { events_id: { id: 595 } }, { events_id: { id: 613 } }] }, { id: 2449, artist_name: 'Wanda Wild', - image: 'aa554763-45be-4357-ba20-335cd96cf167', current_location: 'Munich', type_of_art: 'music', slug: 'wanda-wild', @@ -15986,7 +9365,6 @@ export default { { id: 2450, artist_name: 'Diladi', - image: '7cec97d3-ecb3-481b-b692-93e6457d5e79', current_location: 'Berlin', type_of_art: 'music', slug: 'diladi', @@ -15994,18 +9372,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 587 - } - } - ] + events: [{ events_id: { id: 587 } }] }, { id: 2451, artist_name: 'zhart & true nature', - image: 'ccdbad3e-6466-4053-9b5d-b8f698f01528', current_location: 'Berlin', type_of_art: 'music', slug: 'zhart-and-true-nature', @@ -16013,18 +9384,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 587 - } - } - ] + events: [{ events_id: { id: 587 } }] }, { id: 2452, artist_name: 'monkyman', - image: '75ecf4c5-ced9-49ea-b95d-0beb93ec70fb', current_location: null, type_of_art: 'music', slug: 'monkyman', @@ -16032,18 +9396,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 587 - } - } - ] + events: [{ events_id: { id: 587 } }] }, { id: 2453, artist_name: 'Dante', - image: 'dd9bd383-b0a9-46d5-b89c-a067e1bb0dcb', current_location: null, type_of_art: null, slug: 'dante', @@ -16051,18 +9408,11 @@ export default { facebook_url: null, level_of_involvement: '', hero_background_color: null, - events: [ - { - events_id: { - id: 587 - } - } - ] + events: [{ events_id: { id: 587 } }] }, { id: 2454, artist_name: 'Matrusch*k', - image: 'fa6d0f80-d98d-417c-ae9a-200ce798d860', current_location: null, type_of_art: 'music', slug: 'matruschk', @@ -16070,18 +9420,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 587 - } - } - ] + events: [{ events_id: { id: 587 } }] }, { id: 2455, artist_name: 'Maria Theresia von Eberg ', - image: '2229b836-68af-475e-9b09-9ba1abdc5113', current_location: 'Freiburg', type_of_art: 'music', slug: 'maria-theresia-von-eberg', @@ -16089,13 +9432,7 @@ export default { facebook_url: 'https://www.instagram.com/mariatheresiavoneberg/', level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 594 - } - } - ] + events: [{ events_id: { id: 594 } }] }, { id: 2456, @@ -16108,18 +9445,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 600 - } - }, - { - events_id: { - id: 600 - } - } - ] + events: [{ events_id: { id: 600 } }, { events_id: { id: 600 } }] }, { id: 2457, @@ -16132,23 +9458,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 600 - } - }, - { - events_id: { - id: 600 - } - }, - { - events_id: { - id: 9 - } - } - ] + events: [{ events_id: { id: 600 } }, { events_id: { id: 600 } }, { events_id: { id: 9 } }] }, { id: 2458, @@ -16161,18 +9471,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 600 - } - }, - { - events_id: { - id: 600 - } - } - ] + events: [{ events_id: { id: 600 } }, { events_id: { id: 600 } }] }, { id: 2459, @@ -16185,18 +9484,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 600 - } - }, - { - events_id: { - id: 600 - } - } - ] + events: [{ events_id: { id: 600 } }, { events_id: { id: 600 } }] }, { id: 2460, @@ -16209,18 +9497,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 600 - } - }, - { - events_id: { - id: 600 - } - } - ] + events: [{ events_id: { id: 600 } }, { events_id: { id: 600 } }] }, { id: 2461, @@ -16233,23 +9510,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 600 - } - }, - { - events_id: { - id: 600 - } - } - ] + events: [{ events_id: { id: 600 } }, { events_id: { id: 600 } }] }, { id: 2462, artist_name: 'Johænsson', - image: '3816faca-6c46-4ed8-9142-e4f3ed79c393', current_location: 'Berlin', type_of_art: 'music', slug: 'johaensson', @@ -16257,13 +9522,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 601 - } - } - ] + events: [{ events_id: { id: 601 } }] }, { id: 2463, @@ -16281,7 +9540,6 @@ export default { { id: 2464, artist_name: 'Mūna', - image: 'c3c1a9f2-1b74-4eb2-894b-053aa468c74c', current_location: 'Berlin', type_of_art: null, slug: 'muna', @@ -16289,18 +9547,11 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 601 - } - } - ] + events: [{ events_id: { id: 601 } }] }, { id: 2465, artist_name: 'FULICA ACKTRA', - image: 'ada0211b-9472-441f-9516-f1769bbf503b', current_location: 'Berlin', type_of_art: null, slug: 'fulica-acktra', @@ -16308,13 +9559,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 601 - } - } - ] + events: [{ events_id: { id: 601 } }] }, { id: 2466, @@ -16332,7 +9577,6 @@ export default { { id: 2467, artist_name: 'Gewagt & Maßgeschneidert', - image: '1746959c-cdc4-4900-a919-eaee4a3b577e', current_location: 'Magdeburg', type_of_art: 'music', slug: 'gewagt-and-massgeschneidert', @@ -16340,13 +9584,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 603 - } - } - ] + events: [{ events_id: { id: 603 } }] }, { id: 2468, @@ -16359,13 +9597,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 610 - } - } - ] + events: [{ events_id: { id: 610 } }] }, { id: 2469, @@ -16378,13 +9610,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 610 - } - } - ] + events: [{ events_id: { id: 610 } }] }, { id: 2470, @@ -16397,13 +9623,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 610 - } - } - ] + events: [{ events_id: { id: 610 } }] }, { id: 2471, @@ -16416,13 +9636,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 610 - } - } - ] + events: [{ events_id: { id: 610 } }] }, { id: 2472, @@ -16435,18 +9649,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 610 - } - } - ] + events: [{ events_id: { id: 610 } }] }, { id: 2473, artist_name: 'HappyCityHippie', - image: 'd95d53c3-d64d-4274-adba-95013a73fb0f', current_location: 'Magdeburg', type_of_art: 'music', slug: 'happycityhippie', @@ -16454,13 +9661,7 @@ export default { facebook_url: null, level_of_involvement: 'resident', hero_background_color: null, - events: [ - { - events_id: { - id: 603 - } - } - ] + events: [{ events_id: { id: 603 } }] }, { id: 2474, @@ -16473,13 +9674,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 611 - } - } - ] + events: [{ events_id: { id: 611 } }] }, { id: 2475, @@ -16492,13 +9687,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 611 - } - } - ] + events: [{ events_id: { id: 611 } }] }, { id: 2476, @@ -16511,13 +9700,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 611 - } - } - ] + events: [{ events_id: { id: 611 } }] }, { id: 2477, @@ -16530,17 +9713,11 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 611 - } - } - ] + events: [{ events_id: { id: 611 } }] }, { id: 2478, - artist_name: 'RUFUS R A B A T Z', + artist_name: 'RUFUS RABATZ', image: null, current_location: 'Hamburg', type_of_art: 'music', @@ -16549,13 +9726,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 611 - } - } - ] + events: [{ events_id: { id: 611 } }] }, { id: 2479, @@ -16568,13 +9739,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 611 - } - } - ] + events: [{ events_id: { id: 611 } }] }, { id: 2480, @@ -16587,13 +9752,7 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 612 - } - } - ] + events: [{ events_id: { id: 612 } }] }, { id: 2481, @@ -16606,13 +9765,81 @@ export default { facebook_url: null, level_of_involvement: 'supporter', hero_background_color: null, - events: [ - { - events_id: { - id: 612 - } - } - ] + events: [{ events_id: { id: 612 } }] + }, + { + id: 2482, + artist_name: 'Schlawinsky', + image: null, + current_location: 'Hamburg', + type_of_art: 'music', + slug: 'schlawinsky', + soundcloud_url: 'https://soundcloud.com/tini-schlawini', + facebook_url: null, + level_of_involvement: 'supporter', + hero_background_color: null, + events: [{ events_id: { id: 612 } }] + }, + { + id: 2483, + artist_name: 'Echte Ra', + current_location: 'Brussels', + type_of_art: 'music', + slug: 'echte-ra', + soundcloud_url: 'https://soundcloud.com/echte-ra', + facebook_url: null, + level_of_involvement: 'supporter', + hero_background_color: '#FFFFFF', + events: [] + }, + { + id: 2484, + artist_name: 'Oli Neate', + current_location: 'Copenhagen', + type_of_art: 'music', + slug: 'olineate', + soundcloud_url: 'https://soundcloud.com/OliNeate', + facebook_url: null, + level_of_involvement: 'resident', + hero_background_color: null, + events: [] + }, + { + id: 2485, + artist_name: 'JoaRas', + current_location: 'Munich', + type_of_art: 'music', + slug: 'joaras', + soundcloud_url: 'https://soundcloud.com/joaras', + facebook_url: 'https://it-it.facebook.com/joarasdj', + level_of_involvement: 'resident', + hero_background_color: null, + events: [{ events_id: { id: 613 } }] + }, + { + id: 2486, + artist_name: 'Malva', + current_location: 'Munich', + type_of_art: 'music', + slug: 'malva', + soundcloud_url: 'https://soundcloud.com/malvasound', + facebook_url: null, + level_of_involvement: 'resident', + hero_background_color: null, + events: [{ events_id: { id: 613 } }] + }, + { + id: 2487, + artist_name: 'Nivrambo', + image: null, + current_location: 'Bremen', + type_of_art: 'music', + slug: 'nivrambo', + soundcloud_url: 'https://soundcloud.com/nivrambo', + facebook_url: null, + level_of_involvement: 'supporter', + hero_background_color: null, + events: [{ events_id: { id: 616 } }] } ] }; diff --git a/fixtures/events.ts b/fixtures/events.ts index 22581956..1b9ef083 100644 --- a/fixtures/events.ts +++ b/fixtures/events.ts @@ -1,176 +1,182 @@ export default { data: [ { - id: 612, - name: 'Draußen auf dem Jupiter OA', + id: 616, + name: 'Draußen auf dem Jupiter OA 2.0', poster: null, event_type: 'party', - startdatetime: '2024-04-13T15:00:00', - enddatetime: '2024-04-14T01:00:00', - slug: 'draussen-auf-dem-jupiter-oa', + startdatetime: '2024-07-26T20:00:00', + enddatetime: '2024-07-27T01:00:00', + location: 'Jupiter', + slug: 'draussenaufdemjupiter20', hero_background_color: null, - hubs: [486], + hubs: [{ hubs_id: { city: 'Hamburg' } }], + artists: [ + { artists_id: { id: 2444, artist_name: 'DINKS', image: null, slug: 'dinks' } }, + { artists_id: { id: 2487, artist_name: 'Nivrambo', image: null, slug: 'nivrambo' } } + ] + }, + { + id: 615, + name: 'Midsommar Love', + event_type: 'party', + startdatetime: '2024-06-21T23:00:00', + enddatetime: '2024-06-22T05:00:00', + location: 'Secret Location', + slug: 'midsommar-love-oresund', + hero_background_color: null, + hubs: [{ hubs_id: { city: 'Oresund' } }], + artists: [] + }, + { + id: 614, + name: 'Love de la Musique', + poster: null, + event_type: 'party', + startdatetime: '2024-06-21T18:00:00', + enddatetime: '2024-06-22T08:00:00', + location: 'Magdeburg', + slug: 'lovedelamusique24', + hero_background_color: null, + hubs: [{ hubs_id: { city: 'Magdeburg' } }], + artists: [] + }, + { + id: 613, + name: 'Amore Affair', + event_type: 'party', + startdatetime: '2024-04-18T21:00:00', + enddatetime: '2024-04-19T03:00:00', + location: 'Unter Deck', + slug: 'unter-deck-apr-2024', + hero_background_color: null, + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [ { artists_id: { - artist_name: 'Marco Baskind', - image: null, - slug: 'marco-baskind' + id: 2448, + artist_name: 'mmoja', + slug: 'mmoja-dj' } }, { artists_id: { - artist_name: 'Moa', - image: null, - slug: 'moa' + id: 2447, + artist_name: 'Duygu', + slug: 'duygu-music' } }, { artists_id: { - artist_name: 'DINKS', - image: null, - slug: 'dinks' + id: 2485, + artist_name: 'JoaRas', + slug: 'joaras' + } + }, + { + artists_id: { + id: 2486, + artist_name: 'Malva', + slug: 'malva' } } ] }, + { + id: 612, + name: 'Draußen auf dem Jupiter OA', + event_type: 'party', + startdatetime: '2024-04-13T15:00:00', + enddatetime: '2024-04-14T01:00:00', + location: 'Jupiter', + slug: 'draussen-auf-dem-jupiter-oa', + hero_background_color: null, + hubs: [{ hubs_id: { city: 'Hamburg' } }], + artists: [ + { + artists_id: { id: 2480, artist_name: 'Marco Baskind', image: null, slug: 'marco-baskind' } + }, + { artists_id: { id: 2481, artist_name: 'Moa', image: null, slug: 'moa' } }, + { artists_id: { id: 2444, artist_name: 'DINKS', image: null, slug: 'dinks' } }, + { artists_id: { id: 2482, artist_name: 'Schlawinsky', image: null, slug: 'schlawinsky' } } + ] + }, { id: 611, name: 'Klang der Liebe', - poster: null, event_type: 'party', startdatetime: '2024-03-29T23:59:00', enddatetime: '2024-03-30T08:00:00', + location: 'Hafenklang', slug: 'klang-der-liebe', hero_background_color: null, - hubs: [485], + hubs: [{ hubs_id: { city: 'Hamburg' } }], artists: [ + { artists_id: { id: 2474, artist_name: 'David Bucka', image: null, slug: 'david-bucka' } }, { - artists_id: { - artist_name: 'David Bucka', - image: null, - slug: 'david-bucka' - } - }, - { - artists_id: { - artist_name: 'Marie Wilson', - image: null, - slug: 'marie-wilson' - } - }, - { - artists_id: { - artist_name: 'DJ Dose', - image: null, - slug: 'dj-dose' - } - }, - { - artists_id: { - artist_name: 'Nikiija', - image: null, - slug: 'nikiija' - } + artists_id: { id: 2475, artist_name: 'Marie Wilson', image: null, slug: 'marie-wilson' } }, + { artists_id: { id: 2476, artist_name: 'DJ Dose', image: null, slug: 'dj-dose' } }, + { artists_id: { id: 2477, artist_name: 'Nikiija', image: null, slug: 'nikiija' } }, { - artists_id: { - artist_name: 'RUFUS R A B A T Z', - image: null, - slug: 'rufus-rabatz' - } + artists_id: { id: 2478, artist_name: 'RUFUS RABATZ', image: null, slug: 'rufus-rabatz' } }, - { - artists_id: { - artist_name: 'Sevent', - image: null, - slug: 'sevent' - } - } + { artists_id: { id: 2479, artist_name: 'Sevent', image: null, slug: 'sevent' } } ] }, { id: 610, name: 'Love makes the Difference', - poster: 'cbcac277-b268-4a0b-89e0-15107cdbf649', event_type: 'party', startdatetime: '2024-03-01T00:00:00', enddatetime: '2024-03-02T07:00:00', + location: 'Rathausbunker Kiel', slug: 'love-makes-the-difference', hero_background_color: null, - hubs: [484], + hubs: [{ hubs_id: { city: 'Hamburg' } }], artists: [ { artists_id: { + id: 2443, artist_name: 'Mørtel & Patlick', image: null, slug: 'mortel-and-patlick' } }, - { - artists_id: { - artist_name: 'Twicet', - image: null, - slug: 'twicet' - } - }, - { - artists_id: { - artist_name: 'Adebar', - image: null, - slug: 'adebar' - } - }, - { - artists_id: { - artist_name: 'John Kracht', - image: null, - slug: 'john-kracht' - } - }, - { - artists_id: { - artist_name: 'Bosse Faust', - image: null, - slug: 'bosse-faust' - } - }, - { - artists_id: { - artist_name: 'Paxilon', - image: null, - slug: 'paxilon' - } - } + { artists_id: { id: 2468, artist_name: 'Twicet', image: null, slug: 'twicet' } }, + { artists_id: { id: 2469, artist_name: 'Adebar', image: null, slug: 'adebar' } }, + { artists_id: { id: 2470, artist_name: 'John Kracht', image: null, slug: 'john-kracht' } }, + { artists_id: { id: 2471, artist_name: 'Bosse Faust', image: null, slug: 'bosse-faust' } }, + { artists_id: { id: 2472, artist_name: 'Paxilon', image: null, slug: 'paxilon' } } ] }, { id: 609, name: 'Discovery of Slowness', - poster: '4e74b4f1-eb89-496c-8911-5dad15172fd0', event_type: 'party', startdatetime: '2024-02-16T23:00:00', enddatetime: '2024-02-17T12:00:00', + location: 'Beate Uwe', slug: 'slowwwwwwness', hero_background_color: null, - hubs: [483], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [] }, { id: 608, name: 'Fest der universellen Liebe 2024', - poster: '55358482-2ebb-4f6e-a376-ea7be9cc7538', event_type: 'love excursion', startdatetime: '2024-02-14T17:00:00', enddatetime: '2024-02-15T01:00:00', + location: 'Campustheater Magdeburg', slug: 'fest-der-universellen-liebe-2024', hero_background_color: null, - hubs: [482], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 3, artist_name: 'Nawaf Guzman', - image: 'ca7087c2-fe84-439d-86f6-5fb5af55e115', slug: 'nawaf-guzman' } } @@ -179,30 +185,30 @@ export default { { id: 605, name: 'Winter Wonder Love', - poster: '019ad2d0-fc1d-4194-8de8-fa9256252966', event_type: 'other', startdatetime: '2023-12-16T18:00:00', enddatetime: '2023-12-17T02:00:00', + location: 'Lager der Love Foundation Magdeburg', slug: 'winter-wonder-love', hero_background_color: null, - hubs: [478], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [] }, { id: 607, name: 'Rave Down Memory Lane ', - poster: 'b2ec5502-3cd6-4bba-beb0-03da92e78496', event_type: 'party', startdatetime: '2023-12-08T20:00:00', enddatetime: '2023-12-09T05:00:00', + location: 'Antidote', slug: 'rave-down-memory-lane', hero_background_color: null, - hubs: [481], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [ { artists_id: { + id: 1901, artist_name: 'Octopus Garden', - image: '371b5123-4d82-4f17-9d13-70ef0b904aee', slug: 'octopus-garden' } } @@ -211,18 +217,18 @@ export default { { id: 606, name: 'Smells like Teen Spirit ', - poster: '157ae67f-698b-4405-a511-c5ea6e3e861d', event_type: 'party', startdatetime: '2023-11-24T12:00:00', enddatetime: '2023-11-25T12:00:00', + location: 'Lolaluid', slug: 'lolaluid', hero_background_color: null, - hubs: [479, 480], + hubs: [{ hubs_id: { city: 'Amsterdam' } }, { hubs_id: { city: 'Brussels' } }], artists: [ { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } } @@ -231,46 +237,46 @@ export default { { id: 603, name: 'Light Gate 2023', - poster: '94b55310-f450-4c56-835e-e6a52039a459', event_type: 'party', startdatetime: '2023-10-14T20:00:00', enddatetime: '2023-10-15T07:00:00', + location: 'Hildesheim', slug: 'light-gate-2023', hero_background_color: null, - hubs: [476], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2440, artist_name: 'HansCendence', - image: '44d02af8-e1ad-4adf-b7c7-fa9feb306a3e', slug: 'hanscendence' } }, { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } }, { artists_id: { + id: 2467, artist_name: 'Gewagt & Maßgeschneidert', - image: '1746959c-cdc4-4900-a919-eaee4a3b577e', slug: 'gewagt-and-massgeschneidert' } }, { artists_id: { + id: 18, artist_name: 'Marcelito', - image: 'df776a4a-10ed-48bf-b566-4cb8f78d4c1a', slug: 'marcelito' } }, { artists_id: { + id: 2473, artist_name: 'HappyCityHippie', - image: 'd95d53c3-d64d-4274-adba-95013a73fb0f', slug: 'happycityhippie' } } @@ -283,52 +289,30 @@ export default { event_type: 'party', startdatetime: '2023-10-06T22:00:00', enddatetime: '2023-10-07T03:00:00', + location: 'LBB Keldertje', slug: 'kelderlove', hero_background_color: null, - hubs: [475], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 600, name: 'Soli Speciale', - poster: 'ecb0d82b-4955-4134-ba94-dc854d418b4f', event_type: 'party', startdatetime: '2023-09-29T23:59:00', enddatetime: '2023-09-30T08:00:00', + location: 'Fundbureau Hamburg', slug: 'h23-q3-1', hero_background_color: null, - hubs: [473], + hubs: [{ hubs_id: { city: 'Hamburg' } }], artists: [ + { artists_id: { id: 2456, artist_name: 'AALIYAH', image: null, slug: 'aaliyah' } }, + { artists_id: { id: 2456, artist_name: 'AALIYAH', image: null, slug: 'aaliyah' } }, + { artists_id: { id: 2457, artist_name: 'ÄXOLOTL', image: null, slug: 'aexolotl' } }, + { artists_id: { id: 2457, artist_name: 'ÄXOLOTL', image: null, slug: 'aexolotl' } }, { artists_id: { - artist_name: 'AALIYAH', - image: null, - slug: 'aaliyah' - } - }, - { - artists_id: { - artist_name: 'AALIYAH', - image: null, - slug: 'aaliyah' - } - }, - { - artists_id: { - artist_name: 'ÄXOLOTL', - image: null, - slug: 'aexolotl' - } - }, - { - artists_id: { - artist_name: 'ÄXOLOTL', - image: null, - slug: 'aexolotl' - } - }, - { - artists_id: { + id: 2458, artist_name: 'DJ Gameboy Color', image: null, slug: 'dj-gameboy-color' @@ -336,53 +320,22 @@ export default { }, { artists_id: { + id: 2458, artist_name: 'DJ Gameboy Color', image: null, slug: 'dj-gameboy-color' } }, { - artists_id: { - artist_name: 'Günni Gatzen', - image: null, - slug: 'guenni-gatzen' - } + artists_id: { id: 2459, artist_name: 'Günni Gatzen', image: null, slug: 'guenni-gatzen' } }, { - artists_id: { - artist_name: 'Günni Gatzen', - image: null, - slug: 'guenni-gatzen' - } + artists_id: { id: 2459, artist_name: 'Günni Gatzen', image: null, slug: 'guenni-gatzen' } }, - { - artists_id: { - artist_name: 'Nadida', - image: null, - slug: 'nadida' - } - }, - { - artists_id: { - artist_name: 'Nadida', - image: null, - slug: 'nadida' - } - }, - { - artists_id: { - artist_name: 'PATB3RG', - image: null, - slug: 'patb3rg' - } - }, - { - artists_id: { - artist_name: 'PATB3RG', - image: null, - slug: 'patb3rg' - } - } + { artists_id: { id: 2460, artist_name: 'Nadida', image: null, slug: 'nadida' } }, + { artists_id: { id: 2460, artist_name: 'Nadida', image: null, slug: 'nadida' } }, + { artists_id: { id: 2461, artist_name: 'PATB3RG', image: null, slug: 'patb3rg' } }, + { artists_id: { id: 2461, artist_name: 'PATB3RG', image: null, slug: 'patb3rg' } } ] }, { @@ -392,28 +345,29 @@ export default { event_type: 'party', startdatetime: '2023-09-24T16:00:00', enddatetime: '2023-09-24T00:00:00', + location: 'Zuckerzauber', slug: 'all-you-sweet-is-love', hero_background_color: null, - hubs: [474], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2462, artist_name: 'Johænsson', - image: '3816faca-6c46-4ed8-9142-e4f3ed79c393', slug: 'johaensson' } }, { artists_id: { + id: 2464, artist_name: 'Mūna', - image: 'c3c1a9f2-1b74-4eb2-894b-053aa468c74c', slug: 'muna' } }, { artists_id: { + id: 2465, artist_name: 'FULICA ACKTRA', - image: 'ada0211b-9472-441f-9516-f1769bbf503b', slug: 'fulica-acktra' } } @@ -422,25 +376,25 @@ export default { { id: 604, name: 'Kulturbrücke Festival 2023', - poster: 'd8385b51-5b90-4d1d-81de-c84bfbb48c0c', event_type: 'festival', startdatetime: '2023-09-08T15:00:00', enddatetime: '2023-09-10T20:00:00', + location: 'Magdeburg', slug: 'kulturbruecke-festival-2023', hero_background_color: null, - hubs: [477], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 18, artist_name: 'Marcelito', - image: 'df776a4a-10ed-48bf-b566-4cb8f78d4c1a', slug: 'marcelito' } }, { artists_id: { + id: 3, artist_name: 'Nawaf Guzman', - image: 'ca7087c2-fe84-439d-86f6-5fb5af55e115', slug: 'nawaf-guzman' } } @@ -449,46 +403,46 @@ export default { { id: 594, name: 'Follow the Rainbow Open Air', - poster: '48348fc7-5d72-4dc8-84b7-a266539a0165', event_type: 'party', startdatetime: '2023-08-12T14:00:00', enddatetime: '2023-08-13T08:00:00', + location: 'Ende Gelände | Alte Utting', slug: 'follow-the-rainbow', hero_background_color: null, - hubs: [467], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [ { artists_id: { + id: 2447, artist_name: 'Duygu', - image: '41d44bd8-7128-450c-a033-5ce1d1a5dc24', slug: 'duygu-music' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 2448, artist_name: 'mmoja', - image: '3c277c36-118c-485d-9954-414329005525', slug: 'mmoja-dj' } }, { artists_id: { + id: 2430, artist_name: 'ELIZEN THE EMPEROR', - image: '5dd416d9-9cff-4136-b9a6-a42acfcb13e6', slug: 'elizentheemperor' } }, { artists_id: { + id: 2455, artist_name: 'Maria Theresia von Eberg ', - image: '2229b836-68af-475e-9b09-9ba1abdc5113', slug: 'maria-theresia-von-eberg' } } @@ -497,25 +451,25 @@ export default { { id: 596, name: 'Spectrum of Love', - poster: 'a60febd9-5298-441b-a6d1-bde08d650163', event_type: 'party', startdatetime: '2023-07-22T23:00:00', enddatetime: '2023-07-23T12:00:00', + location: 'Mensch Meier', slug: 'spectrumoflove', hero_background_color: null, - hubs: [469], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2005, artist_name: 'Arnau Amatista', - image: '6b2298f5-7f72-472f-8861-2335e60b5ab4', slug: 'arnau-amatista' } }, { artists_id: { + id: 2441, artist_name: 'SILSAN', - image: '5ff4269b-6684-4784-bed0-a06106b5f226', slug: 'silsan' } } @@ -524,53 +478,53 @@ export default { { id: 587, name: 'Glacis Open Air 2023', - poster: '57549ca5-22c4-4431-b75a-ea0374f4c7c4', event_type: 'festival', startdatetime: '2023-07-22T14:00:00', enddatetime: '2023-07-22T22:00:00', + location: 'Glacis Park Magdeburg', slug: 'glacis-open-air-2023', hero_background_color: null, - hubs: [461], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2440, artist_name: 'HansCendence', - image: '44d02af8-e1ad-4adf-b7c7-fa9feb306a3e', slug: 'hanscendence' } }, { artists_id: { + id: 2450, artist_name: 'Diladi', - image: '7cec97d3-ecb3-481b-b692-93e6457d5e79', slug: 'diladi' } }, { artists_id: { + id: 2451, artist_name: 'zhart & true nature', - image: 'ccdbad3e-6466-4053-9b5d-b8f698f01528', slug: 'zhart-and-true-nature' } }, { artists_id: { + id: 2452, artist_name: 'monkyman', - image: '75ecf4c5-ced9-49ea-b95d-0beb93ec70fb', slug: 'monkyman' } }, { artists_id: { + id: 2453, artist_name: 'Dante', - image: 'dd9bd383-b0a9-46d5-b89c-a067e1bb0dcb', slug: 'dante' } }, { artists_id: { + id: 2454, artist_name: 'Matrusch*k', - image: 'fa6d0f80-d98d-417c-ae9a-200ce798d860', slug: 'matruschk' } } @@ -583,83 +537,57 @@ export default { event_type: 'party', startdatetime: '2023-07-14T22:00:00', enddatetime: '2023-07-15T04:30:00', + location: 'Groovestation', slug: 'aaa', hero_background_color: null, - hubs: [470], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [] }, { id: 599, name: 'Love is in the Air IV', - poster: '1e715ae6-e2a4-4e79-842a-e90814dc7b7f', event_type: 'party', startdatetime: '2023-06-17T14:00:00', enddatetime: '2023-06-17T23:00:00', + location: 'Maastricht', slug: 'love-is-in-the-air-4', hero_background_color: null, - hubs: [472], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 592, name: 'Liebe stiften', - poster: '75fe2a4a-3f5c-4e3b-bee6-818b2d7a206c', event_type: 'party', startdatetime: '2023-06-16T23:00:00', enddatetime: '2023-06-17T08:00:00', + location: 'Fundbureau Hamburg', slug: 'liebe-stiften', hero_background_color: null, - hubs: [465], + hubs: [{ hubs_id: { city: 'Hamburg' } }], artists: [ { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, + { artists_id: { id: 2438, artist_name: 'Sheila', image: null, slug: 'sheila' } }, { - artists_id: { - artist_name: 'Sheila', - image: null, - slug: 'sheila' - } - }, - { - artists_id: { - artist_name: 'Benny Wolfes', - image: null, - slug: 'benny-wolfes' - } + artists_id: { id: 2434, artist_name: 'Benny Wolfes', image: null, slug: 'benny-wolfes' } }, { artists_id: { + id: 2443, artist_name: 'Mørtel & Patlick', image: null, slug: 'mortel-and-patlick' } }, - { - artists_id: { - artist_name: 'DINKS', - image: null, - slug: 'dinks' - } - }, - { - artists_id: { - artist_name: 'MARGO', - image: null, - slug: 'margo' - } - }, - { - artists_id: { - artist_name: 'HAEDER', - image: null, - slug: 'haeder' - } - } + { artists_id: { id: 2444, artist_name: 'DINKS', image: null, slug: 'dinks' } }, + { artists_id: { id: 2445, artist_name: 'MARGO', image: null, slug: 'margo' } }, + { artists_id: { id: 2446, artist_name: 'HAEDER', image: null, slug: 'haeder' } } ] }, { @@ -669,21 +597,22 @@ export default { event_type: 'demonstration', startdatetime: '2023-06-10T15:00:00', enddatetime: '2023-06-10T22:00:00', + location: 'Munich', slug: 'krachparade-2023', hero_background_color: null, - hubs: [468], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [ { artists_id: { + id: 2448, artist_name: 'mmoja', - image: '3c277c36-118c-485d-9954-414329005525', slug: 'mmoja-dj' } }, { artists_id: { + id: 2447, artist_name: 'Duygu', - image: '41d44bd8-7128-450c-a033-5ce1d1a5dc24', slug: 'duygu-music' } } @@ -692,131 +621,125 @@ export default { { id: 582, name: 'Ten Years Of Love (Foundation) ', - poster: '8ceb29ce-d2f8-47ed-8c89-1d9cd8039221', event_type: 'festival', startdatetime: '2023-06-02T12:00:00', enddatetime: '2023-06-04T21:58:00', + location: 'Katzensprung Gelände', slug: 'ten-years-of-love', hero_background_color: null, - hubs: [456], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 2447, artist_name: 'Duygu', - image: '41d44bd8-7128-450c-a033-5ce1d1a5dc24', slug: 'duygu-music' } }, { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1834, artist_name: 'To Be Honest', - image: '33f51123-f8f3-4e24-9ecb-823611c8b13c', slug: 'to-be-honest' } }, { artists_id: { + id: 1981, artist_name: 'GIZMO', - image: 'a5a32b2e-0fba-4ba6-a4c8-7161228e567d', slug: 'gizmo' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1818, artist_name: 'Kotoe', - image: 'd2b294a0-f07d-4f60-9527-c8352e0ee3a8', slug: 'kotoe' } }, { artists_id: { + id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', slug: 'casio' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1762, artist_name: 'Marcel Puntheller', - image: '75264d00-d6b2-4d6d-986a-39e7ab062d6c', slug: 'marcel-puntheller' } }, { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } }, { artists_id: { + id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', slug: 'zodya' } }, { artists_id: { + id: 1901, artist_name: 'Octopus Garden', - image: '371b5123-4d82-4f17-9d13-70ef0b904aee', slug: 'octopus-garden' } }, - { - artists_id: { - artist_name: 'Mama Jo', - image: null, - slug: 'mama-jo' - } - } + { artists_id: { id: 2329, artist_name: 'Mama Jo', image: null, slug: 'mama-jo' } } ] }, { id: 593, name: 'Love Overload', - poster: '672f41d8-ce79-4475-8215-cb850ea508f7', event_type: 'party', startdatetime: '2023-05-20T23:59:00', enddatetime: '2023-05-21T08:00:00', + location: 'Copenhagen ', slug: 'love-overload', hero_background_color: null, - hubs: [466], + hubs: [{ hubs_id: { city: 'Oresund' } }], artists: [] }, { @@ -826,81 +749,37 @@ export default { event_type: 'party', startdatetime: '2023-04-14T23:00:00', enddatetime: '2023-04-14T07:00:00', + location: 'Meschwitzstraße 13, 01099 Dresden', slug: 'nachtwaechterruf', hero_background_color: null, - hubs: [437], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ - { - artists_id: { - artist_name: 'Deja Wu', - image: null, - slug: 'dejawu' - } - }, - { - artists_id: { - artist_name: "J'tellier", - image: null, - slug: 'j-tellier' - } - }, - { - artists_id: { - artist_name: 'C2C', - image: null, - slug: 'c2c' - } - }, - { - artists_id: { - artist_name: 'Tarzan', - image: null, - slug: 'tarzan' - } - }, - { - artists_id: { - artist_name: 'MarV8', - image: null, - slug: 'marv8' - } - }, - { - artists_id: { - artist_name: 'Anner', - image: null, - slug: 'anner' - } - } + { artists_id: { id: 2336, artist_name: 'Deja Wu', image: null, slug: 'dejawu' } }, + { artists_id: { id: 2337, artist_name: "J'tellier", image: null, slug: 'j-tellier' } }, + { artists_id: { id: 2338, artist_name: 'C2C', image: null, slug: 'c2c' } }, + { artists_id: { id: 2339, artist_name: 'Tarzan', image: null, slug: 'tarzan' } }, + { artists_id: { id: 2340, artist_name: 'MarV8', image: null, slug: 'marv8' } }, + { artists_id: { id: 2341, artist_name: 'Anner', image: null, slug: 'anner' } } ] }, { id: 590, name: '90s Trash meets Techno', - poster: '4a384ba0-3022-4ff4-9d80-9e31cb05512f', event_type: 'party', startdatetime: '2023-03-17T23:00:00', enddatetime: '2023-03-18T09:00:00', + location: 'Fundbureau', slug: '90s-trash-meets-techno', hero_background_color: null, - hubs: [463], + hubs: [{ hubs_id: { city: 'Hamburg' } }], artists: [ { - artists_id: { - artist_name: 'Benny Wolfes', - image: null, - slug: 'benny-wolfes' - } - }, - { - artists_id: { - artist_name: 'Skarafan', - image: null, - slug: 'skarafan' - } + artists_id: { id: 2434, artist_name: 'Benny Wolfes', image: null, slug: 'benny-wolfes' } }, + { artists_id: { id: 2435, artist_name: 'Skarafan', image: null, slug: 'skarafan' } }, { artists_id: { + id: 2436, artist_name: 'soniccollide b2b Fəʊ', image: null, slug: 'soniccollide' @@ -908,106 +787,98 @@ export default { }, { artists_id: { + id: 2437, artist_name: 'Phil Errotari / TLSCP', image: null, slug: 'phil-errotari' } }, { - artists_id: { - artist_name: 'DJ Patrick', - image: null, - slug: 'event-dj-patrick' - } + artists_id: { id: 2439, artist_name: 'DJ Patrick', image: null, slug: 'event-dj-patrick' } }, - { - artists_id: { - artist_name: 'Monsen', - image: null, - slug: 'monsen' - } - } + { artists_id: { id: 2442, artist_name: 'Monsen', image: null, slug: 'monsen' } } ] }, { id: 591, name: 'Lovebunker', - poster: 'b8a8e580-816d-4c02-9368-693667fc742a', event_type: 'party', startdatetime: '2023-03-11T23:59:00', enddatetime: '2023-03-12T06:00:00', + location: 'Aachen Musikbunker', slug: 'lovebunker', hero_background_color: null, - hubs: [464], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 585, name: 'Fest der universellen Liebe', - poster: 'aca8c2cb-d171-4cb0-9492-5f10449dacbd', event_type: 'other', startdatetime: '2023-02-14T18:00:00', enddatetime: '2023-02-14T23:00:00', + location: 'Salbker Wasserturm Magdeburg', slug: 'fest-der-universellen-liebe', hero_background_color: null, - hubs: [460], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [] }, { id: 584, name: 'Lovekantinchen', - poster: '4b49ce1d-a462-41b9-980b-0c02feef6ae4', event_type: 'party', startdatetime: '2023-01-28T22:00:00', enddatetime: '2023-01-29T06:00:00', + location: 'Kunstkantine Magdeburg', slug: 'lovekantinchen', hero_background_color: null, - hubs: [459], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } }, { artists_id: { + id: 2426, artist_name: 'Bloom', - image: 'a21c060a-2e01-4bd1-ab4e-469ec56c5136', slug: 'bloom' } }, { artists_id: { + id: 2427, artist_name: 'Chaos Katy', - image: '1eae0ff0-a4f0-43d7-9196-9edccbbea58e', slug: 'chaoskaty' } }, { artists_id: { + id: 2428, artist_name: 'ninsn', - image: '152a8587-73fe-4dab-9a01-b763e8110e17', slug: 'ninsn' } }, { artists_id: { + id: 2429, artist_name: '[chudnowski: analysis]', - image: 'fb6f5840-fe65-4758-ae2c-4c5e42fc090b', slug: 'chudnowski' } }, { artists_id: { + id: 2430, artist_name: 'ELIZEN THE EMPEROR', - image: '5dd416d9-9cff-4136-b9a6-a42acfcb13e6', slug: 'elizentheemperor' } }, { artists_id: { + id: 2431, artist_name: 'Schmarco van Wolken', image: null, slug: 'schmarco-van-wolken' @@ -1018,18 +889,18 @@ export default { { id: 588, name: 'Over the City | Under your Skin', - poster: 'ac6a45f2-82c5-43e2-b25a-90d314a04fb6', event_type: 'art exhibition', startdatetime: '2023-01-21T16:00:00', enddatetime: '2023-01-21T00:00:00', + location: 'Forêt', slug: 'over-the-city-under-your-skin', hero_background_color: null, - hubs: [462], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [ { artists_id: { + id: 1901, artist_name: 'Octopus Garden', - image: '371b5123-4d82-4f17-9d13-70ef0b904aee', slug: 'octopus-garden' } } @@ -1038,13 +909,13 @@ export default { { id: 598, name: 'Love Rave Sleep Repeat', - poster: '97a532ef-9c1e-413b-b46a-5c8adfb4ac06', event_type: 'party', startdatetime: '2023-01-14T21:00:00', enddatetime: '2023-01-15T03:00:00', + location: 'Landbouwbelang Maastricht', slug: 'love-rave-sleep-repeat', hero_background_color: null, - hubs: [471], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { @@ -1054,47 +925,42 @@ export default { event_type: 'party', startdatetime: '2022-12-09T18:00:00', enddatetime: '2022-12-11T14:00:00', + location: 'Munich', slug: 'munich-christmas-party22', hero_background_color: null, - hubs: [458], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [] }, { id: 581, name: 'OASIS 2027 Party', - poster: '130a6d45-e290-457d-912b-0f26f625d1a0', event_type: 'party', startdatetime: '2022-10-22T18:00:00', enddatetime: '2022-10-23T07:00:00', + location: 'Karl-Schmidt-Straße 12, 39104 Magdeburg', slug: 'oasis-2027-party', hero_background_color: null, - hubs: [455], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2422, artist_name: 'rhere', - image: '71d9ffe0-cfe8-4977-a316-eee10cae0b06', slug: 'rhere' } }, + { artists_id: { id: 2423, artist_name: 'Acidasha', image: null, slug: 'acidasha' } }, { artists_id: { - artist_name: 'Acidasha', - image: null, - slug: 'acidasha' - } - }, - { - artists_id: { + id: 2424, artist_name: 'Chao54ngel', - image: 'be765882-4346-4cdb-a3d8-68dda220beff', slug: 'chao54ngel' } }, { artists_id: { + id: 2425, artist_name: 'M o n t u n o', - image: '7c32e6bd-0797-46e5-9ea1-8909dd7aad32', slug: 'montuno' } } @@ -1107,42 +973,21 @@ export default { event_type: 'party', startdatetime: '2022-10-21T23:00:00', enddatetime: '2022-10-22T06:00:00', + location: 'Ilses Erika Leipzig', slug: 'you-will-have-raved', hero_background_color: null, - hubs: [440], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ + { artists_id: { id: 2391, artist_name: 'memeslut420', image: null, slug: 'memeslut420' } }, + { artists_id: { id: 2392, artist_name: 'Unrue', image: null, slug: 'unrue' } }, + { artists_id: { id: 2393, artist_name: 'Horn (DJBeton)', image: null, slug: 'djbeton' } }, { - artists_id: { - artist_name: 'memeslut420', - image: null, - slug: 'memeslut420' - } - }, - { - artists_id: { - artist_name: 'Unrue', - image: null, - slug: 'unrue' - } - }, - { - artists_id: { - artist_name: 'Horn (DJBeton)', - image: null, - slug: 'djbeton' - } - }, - { - artists_id: { - artist_name: "Destiny's mom", - image: null, - slug: 'destiny-s-mom' - } + artists_id: { id: 2394, artist_name: "Destiny's mom", image: null, slug: 'destiny-s-mom' } }, { artists_id: { + id: 1902, artist_name: 'Clemens Friedrich', - image: '6eeacefb-be7b-4f02-9624-599f77f6929a', slug: 'clemens-friedrich' } } @@ -1151,81 +996,81 @@ export default { { id: 580, name: 'OASIS 2027 Festival', - poster: 'dd2f5f92-1d29-4be4-ae29-8fb7c89b1b45', event_type: 'festival', startdatetime: '2022-10-17T16:00:00', enddatetime: '2022-10-29T19:00:00', + location: ' H2O Turmpark (Alt Salbke 111E, 39122 Magdeburg)', slug: 'oasis-2027-festival', hero_background_color: null, - hubs: [454], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2412, artist_name: 'Aliaksei Babets', - image: '464a798c-9edc-48e2-82f0-3a1e8d9afd2a', slug: 'aliaksei-babets' } }, { artists_id: { + id: 2413, artist_name: 'Aquiles Jarrín', - image: 'c60db0d2-0421-4e5e-92de-75f2daee7391', slug: 'aquiles-jarrin' } }, { artists_id: { + id: 2414, artist_name: 'Bárbara Acevedo Strange', - image: '0f242685-52fa-4950-9dee-4c08fc066cbb', slug: 'barbara-acevedo-strange' } }, { artists_id: { + id: 2415, artist_name: 'Elena Lazutkaite', - image: 'ddc4a948-ce29-482b-be1c-fbf23526fa42', slug: 'elena-lazutkaite' } }, { artists_id: { + id: 2416, artist_name: 'Jonas Liepmann', - image: 'c0351751-b9e0-4eb1-9dd0-3131bbfaff76', slug: 'jonas-liepmann' } }, { artists_id: { + id: 2417, artist_name: 'Nini Khuroshvili', - image: 'bd66a3b9-eca4-4f15-b8d2-a19d7b224a9d', slug: 'nini' } }, { artists_id: { + id: 2418, artist_name: 'Rebecca Schedler', - image: '7311921a-9c57-4be9-919b-cd0b923f5cfc', slug: 'rebecca-schedler' } }, { artists_id: { + id: 2419, artist_name: 'Noémie Despland-Lichtert + Brendan Sullivan Shea', - image: 'aa161d46-ecac-4cda-a795-36ca8d4a67e4', slug: 'noemie-and-brendan' } }, { artists_id: { + id: 2420, artist_name: 'Vanessa Bosch', - image: 'a5da54f3-8f73-408e-a9c3-89d34329965f', slug: 'vanessa-bosch' } }, { artists_id: { + id: 2421, artist_name: 'Zeno Nan', - image: '13742239-bee8-4447-b6bc-3eb6b1bb1b21', slug: 'zeno-nan' } } @@ -1234,109 +1079,109 @@ export default { { id: 534, name: 'Pachamama Love', - poster: '5d297f5f-5256-4695-bbb8-0a7e0330c424', event_type: 'party', startdatetime: '2022-09-30T23:00:00', enddatetime: '2022-10-01T10:00:00', + location: 'Mensch Meier', slug: 'pachamama-love', hero_background_color: null, - hubs: [426], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2005, artist_name: 'Arnau Amatista', - image: '6b2298f5-7f72-472f-8861-2335e60b5ab4', slug: 'arnau-amatista' } }, { artists_id: { + id: 2311, artist_name: 'Audae', - image: '25321f7b-3547-4c8a-8634-cb5c39744498', slug: 'audae' } }, { artists_id: { + id: 1783, artist_name: 'Santi', - image: '3d129a1f-9426-4bc9-8c5a-c51f2a965bce', slug: 'santi' } }, { artists_id: { + id: 1782, artist_name: 'Tuğçe', - image: '93774389-c24e-45d7-8277-1e5eadcd0758', slug: 'tugce' } }, { artists_id: { + id: 2404, artist_name: 'ACUD', - image: 'cd32adf7-3030-4394-8a66-f610f0b3ffcb', slug: 'acud' } }, { artists_id: { + id: 2405, artist_name: 'Bizarro Universe', - image: '533f7a0d-fd73-4cb4-a379-5282314ae3f9', slug: 'bizarro-universe' } }, { artists_id: { + id: 2406, artist_name: 'SAGAN', - image: '20eaf9d1-c0dd-4f96-a0f4-224668244a2b', slug: 'sagan-musica' } }, { artists_id: { + id: 2407, artist_name: 'Shirley Shot', - image: '4c72f40f-1649-4b02-90ac-fa554af6683a', slug: 'shirley-shot' } }, { artists_id: { + id: 2408, artist_name: 'Tummetott', - image: 'aba875dd-046b-48be-b664-b12f2fc844a1', slug: 'tummetott' } }, { artists_id: { + id: 2409, artist_name: 'Faul & Spaeth', - image: '73720e09-b782-49a1-9d0e-c473f5ff49a1', slug: 'faul-spaeth' } }, { artists_id: { + id: 2410, artist_name: 'Luu Sierra', - image: 'd5eeffb0-0b15-4cab-b8ac-021501822a9d', slug: 'luu-sierra' } }, { artists_id: { + id: 2411, artist_name: 'Barbara Bös', - image: '96b1d581-11a9-41c0-9def-11f69a8fb240', slug: 'barbara-boes' } }, { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 1981, artist_name: 'GIZMO', - image: 'a5a32b2e-0fba-4ba6-a4c8-7161228e567d', slug: 'gizmo' } } @@ -1345,18 +1190,18 @@ export default { { id: 563, name: 'Climax', - poster: '0aabaef7-291e-4e58-86b4-16d3dc8f890f', event_type: 'party', startdatetime: '2022-09-16T19:00:00', enddatetime: '2022-09-17T01:00:00', + location: 'Vondelbunker', slug: 'climax', hero_background_color: null, - hubs: [439], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } } @@ -1365,67 +1210,67 @@ export default { { id: 560, name: 'Kulturbrücke Festival 2022', - poster: 'd3c6c441-87e1-4141-a831-43ab2da30b51', event_type: 'festival', startdatetime: '2022-09-09T12:00:00', enddatetime: '2022-09-11T20:00:00', + location: 'Hubbrücke Magdeburg', slug: 'kulturbruecke2022', hero_background_color: null, - hubs: [436], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2314, artist_name: 'Malabarista', - image: '7fb45a81-3c70-4def-b316-5f8b5256e532', slug: 'malabarista' } }, { artists_id: { + id: 2305, artist_name: 'MADmoiselle', - image: 'f587fc08-9329-4225-8d0e-ebf0a68a4b5b', slug: 'madmoiselle' } }, { artists_id: { + id: 1851, artist_name: 'feinheitsbrei', - image: 'dbc83392-ede5-4494-894b-0f23bbabf9a2', slug: 'feinheitsbrei' } }, { artists_id: { + id: 2332, artist_name: 'pulli & chomba', - image: '8782bbd7-86bc-4439-bdab-152756e58824', slug: 'pulli-and-chomba' } }, { artists_id: { + id: 2333, artist_name: 'Augenstein', - image: '5ca3ad83-e51d-40d3-ac49-9c4602da8f3b', slug: 'augenstein' } }, { artists_id: { + id: 2334, artist_name: 'Judith Ahrends', - image: '6841d1f7-c091-446f-a0bb-b511341b67ac', slug: 'judith-ahrends' } }, { artists_id: { + id: 2335, artist_name: 'AmuAmu', - image: '60e4ce23-1d6e-4d96-8bfe-7b58f372b0cb', slug: 'amuamu' } }, { artists_id: { + id: 2440, artist_name: 'HansCendence', - image: '44d02af8-e1ad-4adf-b7c7-fa9feb306a3e', slug: 'hanscendence' } } @@ -1434,49 +1279,27 @@ export default { { id: 562, name: 'Hot Summer Rave', - poster: '9f644850-8c14-4e19-9f16-a92d2e3ad21c', event_type: 'party', startdatetime: '2022-08-27T23:00:00', enddatetime: '2022-08-28T07:00:00', + location: 'Barrio Café', slug: 'hot-summer-rave-brussels', hero_background_color: null, - hubs: [438], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [ { artists_id: { + id: 1846, artist_name: 'Xynia', - image: '45ce8d85-ae56-4d46-8780-ce3498b942bc', slug: 'xynia' } }, + { artists_id: { id: 2329, artist_name: 'Mama Jo', image: null, slug: 'mama-jo' } }, { - artists_id: { - artist_name: 'Mama Jo', - image: null, - slug: 'mama-jo' - } + artists_id: { id: 2342, artist_name: 'Dance Divine', image: null, slug: 'dance-divine' } }, - { - artists_id: { - artist_name: 'Dance Divine', - image: null, - slug: 'dance-divine' - } - }, - { - artists_id: { - artist_name: 'Vera Moro', - image: null, - slug: 'vera-moro' - } - }, - { - artists_id: { - artist_name: 'Stanislawa', - image: null, - slug: 'stanislawa' - } - } + { artists_id: { id: 2343, artist_name: 'Vera Moro', image: null, slug: 'vera-moro' } }, + { artists_id: { id: 2344, artist_name: 'Stanislawa', image: null, slug: 'stanislawa' } } ] }, { @@ -1486,9 +1309,10 @@ export default { event_type: 'party', startdatetime: '2022-08-27T14:00:00', enddatetime: '2022-08-28T04:00:00', + location: 'LaVallée', slug: 'queer-valley-of-love', hero_background_color: null, - hubs: [423], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [] }, { @@ -1498,28 +1322,29 @@ export default { event_type: 'party', startdatetime: '2022-08-13T22:00:00', enddatetime: '2022-08-14T04:00:00', + location: 'Forsthaus Mühlthal', slug: 'deep-in-forest-escon-x-love-foundation', hero_background_color: null, - hubs: [435], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [ { artists_id: { + id: 1981, artist_name: 'GIZMO', - image: 'a5a32b2e-0fba-4ba6-a4c8-7161228e567d', slug: 'gizmo' } }, { artists_id: { + id: 2330, artist_name: 'Lenny Gravity', - image: '19ea293d-6311-4827-92a0-5edd2348b138', slug: 'lenny-gravity' } }, { artists_id: { + id: 2331, artist_name: 'FUCHSEN', - image: '314cfb87-5a77-4c4e-a728-3e1177e17c4a', slug: 'fuchsen' } } @@ -1532,132 +1357,119 @@ export default { event_type: 'party', startdatetime: '2022-07-23T14:00:00', enddatetime: '2022-07-23T23:00:00', + location: 'Keerkringpark, Amsterdam', slug: 'open-air-rave', hero_background_color: null, - hubs: [434], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1973, artist_name: 'Joe Ctylin', - image: '32e186be-dd03-440b-9cf2-ab958c6f978c', slug: 'joe-ctylin' } }, { - artists_id: { - artist_name: 'Camikazy Uzi', - image: null, - slug: 'camikazy-uzi' - } + artists_id: { id: 2327, artist_name: 'Camikazy Uzi', image: null, slug: 'camikazy-uzi' } }, { - artists_id: { - artist_name: 'Fabi & Alex', - image: null, - slug: 'fabi-and-alex' - } + artists_id: { id: 2328, artist_name: 'Fabi & Alex', image: null, slug: 'fabi-and-alex' } }, - { - artists_id: { - artist_name: 'Mama Jo', - image: null, - slug: 'mama-jo' - } - } + { artists_id: { id: 2329, artist_name: 'Mama Jo', image: null, slug: 'mama-jo' } } ] }, { id: 544, name: 'Glacis Open Air 2022', - poster: 'df9ec7be-92f0-41fb-9107-cd29a9a67e7e', event_type: 'festival', startdatetime: '2022-07-23T14:00:00', enddatetime: '2022-07-23T22:00:00', + location: 'Glacis Park Magdeburg', slug: 'glacis-open-air-2022', hero_background_color: null, - hubs: [433], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } }, { artists_id: { + id: 1820, artist_name: 'Raulito Wolf', - image: 'e811b49c-1ad1-490d-9746-ca512f8e8f8d', slug: 'raulito-wolf' } }, { artists_id: { + id: 1821, artist_name: 'Lazer Lucy', - image: 'f6d91111-83ea-41a5-9996-28924b7d5b9a', slug: 'lazer-lucy' } }, { artists_id: { + id: 5, artist_name: 'JaMo', - image: 'f9a4b2ab-254f-4742-9c4d-d965b365f118', slug: 'jamo' } }, { artists_id: { + id: 12, artist_name: 'Ci Ta The - CirkusTanzTheater', - image: '07841c1d-ac66-425e-8495-8ae06e2c9860', slug: 'ci-ta-the-cirkus-tanz-theater' } }, { artists_id: { + id: 2238, artist_name: 'anoush:k', - image: 'f5079503-2902-4124-9c51-860cabe3c47c', slug: 'anoushk' } }, { artists_id: { + id: 2312, artist_name: 'Pea', - image: '7b60a49b-9a5d-46e5-a02d-d097b9fbdf69', slug: 'pea' } }, { artists_id: { + id: 2311, artist_name: 'Audae', - image: '25321f7b-3547-4c8a-8634-cb5c39744498', slug: 'audae' } }, { artists_id: { + id: 2313, artist_name: 'Just Etienne', - image: 'b8964634-310c-4d41-939c-3054f1ed85b5', slug: 'justetienne' } }, { artists_id: { + id: 2314, artist_name: 'Malabarista', - image: '7fb45a81-3c70-4def-b316-5f8b5256e532', slug: 'malabarista' } }, { artists_id: { + id: 2315, artist_name: 'Living Room Gallery Magdeburg', - image: '852206d4-47cb-4713-bc97-1824877a9dfc', slug: 'livingroomgallery' } }, { artists_id: { + id: 2316, artist_name: 'Jayānī', - image: '23074077-6ed2-4625-87a1-8703d0950ab9', slug: 'jayani' } } @@ -1666,32 +1478,32 @@ export default { { id: 533, name: 'Liebe Unter Deck', - poster: '56581d0e-4e3c-4866-b552-303803d8a8e0', event_type: 'party', startdatetime: '2022-06-22T21:00:00', enddatetime: '2022-06-23T03:00:00', + location: 'Unter Deck', slug: 'muc-liebe-unter-deck', hero_background_color: null, - hubs: [425], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [ { artists_id: { + id: 2308, artist_name: 'F.R.A.N.', - image: 'ce46d5e2-5ffc-4965-8462-35b49fcdde99', slug: 'fran' } }, { artists_id: { + id: 2309, artist_name: 'Yves Ruffet', - image: '239b0bf2-35e8-40f1-b9f0-00f98eae4439', slug: 'yves-ruffet' } }, { artists_id: { + id: 2310, artist_name: 'Kan', - image: '8b74ce08-bd9b-4b69-a8c4-bf87cb5a3938', slug: 'kan' } } @@ -1704,9 +1516,10 @@ export default { event_type: 'party', startdatetime: '2022-06-11T23:00:00', enddatetime: '2022-06-12T16:00:00', + location: 'Sektor Evolution', slug: 'pressure-vibes-x-love-foundation', hero_background_color: null, - hubs: [422], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [] }, { @@ -1716,28 +1529,29 @@ export default { event_type: 'party', startdatetime: '2022-06-04T23:00:00', enddatetime: '2022-06-05T05:00:00', + location: 'Club Koralle', slug: 'rave-cave', hero_background_color: null, - hubs: [421], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2305, artist_name: 'MADmoiselle', - image: 'f587fc08-9329-4225-8d0e-ebf0a68a4b5b', slug: 'madmoiselle' } }, { artists_id: { + id: 2306, artist_name: 'LadyBug', - image: '0ec6b96b-1621-457b-8c45-8928328beba0', slug: 'ladybug' } }, { artists_id: { + id: 2307, artist_name: 'kerria', - image: '27e12940-8abe-42bd-8571-098d4ec3c0cb', slug: 'kerria' } } @@ -1746,13 +1560,13 @@ export default { { id: 17, name: 'Global Community Gathering Brussels', - poster: '8782270c-e0ab-46d0-b5d8-4f8b17483766', event_type: 'GCG', startdatetime: '2022-05-27T12:00:00', enddatetime: '2022-05-29T12:00:00', + location: 'Brussels', slug: 'gcg-brussels-2022', hero_background_color: null, - hubs: [13], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [] }, { @@ -1762,19 +1576,21 @@ export default { event_type: 'workshop', startdatetime: '2022-05-21T12:00:00', enddatetime: '2022-05-21T23:00:00', + location: null, slug: 'lab-climate-artlake-berlin-sessions', hero_background_color: null, - hubs: [11], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2050, artist_name: 'Alma Linda', - image: '97d19e65-d7bf-486f-91ea-6a464ae3d10d', slug: 'alma-linda' } }, { artists_id: { + id: 19, artist_name: 'Heimlich Knüller', image: null, slug: 'heimlich-knueller' @@ -1785,81 +1601,81 @@ export default { { id: 16, name: 'Lot & Liebe', - poster: '4cc3716b-f83b-446c-ae28-b7b99715a84c', event_type: 'party', startdatetime: '2022-05-07T23:00:00', enddatetime: '2022-05-08T10:00:00', + location: 'Mensch Meier', slug: 'lot-and-liebe', hero_background_color: null, - hubs: [12], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 13, artist_name: 'Take Sekt', - image: 'dc2b259d-54da-46d4-8fe8-da4829614f13', slug: 'take-sekt' } }, { artists_id: { + id: 2331, artist_name: 'FUCHSEN', - image: '314cfb87-5a77-4c4e-a728-3e1177e17c4a', slug: 'fuchsen' } }, { artists_id: { + id: 2441, artist_name: 'SILSAN', - image: '5ff4269b-6684-4784-bed0-a06106b5f226', slug: 'silsan' } }, { artists_id: { + id: 2430, artist_name: 'ELIZEN THE EMPEROR', - image: '5dd416d9-9cff-4136-b9a6-a42acfcb13e6', slug: 'elizentheemperor' } }, { artists_id: { + id: 2050, artist_name: 'Alma Linda', - image: '97d19e65-d7bf-486f-91ea-6a464ae3d10d', slug: 'alma-linda' } }, { artists_id: { + id: 1869, artist_name: 'NOËLIA', - image: '9fc27598-04b9-484a-bab5-977f838a3e05', slug: 'noelia' } }, { artists_id: { + id: 1834, artist_name: 'To Be Honest', - image: '33f51123-f8f3-4e24-9ecb-823611c8b13c', slug: 'to-be-honest' } }, { artists_id: { + id: 1820, artist_name: 'Raulito Wolf', - image: 'e811b49c-1ad1-490d-9746-ca512f8e8f8d', slug: 'raulito-wolf' } }, { artists_id: { + id: 2407, artist_name: 'Shirley Shot', - image: '4c72f40f-1649-4b02-90ac-fa554af6683a', slug: 'shirley-shot' } }, { artists_id: { + id: 1821, artist_name: 'Lazer Lucy', - image: 'f6d91111-83ea-41a5-9996-28924b7d5b9a', slug: 'lazer-lucy' } } @@ -1868,28 +1684,22 @@ export default { { id: 9, name: 'Love On Decks', - poster: 'a86d5aa3-46b7-4c4a-b102-c9c52236481a', event_type: 'party', startdatetime: '2022-04-09T22:00:00', enddatetime: '2022-04-10T07:00:00', + location: 'Kulturprojekt München', slug: 'love-on-decks', hero_background_color: null, - hubs: [6], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [ { artists_id: { + id: 1981, artist_name: 'GIZMO', - image: 'a5a32b2e-0fba-4ba6-a4c8-7161228e567d', slug: 'gizmo' } }, - { - artists_id: { - artist_name: 'ÄXOLOTL', - image: null, - slug: 'aexolotl' - } - } + { artists_id: { id: 2457, artist_name: 'ÄXOLOTL', image: null, slug: 'aexolotl' } } ] }, { @@ -1899,9 +1709,10 @@ export default { event_type: 'art exhibition', startdatetime: '2022-04-08T18:00:00', enddatetime: '2022-04-09T01:00:00', + location: 'Treehouse/ Landhuis', slug: 'the-art-of-expressing-love', hero_background_color: null, - hubs: [10], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { @@ -1911,54 +1722,49 @@ export default { event_type: 'party', startdatetime: '2021-12-17T23:00:51', enddatetime: '2021-12-18T06:00:17', + location: 'Musikbunker Aachen', slug: 'dive-into-love', hero_background_color: null, - hubs: [5], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 12, name: 'Wasserturm of Love', - poster: '2eec79c6-3d4f-4b39-a7b7-712598c4034d', event_type: 'livestream', startdatetime: '2021-12-04T21:55:24', enddatetime: '2021-12-04T21:55:36', + location: 'Wasserturm Salbke', slug: 'wasserturm-of-love', hero_background_color: null, - hubs: [8], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2238, artist_name: 'anoush:k', - image: 'f5079503-2902-4124-9c51-860cabe3c47c', slug: 'anoushk' } }, { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } }, + { artists_id: { id: 2, artist_name: 'Ma Mood', image: null, slug: 'ma-mood' } }, { artists_id: { - artist_name: 'Ma Mood', - image: null, - slug: 'ma-mood' - } - }, - { - artists_id: { + id: 5, artist_name: 'JaMo', - image: 'f9a4b2ab-254f-4742-9c4d-d965b365f118', slug: 'jamo' } }, { artists_id: { + id: 7, artist_name: 'Nouri', - image: 'f23d95b5-60ca-44e5-84ee-3ed3610f0315', slug: 'nouri' } } @@ -1967,18 +1773,18 @@ export default { { id: 5, name: 'Meierabend: Love', - poster: '3d9cd3ee-8ae6-40f4-8495-c802248dd033', event_type: 'other', startdatetime: '2021-11-20T19:30:27', enddatetime: '2021-11-21T01:00:43', + location: 'Mensch Meier', slug: 'meierabend-love-berlin', hero_background_color: null, - hubs: [3], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1816, artist_name: 'Kahl & Kæmena', - image: 'deea67cd-77f6-4da1-81ca-fbc59729ea77', slug: 'kahl-kaemena' } } @@ -1991,21 +1797,22 @@ export default { event_type: 'party', startdatetime: '2021-11-06T12:00:11', enddatetime: '2021-11-06T22:00:28', + location: 'Zinzinerie, Brussels', slug: 'lamour-zinzin', hero_background_color: null, - hubs: [2], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [] }, { id: 1, name: 'Global Community Gathering 2021', - poster: 'a399b84d-59b6-4f69-8e11-be2c659f7391', event_type: 'GCG', startdatetime: '2021-10-29T18:00:57', enddatetime: '2021-10-31T18:00:31', + location: 'Magdeburg', slug: 'gcg-magdeburg-2021', hero_background_color: null, - hubs: [1], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [] }, { @@ -2015,6 +1822,7 @@ export default { event_type: 'other', startdatetime: '2021-10-09T12:00:00', enddatetime: '2021-10-09T18:30:00', + location: 'AZ Conni Dresden', slug: 'fleamarket-disco-bingo', hero_background_color: null, hubs: [], @@ -2023,32 +1831,32 @@ export default { { id: 13, name: 'Tag der Nachhaltigkeit 2021', - poster: 'ef77ee0c-14c3-460f-a744-1f26173547f9', event_type: 'party', startdatetime: '2021-10-08T00:00:34', enddatetime: '2021-09-08T23:30:47', + location: 'Hochschule Magdeburg-Stendal', slug: 'tag-der-nachhaltigkeit', hero_background_color: null, - hubs: [9], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } }, { artists_id: { + id: 2238, artist_name: 'anoush:k', - image: 'f5079503-2902-4124-9c51-860cabe3c47c', slug: 'anoushk' } }, { artists_id: { + id: 5, artist_name: 'JaMo', - image: 'f9a4b2ab-254f-4742-9c4d-d965b365f118', slug: 'jamo' } } @@ -2061,117 +1869,118 @@ export default { event_type: 'party', startdatetime: '2021-09-26T18:00:00', enddatetime: '2021-09-27T02:00:00', + location: 'Zuckerzauber', slug: 'love-foundation-zuckerzauber', hero_background_color: null, - hubs: [420], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [] }, { id: 527, name: 'Kulturbrücke 2021 - Kultur verbindet', - poster: '19732a7e-0486-4f2b-aabf-691ab786237f', event_type: 'festival', startdatetime: '2021-09-10T00:00:00', enddatetime: '2021-09-12T20:00:00', + location: 'Hubbrücke Magdeburg', slug: 'kulturbruecke-2021-kultur-verbindet', hero_background_color: null, - hubs: [419], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 3, artist_name: 'Nawaf Guzman', - image: 'ca7087c2-fe84-439d-86f6-5fb5af55e115', slug: 'nawaf-guzman' } }, { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } }, { artists_id: { + id: 5, artist_name: 'JaMo', - image: 'f9a4b2ab-254f-4742-9c4d-d965b365f118', slug: 'jamo' } }, { artists_id: { + id: 2238, artist_name: 'anoush:k', - image: 'f5079503-2902-4124-9c51-860cabe3c47c', slug: 'anoushk' } }, { artists_id: { + id: 8, artist_name: 'Max Nehrig', - image: 'a111aaa5-ce94-418a-9892-52b459f39877', slug: 'max-nehrig' } }, { artists_id: { + id: 9, artist_name: 'Alena Figuera', - image: '5e637b61-a6c2-4fb9-b599-0d6af40eef96', slug: 'alena-figuera' } }, { artists_id: { + id: 10, artist_name: 'Hausfreund Semanski', - image: '95a52728-8ed0-4997-98e0-68f0c78bc65f', slug: 'hausfreund-semanski' } }, { artists_id: { + id: 11, artist_name: 'Fllood', - image: '8e582354-f3fb-4440-a00b-549ed391d27e', slug: 'fllood' } }, { artists_id: { + id: 12, artist_name: 'Ci Ta The - CirkusTanzTheater', - image: '07841c1d-ac66-425e-8495-8ae06e2c9860', slug: 'ci-ta-the-cirkus-tanz-theater' } }, { artists_id: { + id: 13, artist_name: 'Take Sekt', - image: 'dc2b259d-54da-46d4-8fe8-da4829614f13', slug: 'take-sekt' } }, { artists_id: { + id: 2302, artist_name: 'Turak', - image: 'c0dfec97-a068-4283-bbc6-d574fcb31812', slug: 'turak' } }, { artists_id: { + id: 16, artist_name: 'Rolandson', - image: 'acdf71b5-a4a2-4e13-ad39-23c164847064', slug: 'rolandson' } }, { artists_id: { + id: 17, artist_name: 'Adi Dassler', - image: '57846565-9b0c-4b6e-9bd8-f06b89b7e547', slug: 'adi-dassler' } }, { artists_id: { + id: 18, artist_name: 'Marcelito', - image: 'df776a4a-10ed-48bf-b566-4cb8f78d4c1a', slug: 'marcelito' } } @@ -2180,60 +1989,60 @@ export default { { id: 506, name: 'Glacis Open Air 2021', - poster: '8f4ba063-66e7-4f9a-acac-835a296ead4b', event_type: 'party', startdatetime: '2021-08-28T10:00:00', enddatetime: '2021-08-28T22:00:00', + location: 'Glacis Park Magdeburg', slug: 'glacis-open-air-2021', hero_background_color: '#607D8B', - hubs: [412], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 3, artist_name: 'Nawaf Guzman', - image: 'ca7087c2-fe84-439d-86f6-5fb5af55e115', slug: 'nawaf-guzman' } }, { artists_id: { + id: 2238, artist_name: 'anoush:k', - image: 'f5079503-2902-4124-9c51-860cabe3c47c', slug: 'anoushk' } }, { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } }, { artists_id: { + id: 5, artist_name: 'JaMo', - image: 'f9a4b2ab-254f-4742-9c4d-d965b365f118', slug: 'jamo' } }, { artists_id: { + id: 6, artist_name: 'Lino Problemo', - image: 'ac0bf076-4c1b-4f28-9f31-60af4ddbd233', slug: 'lino-problemo' } }, { artists_id: { + id: 12, artist_name: 'Ci Ta The - CirkusTanzTheater', - image: '07841c1d-ac66-425e-8495-8ae06e2c9860', slug: 'ci-ta-the-cirkus-tanz-theater' } }, { artists_id: { + id: 15, artist_name: 'Bryta', - image: 'ec624c44-b55c-423a-83df-d5eb501a2bae', slug: 'bryta' } } @@ -2246,88 +2055,83 @@ export default { event_type: 'party', startdatetime: '2021-07-29T17:00:00', enddatetime: '2021-07-29T23:00:00', + location: ':// about blank', slug: 'about-love', hero_background_color: null, - hubs: [418], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [] }, { id: 513, name: 'Volksbad of Love', - poster: 'db02b54d-e11d-448d-921d-c93f9703987c', event_type: 'other', startdatetime: '2021-07-22T15:00:00', enddatetime: '2021-07-25T00:00:00', + location: 'Volksbad Buckau', slug: 'volksbad-of-love', hero_background_color: null, - hubs: [413], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2050, artist_name: 'Alma Linda', - image: '97d19e65-d7bf-486f-91ea-6a464ae3d10d', slug: 'alma-linda' } }, { artists_id: { + id: 14, artist_name: 'Carla Schubert', - image: '5cb5fc95-0cb8-420d-898d-3a03a781cf32', slug: 'carla-schubert' } }, { artists_id: { + id: 1678, artist_name: 'Martha van Straaten', - image: '963f6f40-5524-4fec-b8f6-20ae361523ef', slug: 'martha-van-straaten' } }, { artists_id: { + id: 1820, artist_name: 'Raulito Wolf', - image: 'e811b49c-1ad1-490d-9746-ca512f8e8f8d', slug: 'raulito-wolf' } }, - { - artists_id: { - artist_name: 'Eigenklang', - image: null, - slug: 'eigenklang' - } - } + { artists_id: { id: 2303, artist_name: 'Eigenklang', image: null, slug: 'eigenklang' } } ] }, { id: 525, name: 'Flohmarkt', - poster: 'a0b09d5a-8371-4768-929a-af3b00a952e1', event_type: 'other', startdatetime: '2021-07-17T11:00:00', enddatetime: '2021-07-17T19:00:00', + location: 'AZ Conni', slug: 'flohmarkt', hero_background_color: '#FFEB3B', - hubs: [417], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2119, artist_name: 'Sinamin', - image: '20efdef1-d116-412c-95b7-bc0f66f727ca', slug: 'sinamin' } }, { artists_id: { + id: 1993, artist_name: 'Kafka', - image: 'a7130f3f-c9e2-48ab-8cc6-aaeef66c60fd', slug: 'kafka' } }, { artists_id: { + id: 2048, artist_name: 'Schlicke & Schlacke', - image: '1b69b841-2826-4f51-9406-a4d54a06d9f7', slug: 'schlicke-and-schlacke' } } @@ -2340,6 +2144,7 @@ export default { event_type: 'GCG', startdatetime: '2021-06-19T14:00:00', enddatetime: '2021-06-19T17:00:00', + location: 'Maastricht', slug: 'spread-love-not-trash', hero_background_color: null, hubs: [], @@ -2352,26 +2157,27 @@ export default { event_type: 'GCG', startdatetime: '2021-06-19T14:00:00', enddatetime: '2021-06-19T17:00:00', + location: 'Maastricht', slug: 'spread-love-collect-trash', hero_background_color: null, - hubs: [416], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 515, name: 'Workshop Freie Open Airs', - poster: 'cddefc76-d551-46ba-bb44-6a5b5e598cf8', event_type: 'workshop', startdatetime: '2021-06-09T17:00:00', enddatetime: '2021-06-09T20:00:00', + location: 'Online', slug: 'freieopenairs', hero_background_color: null, - hubs: [415], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 18, artist_name: 'Marcelito', - image: 'df776a4a-10ed-48bf-b566-4cb8f78d4c1a', slug: 'marcelito' } } @@ -2380,18 +2186,18 @@ export default { { id: 514, name: 'Kultur auf höchstem Niveau', - poster: '890b7e22-9df9-4dec-9ec0-348253754e51', event_type: 'concert', startdatetime: '2021-05-28T17:00:00', enddatetime: '2021-01-28T06:30:00', + location: 'Grüne Zitadelle Magdeburg', slug: 'kultur-auf-hochstem-niveau', hero_background_color: null, - hubs: [414], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2304, artist_name: 'Monoglot', - image: '6ffcfced-349d-403b-86c4-dd871851232b', slug: 'monoglot' } } @@ -2404,9 +2210,10 @@ export default { event_type: 'livestream', startdatetime: '2021-05-02T17:00:00', enddatetime: '2021-05-02T21:00:00', + location: 'online (radio, fb, instagram)', slug: 'from-amsterdam-to-maastricht-with-lovee', hero_background_color: null, - hubs: [410, 411], + hubs: [{ hubs_id: { city: 'Amsterdam' } }, { hubs_id: { city: 'Maastricht' } }], artists: [] }, { @@ -2416,19 +2223,21 @@ export default { event_type: 'livestream', startdatetime: '2021-04-20T01:01:01', enddatetime: '2021-04-20T23:59:01', + location: 'ONLINE', slug: 's-p-a-c-e-l-o-v-e', hero_background_color: null, - hubs: [409], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1713, artist_name: 'Marius Drescher', - image: '1d952cfd-87c2-4f95-8cc6-dc204efa4d83', slug: 'marius-drescher' } }, { artists_id: { + id: 2301, artist_name: 'rest currently not confirmed', image: null, slug: 'rest-currently-not-confirmed' @@ -2436,8 +2245,8 @@ export default { }, { artists_id: { + id: 2302, artist_name: 'Turak', - image: 'c0dfec97-a068-4283-bbc6-d574fcb31812', slug: 'turak' } } @@ -2450,6 +2259,7 @@ export default { event_type: 'other', startdatetime: '2020-12-13T11:00:00', enddatetime: '2020-12-13T17:00:00', + location: 'Neukölln Fleamarket', slug: 'love-foundation-at-nk-fleamarket', hero_background_color: null, hubs: [], @@ -2458,25 +2268,25 @@ export default { { id: 494, name: 'Flohmarkt im AZ Conni', - poster: 'acce8200-e2d6-4a59-b038-59f395fd81c4', event_type: 'other', startdatetime: '2020-10-03T14:00:00', enddatetime: '2020-10-03T20:00:00', + location: 'AZ Conni', slug: 'flohmarkt-im-az-conni', hero_background_color: null, - hubs: [400], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2210, artist_name: 'Fantus', - image: '3b30e63b-6676-495c-967f-8a583ef8a217', slug: 'fantus' } }, { artists_id: { + id: 2211, artist_name: 'Kokōlora', - image: '81a23f17-6bcb-46ed-9ada-4bb71c12a4a7', slug: 'koklora' } } @@ -2485,39 +2295,39 @@ export default { { id: 495, name: 'Love Foundation at Zuckerzauber', - poster: '3320d293-eee7-431c-9ab5-039f1eba8d0e', event_type: 'party', startdatetime: '2020-09-13T18:00:00', enddatetime: '2020-09-13T00:00:00', + location: 'Zuckerzauber', slug: 'love-foundation-at-zuckerzauber', hero_background_color: null, - hubs: [404], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1869, artist_name: 'NOËLIA', - image: '9fc27598-04b9-484a-bab5-977f838a3e05', slug: 'noelia' } }, { artists_id: { + id: 1834, artist_name: 'To Be Honest', - image: '33f51123-f8f3-4e24-9ecb-823611c8b13c', slug: 'to-be-honest' } }, { artists_id: { + id: 2005, artist_name: 'Arnau Amatista', - image: '6b2298f5-7f72-472f-8861-2335e60b5ab4', slug: 'arnau-amatista' } }, { artists_id: { + id: 1995, artist_name: '2 Girls 1 Club', - image: '6d960525-a661-40a7-aeca-658007a9ea5d', slug: '2-girls-1-club' } } @@ -2526,18 +2336,18 @@ export default { { id: 11, name: 'Kulturbrücke 2020 - Kultur verbindet', - poster: '0ddcfb2f-73c5-4ee4-b0fb-bf46d83d829c', event_type: 'workshop', startdatetime: '2020-09-11T12:00:35', enddatetime: '2020-09-13T20:00:57', + location: 'Hubbrücke', slug: 'kulturbruecke-2020-kultur-verbindet', hero_background_color: null, - hubs: [7], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 4, artist_name: 'Jule', - image: 'edc7a2a8-5140-4b93-ac1f-e1cb08a9b40a', slug: 'jule' } } @@ -2546,25 +2356,25 @@ export default { { id: 497, name: 'Love Foundation at THF Radio', - poster: 'a4fcaf79-4bcd-494f-9cff-1e015ae9fcf5', event_type: 'livestream', startdatetime: '2020-09-06T15:00:00', enddatetime: '2020-09-06T18:00:00', + location: 'THF Radio', slug: 'love-foundation-at-thf-radio', hero_background_color: null, - hubs: [403], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2300, artist_name: 'Lemonella', - image: '9e6c164f-881d-4fdc-9d58-babdfc17c57c', slug: 'lemonella' } }, { artists_id: { + id: 1877, artist_name: 'Rubi ツ', - image: '91ed6ef4-5588-447c-8791-49b08f278a5f', slug: 'rubi' } } @@ -2573,39 +2383,39 @@ export default { { id: 443, name: 'Love and Funk', - poster: '3c9e6f35-0a6e-4d4a-bd80-9acda8a555c1', event_type: 'livestream', startdatetime: '2020-07-12T12:00:00', enddatetime: '2020-07-12T22:00:00', + location: 'THF Radio', slug: 'love-and-funk', hero_background_color: null, - hubs: [346], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2239, artist_name: 'Mogli', - image: '639bf314-9d4d-4bb6-9eb9-2b5321a1b7bd', slug: 'mogli' } }, { artists_id: { + id: 1818, artist_name: 'Kotoe', - image: 'd2b294a0-f07d-4f60-9527-c8352e0ee3a8', slug: 'kotoe' } }, { artists_id: { + id: 2240, artist_name: 'Presque', - image: 'd81ddea8-27af-48af-8318-192abf5350b5', slug: 'presque' } }, { artists_id: { + id: 2088, artist_name: 'flooke', - image: '98056647-0066-474b-ab5e-d30a6e8d50fd', slug: 'flooke' } } @@ -2614,46 +2424,35 @@ export default { { id: 445, name: 'Nachhaltige Clubkultur - Was ist das?', - poster: 'd6249967-bb95-4c76-ab51-e74d7a1e46a1', event_type: 'other', startdatetime: '2020-07-11T17:00:00', enddatetime: '2020-07-11T19:00:00', + location: 'in:takt', slug: 'nachhaltige-clubkultur-was-ist-das', hero_background_color: null, - hubs: [348], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 2241, artist_name: 'Madeleine Linke', - image: '285e929a-e3c2-4e54-81d7-a33c1b53e907', slug: 'madeleine-linke' } }, + { artists_id: { id: 2242, artist_name: 'Ilja Minaev', image: null, slug: 'ilja-minaev' } }, { artists_id: { - artist_name: 'Ilja Minaev', - image: null, - slug: 'ilja-minaev' - } - }, - { - artists_id: { + id: 2243, artist_name: 'Andrea Jozwiak', image: null, slug: 'andrea-jozwiak' } }, + { artists_id: { id: 2244, artist_name: 'Lisa Reul', image: null, slug: 'lisa-reul' } }, { artists_id: { - artist_name: 'Lisa Reul', - image: null, - slug: 'lisa-reul' - } - }, - { - artists_id: { + id: 1992, artist_name: 't.zer', - image: 'b49bd86d-913b-43b0-8ec5-5166de90d436', slug: 'tzer' } } @@ -2662,95 +2461,95 @@ export default { { id: 422, name: 'Freiraumlabor', - poster: '63c76277-e52b-4092-89ba-1e3050756416', event_type: 'festival', startdatetime: '2020-07-04T12:00:00', enddatetime: '2020-07-05T22:00:00', + location: 'Breiter Weg Magdeburg at Freiraumlabor', slug: 'freiraumlabor', hero_background_color: null, - hubs: [336], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 8, artist_name: 'Max Nehrig', - image: 'a111aaa5-ce94-418a-9892-52b459f39877', slug: 'max-nehrig' } }, { artists_id: { + id: 9, artist_name: 'Alena Figuera', - image: '5e637b61-a6c2-4fb9-b599-0d6af40eef96', slug: 'alena-figuera' } }, { artists_id: { + id: 1834, artist_name: 'To Be Honest', - image: '33f51123-f8f3-4e24-9ecb-823611c8b13c', slug: 'to-be-honest' } }, { artists_id: { + id: 2237, artist_name: 'Maloua Loup', - image: 'c532863c-6803-456b-998c-55eed561e4e3', slug: 'maloua-loup' } }, { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 1930, artist_name: 'Judith van Waterkant', - image: '3cccdc82-746b-45b9-83f2-7fed69ec4bab', slug: 'judith-van-waterkant' } }, { artists_id: { + id: 1875, artist_name: 'Rhizomatique', - image: 'cdf6c6ef-50b5-40be-9526-4578c6c0fece', slug: 'rhizomatique' } }, { artists_id: { + id: 2208, artist_name: 'liali', - image: 'f1f51f0b-f86c-4a38-84b1-9e43d34c782a', slug: 'liali' } }, { artists_id: { + id: 2238, artist_name: 'anoush:k', - image: 'f5079503-2902-4124-9c51-860cabe3c47c', slug: 'anoushk' } }, { artists_id: { + id: 2002, artist_name: 'Holly North', - image: '6014ed55-b11c-4ac5-8eb6-34e4f7a87760', slug: 'holly-north' } }, { artists_id: { + id: 1762, artist_name: 'Marcel Puntheller', - image: '75264d00-d6b2-4d6d-986a-39e7ab062d6c', slug: 'marcel-puntheller' } }, { artists_id: { + id: 1818, artist_name: 'Kotoe', - image: 'd2b294a0-f07d-4f60-9527-c8352e0ee3a8', slug: 'kotoe' } } @@ -2759,39 +2558,39 @@ export default { { id: 469, name: 'Manège-à-trois', - poster: 'c06750e7-9c48-401f-b171-989bca17e7df', event_type: 'livestream', startdatetime: '2020-06-25T19:00:00', enddatetime: '2020-06-26T01:00:00', + location: null, slug: 'manege-a-trois', hero_background_color: null, - hubs: [371], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2114, artist_name: 'Simon Tober', - image: '5c0ac9ed-b0fa-4a21-b133-0f5f958d137b', slug: 'simon-tober' } }, { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 2115, artist_name: 'Vineeth', - image: '13c4714e-541c-4448-80be-b95eb792f1d2', slug: 'vineeth' } }, { artists_id: { + id: 2208, artist_name: 'liali', - image: 'f1f51f0b-f86c-4a38-84b1-9e43d34c782a', slug: 'liali' } } @@ -2800,18 +2599,18 @@ export default { { id: 406, name: 'Love And Permaculture', - poster: '017f3722-255f-4c54-9f72-3b68efd880c2', event_type: 'conference', startdatetime: '2020-06-07T15:00:00', enddatetime: '2020-06-07T20:00:00', + location: 'THF Radio', slug: 'love-and-permaculture', hero_background_color: null, - hubs: [401], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1755, artist_name: 'Color your mind', - image: '81338bb5-a1a0-4a43-a521-dc5c2dd7497d', slug: 'color-your-mind' } } @@ -2820,46 +2619,40 @@ export default { { id: 411, name: 'Love Foundation Stream', - poster: '423d41b1-023a-4f28-8602-38b24ee29c9a', event_type: 'party', startdatetime: '2020-05-06T19:00:00', enddatetime: '2020-05-06T23:59:00', + location: 'Sektor Evolution', slug: 'love-foundation-stream', hero_background_color: null, - hubs: [325], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1966, artist_name: 'gravitas', - image: 'fef88b83-03a1-4e4f-bd66-d2ec5c6fb258', slug: 'gravitas' } }, + { artists_id: { id: 1967, artist_name: 'Schlicke', image: null, slug: 'schlicke' } }, { artists_id: { - artist_name: 'Schlicke', - image: null, - slug: 'schlicke' - } - }, - { - artists_id: { + id: 1968, artist_name: 'Til Seifert', - image: '0358f20b-d9b8-4ffb-ba29-4d4c84a6858d', slug: 'til-seifert' } }, { artists_id: { + id: 1969, artist_name: 'PAU PAU', - image: '4be1901f-d807-4ce0-9842-c9d7ce0e94e9', slug: 'pau-pau' } }, { artists_id: { + id: 1970, artist_name: 'RÆZA', - image: '16d4c12a-276f-455c-b7a3-1f9583c4539f', slug: 'raeza' } } @@ -2868,32 +2661,32 @@ export default { { id: 391, name: 'Love and Music', - poster: 'b738137e-af6b-4474-9451-3d83ec177b2c', event_type: 'livestream', startdatetime: '2020-05-03T15:00:00', enddatetime: '2020-05-03T20:00:00', + location: 'THF Radio', slug: 'love-and-music', hero_background_color: null, - hubs: [320], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 1821, artist_name: 'Lazer Lucy', - image: 'f6d91111-83ea-41a5-9996-28924b7d5b9a', slug: 'lazer-lucy' } }, { artists_id: { + id: 1971, artist_name: 'Alice Phoebe Lou', - image: 'c0f48bda-e6c2-4ece-af6f-2dffb535230a', slug: 'alice-phoebe-lou' } } @@ -2902,32 +2695,32 @@ export default { { id: 413, name: 'Lovestream #1: Deep Sea Dancing', - poster: '3b820385-4e13-4002-a8e4-085d8bfbb232', event_type: 'livestream', startdatetime: '2020-05-01T17:00:00', enddatetime: '2020-05-01T22:00:00', + location: 'Amsterdam', slug: 'lovestream-1-deep-sea-dancing', hero_background_color: null, - hubs: [327, 328], + hubs: [{ hubs_id: { city: 'Amsterdam' } }, { hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1972, artist_name: 'Sjef Rolet', - image: '38e5d605-9d0e-4c40-9695-25e702c92b8c', slug: 'sjef-rolet' } }, { artists_id: { + id: 1978, artist_name: 'Mina Taurus', - image: '459cfa15-a36e-4bd1-8b0e-5d1bdb9964a3', slug: 'mina-taurus' } }, { artists_id: { + id: 1979, artist_name: 'fcmdl', - image: '141640b6-2803-46db-8266-d3ba6272b336', slug: 'fcmdl' } } @@ -2936,46 +2729,46 @@ export default { { id: 414, name: 'Love Drop', - poster: '352cf3da-c03c-4fc8-9e10-2d314b71cb15', event_type: 'party', startdatetime: '2020-03-13T18:00:00', enddatetime: '2020-03-14T02:00:00', + location: '216 Albert Rd, Cape Town, 7925, South Africa', slug: 'love-drop', hero_background_color: null, - hubs: [326], + hubs: [{ hubs_id: { city: 'Capetown' } }], artists: [ { artists_id: { + id: 1973, artist_name: 'Joe Ctylin', - image: '32e186be-dd03-440b-9cf2-ab958c6f978c', slug: 'joe-ctylin' } }, { artists_id: { + id: 1974, artist_name: 'Novelty', - image: '96d1bb79-f473-464f-a9a3-e10490d96563', slug: 'novelty' } }, { artists_id: { + id: 1975, artist_name: 'ISO 1900', - image: '4df57c80-c61e-41c3-b49d-4061b5395cc2', slug: 'iso-1900' } }, { artists_id: { + id: 1976, artist_name: 'Blaq Huf', - image: '76199ae8-5e37-4cad-bbaf-c5031179df21', slug: 'blaq-huf' } }, { artists_id: { + id: 1977, artist_name: 'Zezão', - image: '13e4131a-32ec-42fc-a99c-c1b7e9094f97', slug: 'zezao' } } @@ -2984,32 +2777,32 @@ export default { { id: 415, name: 'How I Met Your Lover', - poster: '4d8212d6-2b6e-4923-8a5e-6d826230f333', event_type: 'party', startdatetime: '2020-02-28T22:30:00', enddatetime: '2020-02-29T05:00:00', + location: 'Container Collective', slug: 'how-i-met-your-lover', hero_background_color: null, - hubs: [329], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [ { artists_id: { + id: 1980, artist_name: '959er', - image: 'f757e08e-6a65-4d9b-9f36-2e4dae885d3f', slug: '959er' } }, { artists_id: { + id: 1981, artist_name: 'GIZMO', - image: 'a5a32b2e-0fba-4ba6-a4c8-7161228e567d', slug: 'gizmo' } }, { artists_id: { + id: 1982, artist_name: 'Keff Krs', - image: '19b891bb-e5fc-4cef-8c0f-79936e6ad2d0', slug: 'keff-krs' } } @@ -3018,60 +2811,54 @@ export default { { id: 416, name: 'Foundation Celebration #2', - poster: '33c3fd92-87c3-4606-baf4-b12af7e7e054', event_type: 'party', startdatetime: '2020-02-27T22:30:00', enddatetime: '2020-02-28T06:30:00', + location: 'SUB Tel Aviv', slug: 'foundation-celebration-2', hero_background_color: null, - hubs: [330], + hubs: [{ hubs_id: { city: 'Tel Aviv' } }], artists: [ { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } }, { artists_id: { + id: 1983, artist_name: 'Ella Gotman', - image: '3ecc7429-e4ab-45f5-8e4b-700fc1b09c23', slug: 'ella-gotman' } }, { artists_id: { + id: 1984, artist_name: 'FunKamel', - image: '69624c7a-d185-4575-8e11-dfb0b1fa3d25', slug: 'funkamel' } }, { artists_id: { + id: 1985, artist_name: 'JiaLing', - image: '2e446f29-fd2c-48a1-84ba-77fc5b421e5f', slug: 'jialing' } }, + { artists_id: { id: 1986, artist_name: 'Soda Dream', image: null, slug: 'soda-dream' } }, { artists_id: { - artist_name: 'Soda Dream', - image: null, - slug: 'soda-dream' - } - }, - { - artists_id: { + id: 1987, artist_name: 'Boreal CaMi', - image: '6acf38e6-a7fe-4739-aaa2-0300da419b12', slug: 'boreal-cami' } } @@ -3080,74 +2867,74 @@ export default { { id: 417, name: 'Universal Love', - poster: '6fecd5cc-8a5b-4676-97dd-25b794916fbb', event_type: 'party', startdatetime: '2020-02-15T22:00:00', enddatetime: '2020-02-16T03:00:00', + location: 'Landbouwbelang', slug: 'universal-love', hero_background_color: null, - hubs: [331, 332], + hubs: [{ hubs_id: { city: 'Maastricht' } }, { hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1988, artist_name: 'Lump von Bengel', - image: 'f3eb9580-7806-4c2a-9253-4401758c3db3', slug: 'lump-von-bengel' } }, { artists_id: { + id: 1989, artist_name: 'Sændrå Ballack', - image: 'bccde82e-e7ea-4204-80da-a82742a41896', slug: 'saendra-ballack' } }, { artists_id: { + id: 1990, artist_name: 'Gingergeesus', - image: '17893536-f585-4ed1-aeb4-6db083f94935', slug: 'gingergeesus' } }, { artists_id: { + id: 1691, artist_name: 'Monsieur Mango', - image: '006e638d-1a1f-43ce-96d7-7b23f080f36b', slug: 'monsieur-mango' } }, { artists_id: { + id: 1978, artist_name: 'Mina Taurus', - image: '459cfa15-a36e-4bd1-8b0e-5d1bdb9964a3', slug: 'mina-taurus' } }, { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 1992, artist_name: 't.zer', - image: 'b49bd86d-913b-43b0-8ec5-5166de90d436', slug: 'tzer' } }, { artists_id: { + id: 1993, artist_name: 'Kafka', - image: 'a7130f3f-c9e2-48ab-8cc6-aaeef66c60fd', slug: 'kafka' } }, { artists_id: { + id: 1994, artist_name: 'RTNG', - image: '7e7a8cf8-d9d9-4d35-821a-39134cc2038d', slug: 'rtng' } } @@ -3160,45 +2947,47 @@ export default { event_type: 'GCG', startdatetime: '2020-02-14T18:00:00', enddatetime: '2020-02-16T18:00:00', + location: 'Maastricht', slug: 'global-community-gathering-2020', hero_background_color: null, - hubs: [385, 386], + hubs: [{ hubs_id: { city: 'Maastricht' } }, { hubs_id: { city: 'Global' } }], artists: [] }, { id: 418, name: 'Sense & Scenery', - poster: '91a6e764-0184-4dc7-b72a-a1c6c419eea3', event_type: 'party', startdatetime: '2020-02-08T23:59:59', enddatetime: '2020-02-09T12:00:00', + location: 'Mensch Meier', slug: 'sense-and-scenery', hero_background_color: null, - hubs: [333], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1987, artist_name: 'Boreal CaMi', - image: '6acf38e6-a7fe-4739-aaa2-0300da419b12', slug: 'boreal-cami' } }, { artists_id: { + id: 1995, artist_name: '2 Girls 1 Club', - image: '6d960525-a661-40a7-aeca-658007a9ea5d', slug: '2-girls-1-club' } }, { artists_id: { + id: 1996, artist_name: 'Barbarella', - image: 'c2e8a040-7d7a-4660-a267-ce4584ef0f7f', slug: 'barbarella' } }, { artists_id: { + id: 2036, artist_name: 'Caapi El Mesti', image: null, slug: 'caapi-el-mesti' @@ -3206,64 +2995,64 @@ export default { }, { artists_id: { + id: 1847, artist_name: 'Daensen', - image: '68a55508-cba9-441f-841b-23150cca0450', slug: 'daensen' } }, { artists_id: { + id: 1837, artist_name: 'Tvisker', - image: '4043625d-b42e-4dfe-9b3a-0ed05596ddbe', slug: 'tvisker' } }, { artists_id: { + id: 1911, artist_name: 'Marco Tegui', - image: '5a97fe97-5059-4435-a0b1-0c22f93e1e92', slug: 'marco-tegui' } }, { artists_id: { + id: 1816, artist_name: 'Kahl & Kæmena', - image: 'deea67cd-77f6-4da1-81ca-fbc59729ea77', slug: 'kahl-kaemena' } }, { artists_id: { + id: 1855, artist_name: 'Gunilla', - image: '92a48dd8-f1cb-4087-b541-1933f8943aea', slug: 'gunilla' } }, { artists_id: { + id: 2016, artist_name: 'Señora', - image: '97c1c9fd-67f0-4e46-a0ab-d2a04ee141b0', slug: 'senora' } }, { artists_id: { + id: 2037, artist_name: 'Johnson Patrick', - image: 'dee1bc20-a2ed-4b0e-bf13-0b0f7e4082fc', slug: 'johnson-patrick' } }, { artists_id: { + id: 2038, artist_name: 'Naozobra', - image: '1d5c59f6-6ecc-4588-bc89-463f321cda60', slug: 'naozobra' } }, { artists_id: { + id: 2039, artist_name: 'Pandu', - image: '4cbb98e6-31b8-4ebd-9391-7eec8ca0f98d', slug: 'pandu' } } @@ -3272,39 +3061,39 @@ export default { { id: 419, name: 'Craft Your Love', - poster: '2868266e-b3ff-472a-b1e9-7fc6fdc2b6a9', event_type: 'workshop', startdatetime: '2020-02-08T15:00:00', enddatetime: '2020-02-09T03:00:00', + location: 'LaVallée', slug: 'craft-your-love', hero_background_color: null, - hubs: [334], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [ { artists_id: { + id: 1871, artist_name: 'Rafael Aragon', - image: '4e84b522-7263-4d54-94b7-8b564d1a25e3', slug: 'rafael-aragon' } }, { artists_id: { + id: 1997, artist_name: 'Hesh', - image: 'e6d916db-a299-4a45-8cce-cb25fdb87232', slug: 'hesh' } }, { artists_id: { + id: 1998, artist_name: 'Melisa VelascO', - image: '963ca8e2-5eea-4cc8-9cec-735c7fa73d6f', slug: 'melisa-velasco' } }, { artists_id: { + id: 1999, artist_name: 'Empasym', - image: '10d0a192-c79a-4230-8f3b-84ae8cd2f62c', slug: 'empasym' } } @@ -3317,63 +3106,64 @@ export default { event_type: 'other', startdatetime: '2020-01-25T23:00:00', enddatetime: '2020-01-26T16:00:00', + location: 'Sekotr Evolution', slug: 'ravin-ravin-2020', hero_background_color: null, - hubs: [373], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 1993, artist_name: 'Kafka', - image: 'a7130f3f-c9e2-48ab-8cc6-aaeef66c60fd', slug: 'kafka' } }, { artists_id: { + id: 2088, artist_name: 'flooke', - image: '98056647-0066-474b-ab5e-d30a6e8d50fd', slug: 'flooke' } }, { artists_id: { + id: 2048, artist_name: 'Schlicke & Schlacke', - image: '1b69b841-2826-4f51-9406-a4d54a06d9f7', slug: 'schlicke-and-schlacke' } }, { artists_id: { + id: 2117, artist_name: 'KAWA KAWA', - image: '79b96263-b208-445b-a2f9-b12b0c47097d', slug: 'kawa-kawa' } }, { artists_id: { + id: 2118, artist_name: 'Purita D.', - image: '6a6e451b-c819-4814-aeca-b5e94ee10035', slug: 'purita-d' } }, { artists_id: { + id: 2119, artist_name: 'Sinamin', - image: '20efdef1-d116-412c-95b7-bc0f66f727ca', slug: 'sinamin' } }, { artists_id: { + id: 2120, artist_name: 'Zeno Chino', - image: '976df0cd-0774-491e-afac-c27b8c832399', slug: 'zeno-chino' } } @@ -3382,25 +3172,25 @@ export default { { id: 467, name: 'Love x John Known', - poster: '803b6524-f6c4-40bf-8eb7-e21a8ab0b1aa', event_type: 'concert', startdatetime: '2020-01-18T19:00:00', enddatetime: '2020-01-18T23:30:00', + location: 'Club Kwang Lee', slug: 'love-x-john-known', hero_background_color: null, - hubs: [370], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2112, artist_name: 'John Known', - image: '9c8e4503-c6f1-40fa-86a8-fadcc048d7ce', slug: 'john-known' } }, { artists_id: { + id: 2113, artist_name: 'Gisela Björn', - image: 'd1c81e19-a760-48df-884b-7a5c5d4ed175', slug: 'gisela-bjorn' } } @@ -3409,81 +3199,81 @@ export default { { id: 420, name: 'Fiese Liebe', - poster: '0371bda8-f2a9-446a-a50c-1b01dfd8e83d', event_type: 'party', startdatetime: '2020-01-11T23:59:59', enddatetime: '2020-01-12T11:00:00', + location: 'Fiese Remise', slug: 'fiese-liebe', hero_background_color: null, - hubs: [335], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1942, artist_name: 'Carolain Luf', - image: '2642e35f-ea8f-4030-a81d-442eb86c7a56', slug: 'carolain-luf' } }, { artists_id: { + id: 2000, artist_name: 'Daniela Cast', - image: '371ce5c5-06f4-43e4-a42f-c81a7fc378e4', slug: 'daniela-cast' } }, { artists_id: { + id: 2001, artist_name: 'Fabio Florido', - image: '567623b7-dd6e-419f-8861-8d7817b022d6', slug: 'fabio-florido' } }, { artists_id: { + id: 2002, artist_name: 'Holly North', - image: '6014ed55-b11c-4ac5-8eb6-34e4f7a87760', slug: 'holly-north' } }, { artists_id: { + id: 2003, artist_name: 'Isa Wolff', - image: 'f677cc96-1658-47e9-b224-556c175ccaea', slug: 'isa-wolff' } }, { artists_id: { + id: 2004, artist_name: 'Miss Jools', - image: 'b874b499-d675-4557-825e-830df4f4c9a4', slug: 'miss-jools' } }, { artists_id: { + id: 1923, artist_name: 'SODA KIDS', - image: '3bcb3712-f46a-40cb-9d5c-8e4b1be74bd2', slug: 'soda-kids' } }, { artists_id: { + id: 1880, artist_name: 'Stina Francina', - image: '753d8567-dec9-4f6e-9e36-8a6b90ca1c36', slug: 'stina-francina' } }, { artists_id: { + id: 1693, artist_name: 'Terry Benedikt', - image: '8e1429cc-cfc3-4050-bc12-62ab76e40f04', slug: 'terry-benedikt' } }, { artists_id: { + id: 2005, artist_name: 'Arnau Amatista', - image: '6b2298f5-7f72-472f-8861-2335e60b5ab4', slug: 'arnau-amatista' } } @@ -3492,60 +3282,60 @@ export default { { id: 423, name: '7 Years of Love', - poster: '75c126a3-b52b-4c30-9709-fcafc8030746', event_type: 'party', startdatetime: '2019-12-14T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Atelier Schinkel', slug: '7-years-of-love', hero_background_color: null, - hubs: [337], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1772, artist_name: 'Kraut', - image: 'e102d0f2-80a8-4d6d-8417-5d3fc5d93fdd', slug: 'kraut' } }, { artists_id: { + id: 1790, artist_name: 'Thommie G', - image: '754b1003-04ef-4dbe-b077-96eddf1024b0', slug: 'thommie-g' } }, { artists_id: { + id: 2006, artist_name: 'Space Kadett', - image: '92b49210-b08a-43bb-8cf5-8fa80933d49f', slug: 'space-kadett' } }, { artists_id: { + id: 2007, artist_name: 'DJ Isis', - image: 'e55d30cb-6007-4d51-a165-d0193800a6fe', slug: 'dj-isis' } }, { artists_id: { + id: 2008, artist_name: 'A.D.H.S.', - image: '5dabd9b3-fc92-41ce-9c58-5f889333fe44', slug: 'adhs' } }, { artists_id: { + id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', slug: 'some-chemistry' } }, { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } } @@ -3554,102 +3344,96 @@ export default { { id: 424, name: 'Roots x Love Foundation', - poster: '62b6a5d2-534e-4c0c-8c77-2ec455eb773e', event_type: 'party', startdatetime: '2019-12-06T23:00:00', enddatetime: '2019-12-07T08:00:00', + location: 'Insel der Jugend', slug: 'roots-x-love-foundation', hero_background_color: null, - hubs: [338], + hubs: [{ hubs_id: { city: 'Magdeburg' } }], artists: [ { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', slug: 'casio' } }, { artists_id: { + id: 1816, artist_name: 'Kahl & Kæmena', - image: 'deea67cd-77f6-4da1-81ca-fbc59729ea77', slug: 'kahl-kaemena' } }, { artists_id: { + id: 2009, artist_name: 'Cesár B', - image: 'baed714e-633c-4eea-b932-5b8bd505a6ae', slug: 'cesar-b' } }, { artists_id: { + id: 1821, artist_name: 'Lazer Lucy', - image: 'f6d91111-83ea-41a5-9996-28924b7d5b9a', slug: 'lazer-lucy' } }, + { artists_id: { id: 2010, artist_name: 'Mokohuiu', image: null, slug: 'mokohuiu' } }, { artists_id: { - artist_name: 'Mokohuiu', - image: null, - slug: 'mokohuiu' - } - }, - { - artists_id: { + id: 2011, artist_name: 'Phil dB+', - image: '6dde078c-5b03-4f06-8a51-f496a22ad843', slug: 'phil-db' } }, { artists_id: { + id: 2012, artist_name: 'Ragi', - image: '55bc3073-312b-43ba-9e3e-532075481681', slug: 'ragi' } }, { artists_id: { + id: 2013, artist_name: 'sa.mu', - image: 'b1c802bb-e193-49cd-88e4-47ca5179a18c', slug: 'samu' } }, { artists_id: { + id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', slug: 'saphear' } }, { artists_id: { + id: 2014, artist_name: 'Taen', - image: '6921c67a-ea45-4479-82f7-edd57deaf79a', slug: 'taen' } }, { artists_id: { + id: 2015, artist_name: 'Vitus Soska', - image: 'f711b116-b89f-4dd9-96fd-35cf6d3ade5c', slug: 'vitus-soska' } }, { artists_id: { + id: 1987, artist_name: 'Boreal CaMi', - image: '6acf38e6-a7fe-4739-aaa2-0300da419b12', slug: 'boreal-cami' } } @@ -3658,25 +3442,25 @@ export default { { id: 410, name: 'Love Konzert', - poster: 'a5ffed16-0137-40c6-ba35-fe654daf2fc1', event_type: 'other', startdatetime: '2019-12-06T19:00:00', enddatetime: '2019-12-06T23:59:00', + location: 'Die Rösslstube', slug: 'love-konzert', hero_background_color: null, - hubs: [324], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2110, artist_name: 'Brendan', - image: '41c63369-85ba-4258-8ac1-dd32e88291c7', slug: 'brendan' } }, { artists_id: { + id: 2111, artist_name: 'Varasada', - image: '8ed6501d-5cff-4fbc-aa5e-a57bd34a0fd5', slug: 'varasada' } } @@ -3685,141 +3469,137 @@ export default { { id: 447, name: 'Home of Love III', - poster: '84f4f330-64b7-41cd-8e22-bc3e55ca0044', event_type: 'party', startdatetime: '2019-12-05T18:00:00', enddatetime: '2019-12-05T18:00:00', + location: '', slug: 'home-of-love-iii', hero_background_color: null, - hubs: [349], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 2245, artist_name: 'Valeentin-1', - image: 'bb706bc9-f0c4-47cb-b0f6-29edab40adcf', slug: 'valeentin-1' } }, { artists_id: { + id: 2246, artist_name: 'WHYBE', - image: 'cc6055a6-4e4e-44ef-b429-5e16fc62efb1', slug: 'whybe' } }, { artists_id: { + id: 2247, artist_name: 'Lisette Lowe', - image: '53013a6d-7ebb-4d2a-b2bd-2ed3c8aa5079', slug: 'lisette-lowe' } }, { artists_id: { + id: 2248, artist_name: 'Triana', - image: 'e1baef71-51e6-452b-99ad-8db28b67d9c6', slug: 'triana' } }, { - artists_id: { - artist_name: 'Malanghi Arts', - image: null, - slug: 'malanghi-arts' - } + artists_id: { id: 2249, artist_name: 'Malanghi Arts', image: null, slug: 'malanghi-arts' } } ] }, { id: 430, name: 'Wasser, Wissen, Liebe- Ein Abend mit der Love Foundation', - poster: '0b6f3720-079d-44eb-a7d1-fb83adca7e12', event_type: 'other', startdatetime: '2019-12-01T16:30:00', enddatetime: '2019-12-01T23:55:00', + location: 'Kreativquartier München', slug: 'wasser-wissen-liebe-ein-abend-mit-der-love-foundation', hero_background_color: null, - hubs: [339], + hubs: [{ hubs_id: { city: 'Munich' } }], artists: [] }, { id: 431, name: 'Down. mit Love Foundation', - poster: '1f1fc2ae-8a78-4a22-8e42-a729b4647449', event_type: 'love excursion', startdatetime: '2019-10-12T23:00:00', enddatetime: '2019-10-13T08:00:00', + location: 'fluc + fluc wanne', slug: 'down-mit-love-foundation', hero_background_color: null, - hubs: [364], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1773, artist_name: 'Casimir von Oettingen', - image: 'c2a338dc-86ff-4c86-8624-e11383cbf58a', slug: 'casimir-von-oettingen' } }, { artists_id: { + id: 1827, artist_name: 'Bonjour Ben', - image: '6a00926f-541e-4f34-8858-b5adbc800e3e', slug: 'bonjour-ben' } }, { artists_id: { + id: 1832, artist_name: 'Mirmur', - image: 'a20a3471-1ebd-46c1-949f-0715f584e22e', slug: 'mirmur' } }, { artists_id: { + id: 2016, artist_name: 'Señora', - image: '97c1c9fd-67f0-4e46-a0ab-d2a04ee141b0', slug: 'senora' } }, { artists_id: { + id: 2017, artist_name: 'Lui Mafuta', - image: 'f4419544-83c3-4a44-969f-b785f0f006ac', slug: 'lui-mafuta' } }, { artists_id: { + id: 2020, artist_name: 'Dorothee', - image: '8b470e3e-14c7-4d24-9b81-2c168005e92c', slug: 'dorothee' } }, { artists_id: { + id: 2021, artist_name: 'Aldo Rado', - image: '61037240-1221-4914-938b-68f9980909af', slug: 'aldo-rado' } }, { artists_id: { + id: 2022, artist_name: 'MataHari', - image: '34462311-3717-4e3d-9cef-6c914ba3d469', slug: 'matahari' } }, { artists_id: { + id: 2023, artist_name: 'Schnuppo', - image: '41f9c513-2eaf-4b65-b893-68648c598bbc', slug: 'schnuppo' } }, { artists_id: { + id: 2034, artist_name: "Käpt'n 12 & Düsentrieb", - image: '6193011d-4b31-4ae8-a461-bd0899f07679', slug: 'kaptn-12-and-dusentrieb' } } @@ -3828,65 +3608,49 @@ export default { { id: 480, name: 'Stand Up For Love 2', - poster: '97b70a68-0ba0-48d6-8f13-bf29ebfdc5ed', event_type: 'storytelling', startdatetime: '2019-09-28T20:00:00', enddatetime: '2019-09-28T23:00:00', + location: 'De Ceuvel', slug: 'stand-up-for-love-2', hero_background_color: null, - hubs: [407], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 2136, artist_name: 'Roxy JC', - image: '64dfa7c5-b1e8-4a43-b3d6-7806bceb9f05', slug: 'roxy-jc' } }, { artists_id: { + id: 2137, artist_name: 'Sjoerd Scott', - image: 'a247b3ab-b2bf-4f07-a71a-1b8bd77d254f', slug: 'sjoerd-scott' } }, { - artists_id: { - artist_name: 'Michael Jäger', - image: null, - slug: 'michael-jager' - } + artists_id: { id: 2138, artist_name: 'Michael Jäger', image: null, slug: 'michael-jager' } }, { - artists_id: { - artist_name: 'Guy Campbell', - image: null, - slug: 'guy-campbell' - } + artists_id: { id: 2139, artist_name: 'Guy Campbell', image: null, slug: 'guy-campbell' } }, { - artists_id: { - artist_name: 'Boris Khaykin', - image: null, - slug: 'boris-khaykin' - } + artists_id: { id: 2140, artist_name: 'Boris Khaykin', image: null, slug: 'boris-khaykin' } }, { artists_id: { + id: 2141, artist_name: 'Christina Rivera Calderon', image: null, slug: 'christina-rivera-calderon' } }, + { artists_id: { id: 2142, artist_name: 'Rami Nima', image: null, slug: 'rami-nima' } }, { artists_id: { - artist_name: 'Rami Nima', - image: null, - slug: 'rami-nima' - } - }, - { - artists_id: { + id: 2143, artist_name: 'Socrates Kimon Inglessis', image: null, slug: 'socrates-kimon-inglessis' @@ -3897,46 +3661,46 @@ export default { { id: 432, name: 'Love Sweat Disco', - poster: '8007e8f8-3cb5-4b04-b04f-79e6a1be9199', event_type: 'party', startdatetime: '2019-09-12T18:00:00', enddatetime: '2019-09-14T02:00:00', + location: 'Home Town', slug: 'love-sweat-disco', hero_background_color: null, - hubs: [341], + hubs: [{ hubs_id: { city: 'Capetown' } }], artists: [ { artists_id: { + id: 1973, artist_name: 'Joe Ctylin', - image: '32e186be-dd03-440b-9cf2-ab958c6f978c', slug: 'joe-ctylin' } }, { artists_id: { + id: 2024, artist_name: 'Barista', - image: 'f4579031-88bd-4887-9766-11380709e206', slug: 'barista' } }, { artists_id: { + id: 2025, artist_name: 'Nativesound', - image: 'c4fca27b-7f70-4e09-9113-15d670fbe63c', slug: 'nativesound' } }, { artists_id: { + id: 2026, artist_name: 'Kyle Thomas', - image: '2f70fd02-b588-4445-9b20-e18c456616bb', slug: 'kyle-thomas' } }, { artists_id: { + id: 2027, artist_name: 'Sunavagun', - image: 'fa119913-a82c-4af2-b52c-584bcfd67709', slug: 'sunavagun' } } @@ -3945,73 +3709,67 @@ export default { { id: 437, name: 'Love is in the Air II', - poster: '646eaee4-17fe-4901-87cb-00a4e081873b', event_type: 'party', startdatetime: '2019-07-25T14:00:00', enddatetime: '2019-05-25T23:00:00', + location: 'Secret Location', slug: 'love-is-in-the-air-ii', hero_background_color: null, - hubs: [343], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1693, artist_name: 'Terry Benedikt', - image: '8e1429cc-cfc3-4050-bc12-62ab76e40f04', slug: 'terry-benedikt' } }, { artists_id: { + id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', slug: 'zodya' } }, { artists_id: { + id: 1901, artist_name: 'Octopus Garden', - image: '371b5123-4d82-4f17-9d13-70ef0b904aee', slug: 'octopus-garden' } }, { artists_id: { + id: 2031, artist_name: 'Mosquett', - image: '7136ec84-ade0-484e-bcda-1403becccb84', slug: 'mosquett' } }, - { - artists_id: { - artist_name: 'Julie', - image: null, - slug: 'julie' - } - } + { artists_id: { id: 2032, artist_name: 'Julie', image: null, slug: 'julie' } } ] }, { id: 463, name: 'Community Concert', - poster: '2c8708c5-29b5-4670-ac50-31255316c4ec', event_type: 'concert', startdatetime: '2019-07-19T20:00:00', enddatetime: '2019-07-19T23:59:00', + location: 'Die Rösslstube', slug: 'community-concert', hero_background_color: null, - hubs: [367], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2108, artist_name: 'Goat Retriever', - image: '28e1c57f-4ddd-4f8f-b9c4-801b3e4e6732', slug: 'goat-retriever' } }, { artists_id: { + id: 2109, artist_name: 'isolate', - image: '426c611a-46e6-4238-8ea5-908df7ab1036', slug: 'isolate' } } @@ -4024,404 +3782,405 @@ export default { event_type: 'GCG', startdatetime: '2019-06-14T18:00:00', enddatetime: '2019-06-16T18:00:00', + location: 'Global Village, Berlin', slug: 'second-global-community-gathering-2019', hero_background_color: null, - hubs: [387, 388], + hubs: [{ hubs_id: { city: 'Berlin' } }, { hubs_id: { city: 'Global' } }], artists: [] }, { id: 351, name: 'The Art of Loving - Third Edition', - poster: 'f23c909c-25ec-49e1-9fd5-8ea1e998ed63', event_type: 'festival', startdatetime: '2019-06-08T11:00:00', enddatetime: '2019-06-09T11:00:00', + location: 'Mensch Meier', slug: 'the-art-of-loving-third-edition', hero_background_color: null, - hubs: [313], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1841, artist_name: 'Λrilu', - image: 'adc66033-0720-474d-a152-1c08af0ecb86', slug: 'arilu' } }, { artists_id: { + id: 1842, artist_name: 'Mente Organica', - image: '48f2fca7-e206-41fc-8dac-7ba25dabe997', slug: 'mente-organica' } }, { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1844, artist_name: 'Calling Marian', - image: '0365e7d0-fc63-4eb1-bde1-33f49367a2a4', slug: 'calling-marian' } }, { artists_id: { + id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', slug: 'casio' } }, { artists_id: { + id: 1846, artist_name: 'Xynia', - image: '45ce8d85-ae56-4d46-8780-ce3498b942bc', slug: 'xynia' } }, { artists_id: { + id: 1849, artist_name: 'Fakko', - image: '3d4af202-8b32-495c-93ce-776cfda33bdf', slug: 'fakko' } }, { artists_id: { + id: 1850, artist_name: 'Raji', - image: 'a0f310cc-ed55-476a-8897-8be1bcc25cdd', slug: 'raji' } }, { artists_id: { + id: 1851, artist_name: 'feinheitsbrei', - image: 'dbc83392-ede5-4494-894b-0f23bbabf9a2', slug: 'feinheitsbrei' } }, { artists_id: { + id: 1852, artist_name: 'GATS', - image: 'd7cd24c6-06ed-46b9-b342-2d3977cb2ba5', slug: 'gats' } }, { artists_id: { + id: 1853, artist_name: 'Lagoon', - image: '32253745-e519-456f-b633-c3be02526925', slug: 'lagoon' } }, { artists_id: { + id: 1753, artist_name: 'Gam̈a͇', - image: '2426daf8-5f72-4c4c-a9bc-b34021b9aabe', slug: 'gama' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } }, { artists_id: { + id: 1855, artist_name: 'Gunilla', - image: '92a48dd8-f1cb-4087-b541-1933f8943aea', slug: 'gunilla' } }, { artists_id: { + id: 1857, artist_name: 'Saïph', - image: '1f4560ac-a0a2-4bfe-a77f-6586b701f993', slug: 'saiph' } }, { artists_id: { + id: 1858, artist_name: 'Inès MBRK', - image: '97034e6c-c554-40ee-9f9a-a2598aeecb81', slug: 'ines-mbrk' } }, { artists_id: { + id: 1859, artist_name: 'Julio Bolivar', - image: '02ee9a9b-f4c9-4fa8-8d64-b0013fcd4da1', slug: 'julio-bolivar' } }, { artists_id: { + id: 1860, artist_name: 'Indiia', - image: '85726e93-7bdf-416d-b68c-3a8d1afaacf2', slug: 'indiia' } }, { artists_id: { + id: 1818, artist_name: 'Kotoe', - image: 'd2b294a0-f07d-4f60-9527-c8352e0ee3a8', slug: 'kotoe' } }, { artists_id: { + id: 1772, artist_name: 'Kraut', - image: 'e102d0f2-80a8-4d6d-8417-5d3fc5d93fdd', slug: 'kraut' } }, { artists_id: { + id: 1862, artist_name: 'Lilly & Kazan', - image: '7ec5febf-da00-482d-8460-4f0c7be5795e', slug: 'lilly-kazan' } }, { artists_id: { + id: 1863, artist_name: 'Luana Schwengber', - image: '2044e067-2da8-4b22-81bd-22a5c0e3a025', slug: 'luana-schwengber' } }, { artists_id: { + id: 1864, artist_name: 'Marlon', - image: '6bc790b0-0788-401e-95ba-0af5d064ae9d', slug: 'marlon' } }, { artists_id: { + id: 1865, artist_name: 'Maya Postepski', - image: '299d7df7-bb5b-405a-8d7c-ab1a8aa4f181', slug: 'maya-postepski' } }, { artists_id: { + id: 1867, artist_name: 'Mr. Lighthouse', - image: '9d707a6b-2253-43fb-9409-4825ff6af878', slug: 'mr-lighthouse' } }, { artists_id: { + id: 1869, artist_name: 'NOËLIA', - image: '9fc27598-04b9-484a-bab5-977f838a3e05', slug: 'noelia' } }, { artists_id: { + id: 1870, artist_name: 'P2Z', - image: '5b466a8a-4439-4dc0-a4a7-2c48fee26e2a', slug: 'p2z' } }, { artists_id: { + id: 1871, artist_name: 'Rafael Aragon', - image: '4e84b522-7263-4d54-94b7-8b564d1a25e3', slug: 'rafael-aragon' } }, { artists_id: { + id: 1872, artist_name: 'Rafael Castiglione', - image: '6c85a24d-e841-4891-b650-73d6853bd1cb', slug: 'rafael-castiglione' } }, { artists_id: { + id: 1875, artist_name: 'Rhizomatique', - image: 'cdf6c6ef-50b5-40be-9526-4578c6c0fece', slug: 'rhizomatique' } }, { artists_id: { + id: 1876, artist_name: 'Robin Schellenberg', - image: '9f30a9e0-8758-473c-9a70-758b638517da', slug: 'robin-schellenberg' } }, { artists_id: { + id: 1877, artist_name: 'Rubi ツ', - image: '91ed6ef4-5588-447c-8791-49b08f278a5f', slug: 'rubi' } }, { artists_id: { + id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', slug: 'saphear' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', slug: 'saphear' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 2016, artist_name: 'Señora', - image: '97c1c9fd-67f0-4e46-a0ab-d2a04ee141b0', slug: 'senora' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1693, artist_name: 'Terry Benedikt', - image: '8e1429cc-cfc3-4050-bc12-62ab76e40f04', slug: 'terry-benedikt' } }, { artists_id: { + id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', slug: 'zodya' } }, { artists_id: { + id: 1834, artist_name: 'To Be Honest', - image: '33f51123-f8f3-4e24-9ecb-823611c8b13c', slug: 'to-be-honest' } }, { artists_id: { + id: 1931, artist_name: 'Vincent Vidal', - image: 'ce42af95-58b0-442a-bf66-be4964c6ae5e', slug: 'vincent-vidal' } }, { artists_id: { + id: 1929, artist_name: 'Yanakuna', - image: '24ef067f-f667-4983-b908-cad52503a5a8', slug: 'yanakuna' } }, { artists_id: { + id: 1873, artist_name: 'Mattmosphere', - image: 'd355b5dd-d762-40f5-bfe7-207743321c71', slug: 'mattmosphere' } }, { artists_id: { + id: 2054, artist_name: 'Chikiss aka Galina Ozeran', - image: '033f43a7-b0d5-47b1-aca9-ec9058be86d2', slug: 'chikiss-aka-galina-ozeran' } }, { artists_id: { + id: 2055, artist_name: 'MXMR', - image: 'f3016878-5e37-4405-b90d-6685853da51e', slug: 'mxmr' } }, { artists_id: { + id: 1874, artist_name: 'Risikogruppe', - image: 'b8e3347e-a814-4cbb-ba1b-426512a80350', slug: 'risikogruppe' } }, { artists_id: { + id: 2057, artist_name: 'Urem', - image: 'b626eda9-4e89-4a81-8ce9-caca4b41d657', slug: 'urem' } }, { artists_id: { + id: 2058, artist_name: 'Lasse Lambretta', - image: 'ad0befd2-e251-4a1a-8366-4ff43db4275a', slug: 'lasse-lambretta' } }, { artists_id: { + id: 2059, artist_name: 'Donny Dunkel', - image: '3e640c60-68a9-4265-8efc-60d056884bf9', slug: 'donny-dunkel' } }, { artists_id: { + id: 2060, artist_name: 'mex_heimlich', - image: 'eb0a9f90-3456-4a98-94b5-560920addeb5', slug: 'mex_heimlich' } }, { artists_id: { + id: 2061, artist_name: 'Sugar Free', - image: 'bed48492-5c75-4676-8756-665fcb1c163c', slug: 'sugar-free' } }, { artists_id: { + id: 2062, artist_name: 'Thorgerdur Johanna', - image: '64cd93b0-f6bc-4222-837c-85d7ef249f36', slug: 'thorgerdur-johanna' } }, { artists_id: { + id: 1971, artist_name: 'Alice Phoebe Lou', - image: 'c0f48bda-e6c2-4ece-af6f-2dffb535230a', slug: 'alice-phoebe-lou' } }, { artists_id: { + id: 1880, artist_name: 'Stina Francina', - image: '753d8567-dec9-4f6e-9e36-8a6b90ca1c36', slug: 'stina-francina' } } @@ -4430,32 +4189,32 @@ export default { { id: 433, name: 'What is Love? ft. Astrafunk', - poster: '021966fd-4183-46c1-9ca9-dcccb6f761ea', event_type: 'other', startdatetime: '2019-06-07T16:00:00', enddatetime: '2019-08-07T23:59:00', + location: 'Home Town', slug: 'what-is-love-ft-astrafunk', hero_background_color: null, - hubs: [342], + hubs: [{ hubs_id: { city: 'Capetown' } }], artists: [ { artists_id: { + id: 2028, artist_name: 'Astrafunk', - image: 'f011705c-a1ab-47fc-8de5-88e05ac6d79a', slug: 'astrafunk' } }, { artists_id: { + id: 2029, artist_name: 'Brenda Pakkies', - image: '8d84dc08-802e-4028-8cd5-2d8617fff4e7', slug: 'brenda-pakkies' } }, { artists_id: { + id: 2030, artist_name: 'Samuel Heuermann', - image: 'f7e94bce-7d5f-444e-8d7f-07026f6b8d8a', slug: 'samuel-heuermann' } } @@ -4464,235 +4223,226 @@ export default { { id: 434, name: 'FUTUR II', - poster: 'd918b574-5aea-4f0b-90b4-f6d4e25d7f01', event_type: 'party', startdatetime: '2019-06-01T21:00:00', enddatetime: '2019-06-12T18:00:00', + location: 'Sektor Evolution', slug: 'futur-ii', hero_background_color: null, - hubs: [369], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2090, artist_name: 'Alva', - image: 'e2d9cd9a-5783-4608-b399-60c12ae0aff4', slug: 'alva' } }, { artists_id: { + id: 2091, artist_name: 'Amy.G.Dala', - image: 'aa633c31-ac64-4506-a5d8-5da8bd64c532', slug: 'amygdala' } }, { artists_id: { + id: 2092, artist_name: 'Martin Saupe', - image: 'd12c198f-e452-4140-bd34-e9d0f36a805e', slug: 'martin-saupe' } }, { artists_id: { + id: 2093, artist_name: 'Ch1p', - image: 'e78b0cb4-fde8-4f60-86af-58f52f3879f7', slug: 'ch1p' } }, { artists_id: { + id: 2094, artist_name: 'Mit B.', - image: '9c4bbf47-188c-4933-9b67-8c13aa84fbc4', slug: 'mit-b' } }, { artists_id: { + id: 2095, artist_name: 'Dan && Rather', - image: '59ac720e-7747-4a25-ab4e-92986dd806a7', slug: 'dan-and-rather' } }, { artists_id: { + id: 2096, artist_name: 'Die Fürstin von Sumatra', image: null, slug: 'die-furstin-von-sumatra' } }, { - artists_id: { - artist_name: 'DJ Schmackes', - image: null, - slug: 'dj-schmackes' - } + artists_id: { id: 2097, artist_name: 'DJ Schmackes', image: null, slug: 'dj-schmackes' } }, { artists_id: { + id: 2098, artist_name: 'RixiBoi', - image: '69bae316-6f84-4aed-8bb1-3a29531d4aac', slug: 'rixiboi' } }, { artists_id: { + id: 2099, artist_name: 'Serafin', - image: '20b39307-b5a0-4fdd-b6d0-4dcc08026b46', slug: 'serafin' } }, { artists_id: { + id: 2100, artist_name: 'Frida Darko', - image: '498034b7-ade8-4930-b5d6-b0c1da1bb49a', slug: 'frida-darko' } }, { artists_id: { + id: 2101, artist_name: 'Intaktogene', - image: '5925395e-da1e-431a-92db-44a61912a54c', slug: 'intaktogene' } }, { artists_id: { + id: 1993, artist_name: 'Kafka', - image: 'a7130f3f-c9e2-48ab-8cc6-aaeef66c60fd', slug: 'kafka' } }, + { artists_id: { id: 2102, artist_name: 'Leirun', image: null, slug: 'leirun' } }, { artists_id: { - artist_name: 'Leirun', - image: null, - slug: 'leirun' - } - }, - { - artists_id: { + id: 2103, artist_name: 'Shaleen', - image: 'a549260d-a364-4f1e-91f4-d65bb4c76266', slug: 'shaleen' } }, { artists_id: { + id: 2104, artist_name: 'Swinka', - image: 'b06fc3fb-843a-4f72-991c-029aec3da67e', slug: 'swinka' } }, { artists_id: { + id: 2105, artist_name: 'V', - image: '4a75895b-6fec-453c-b006-1aa1eedab1c0', slug: 'v' } }, { artists_id: { + id: 2106, artist_name: 'Yves Eden', - image: '400d6b72-07a5-4734-8787-f1ec57abe034', slug: 'yves-eden' } }, { artists_id: { + id: 2107, artist_name: 'HabibiShip', - image: '705e5d3a-803e-4d32-bddd-b1731f6f98cd', slug: 'habibiship' } }, { artists_id: { + id: 1773, artist_name: 'Casimir von Oettingen', - image: 'c2a338dc-86ff-4c86-8624-e11383cbf58a', slug: 'casimir-von-oettingen' } }, { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 1968, artist_name: 'Til Seifert', - image: '0358f20b-d9b8-4ffb-ba29-4d4c84a6858d', slug: 'til-seifert' } }, { artists_id: { + id: 1851, artist_name: 'feinheitsbrei', - image: 'dbc83392-ede5-4494-894b-0f23bbabf9a2', slug: 'feinheitsbrei' } }, { artists_id: { + id: 2088, artist_name: 'flooke', - image: '98056647-0066-474b-ab5e-d30a6e8d50fd', slug: 'flooke' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1930, artist_name: 'Judith van Waterkant', - image: '3cccdc82-746b-45b9-83f2-7fed69ec4bab', slug: 'judith-van-waterkant' } }, { artists_id: { + id: 1969, artist_name: 'PAU PAU', - image: '4be1901f-d807-4ce0-9842-c9d7ce0e94e9', slug: 'pau-pau' } }, { artists_id: { + id: 1992, artist_name: 't.zer', - image: 'b49bd86d-913b-43b0-8ec5-5166de90d436', slug: 'tzer' } }, { artists_id: { + id: 2048, artist_name: 'Schlicke & Schlacke', - image: '1b69b841-2826-4f51-9406-a4d54a06d9f7', slug: 'schlicke-and-schlacke' } }, { artists_id: { + id: 1910, artist_name: 'Mehr ist Mehr', - image: '7e33f955-b139-454d-a382-4dd4c384a983', slug: 'mehr-ist-mehr' } }, { artists_id: { + id: 1701, artist_name: 'Viellaroue', - image: '660a2595-f5ba-43c7-9333-324d62a53acc', slug: 'viellaroue' } }, { artists_id: { + id: 1875, artist_name: 'Rhizomatique', - image: 'cdf6c6ef-50b5-40be-9526-4578c6c0fece', slug: 'rhizomatique' } } @@ -4701,18 +4451,18 @@ export default { { id: 438, name: 'Love Drawing', - poster: '0c027c3c-12c6-4697-9044-5729228de611', event_type: 'other', startdatetime: '2019-05-21T19:30:00', enddatetime: '2019-05-21T23:59:00', + location: 'Philippe de Champagnestraat 3B, 1000 Brussel, België', slug: 'love-drawing', hero_background_color: null, - hubs: [344], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [ { artists_id: { + id: 1732, artist_name: 'Viktor', - image: 'bd698384-58b6-48bd-823d-ba236a864c94', slug: 'viktor' } } @@ -4721,65 +4471,59 @@ export default { { id: 461, name: 'Fischers Fritz fischt Plastik - und baut was draus', - poster: 'd8d3dfea-d889-4c7c-8381-6d34889b1462', event_type: 'workshop', startdatetime: '2019-05-19T14:00:00', enddatetime: '2019-05-19T19:00:00', + location: 'Kunstatelier Hanse 3', slug: 'fischers-fritz-fischt-plastik-und-baut-was-draus', hero_background_color: null, - hubs: [368], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [] }, { id: 350, name: 'Into the Æther', - poster: '28401ae7-2bbe-4719-ab35-1a50676b42b4', event_type: 'party', startdatetime: '2019-05-17T23:00:00', enddatetime: '2019-05-18T08:00:00', + location: 'Beate Uwe', slug: 'into-the-aether', hero_background_color: null, - hubs: [312], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1837, artist_name: 'Tvisker', - image: '4043625d-b42e-4dfe-9b3a-0ed05596ddbe', slug: 'tvisker' } }, { artists_id: { + id: 1838, artist_name: 'Paul Träumer', - image: '7297b7b3-6d9a-447e-99b5-e07656579dff', slug: 'paul-traeumer' } }, { artists_id: { + id: 1839, artist_name: 'Inkaa', - image: 'b3a27cf9-ff35-4abd-b309-652b7a338086', slug: 'inkaa' } }, + { artists_id: { id: 1840, artist_name: 'Hades', image: null, slug: 'hades' } }, { artists_id: { - artist_name: 'Hades', - image: null, - slug: 'hades' - } - }, - { - artists_id: { + id: 1821, artist_name: 'Lazer Lucy', - image: 'f6d91111-83ea-41a5-9996-28924b7d5b9a', slug: 'lazer-lucy' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } } @@ -4788,267 +4532,239 @@ export default { { id: 353, name: 'Tarot - Einladung zum Spiel', - poster: '68583586-2263-4fea-bd31-ef08b51ed3b6', event_type: 'party', startdatetime: '2019-04-27T23:59:00', enddatetime: '2019-04-28T13:00:00', + location: 'Mensch Meier', slug: 'tarot-einladung-zum-spiel', hero_background_color: null, - hubs: [315], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1761, artist_name: 'Turtur', - image: 'f7ebde38-fda0-48d4-8186-6bb76790cb46', slug: 'turtur' } }, { artists_id: { + id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', slug: 'zodya' } }, { artists_id: { + id: 1690, artist_name: 'Niju', - image: '712a1137-b068-4e0e-a11b-e80428a4a424', slug: 'niju' } }, { artists_id: { + id: 1812, artist_name: 'elfaux.', - image: 'be248414-c23a-4e7e-8181-c20738d4bf14', slug: 'elfaux' } }, { artists_id: { + id: 1813, artist_name: 'Ground', - image: '9c30ca04-14d8-44ea-a7f6-2b0fd6a40f6c', slug: 'ground' } }, { artists_id: { + id: 1814, artist_name: 'Jennifer Touch', - image: '5d4e90ab-f6b9-4058-85a1-0fbdb45be478', slug: 'jennifer-touch' } }, { artists_id: { + id: 1815, artist_name: 'Josephine Wedekind', - image: '70666ca9-bbd9-4292-b9f3-f15e31bb6af8', slug: 'josephine-wedekind' } }, { artists_id: { + id: 1816, artist_name: 'Kahl & Kæmena', - image: 'deea67cd-77f6-4da1-81ca-fbc59729ea77', slug: 'kahl-kaemena' } }, { artists_id: { + id: 1817, artist_name: 'KATKA', - image: 'e143cd17-546c-4269-96c4-66c1d0ff92b6', slug: 'katka' } }, { artists_id: { + id: 1818, artist_name: 'Kotoe', - image: 'd2b294a0-f07d-4f60-9527-c8352e0ee3a8', slug: 'kotoe' } }, { artists_id: { + id: 1820, artist_name: 'Raulito Wolf', - image: 'e811b49c-1ad1-490d-9746-ca512f8e8f8d', slug: 'raulito-wolf' } }, { artists_id: { + id: 1821, artist_name: 'Lazer Lucy', - image: 'f6d91111-83ea-41a5-9996-28924b7d5b9a', slug: 'lazer-lucy' } }, { artists_id: { + id: 1822, artist_name: 'sagan', - image: '6aa65a1e-1e45-403b-b41c-f475c10518ed', slug: 'sagan' } }, { artists_id: { + id: 1823, artist_name: 'Thomash', - image: 'a9e27d34-2e2e-4084-81ff-ad8ddb37c72e', slug: 'thomash' } }, { artists_id: { + id: 1824, artist_name: 'VAV', - image: '82ff9a71-351b-4b64-8444-41f5876d1352', slug: 'vav' } }, { - artists_id: { - artist_name: 'Deeper Bohlen', - image: null, - slug: 'deeper-bohlen' - } + artists_id: { id: 1825, artist_name: 'Deeper Bohlen', image: null, slug: 'deeper-bohlen' } }, { artists_id: { + id: 2233, artist_name: 'Wiebke B', - image: '34674104-c5be-4bd6-a195-1159d5b02f4e', slug: 'wiebke-b' } }, { artists_id: { + id: 2234, artist_name: 'Fifi Fantôme', - image: '2711af90-c4a7-4d46-86ca-6ed38f804279', slug: 'fifi-fantome' } }, { artists_id: { + id: 2235, artist_name: 'Paula Alejandra Riquelme Orbenes', - image: '55d44190-2468-4b48-ade7-746d5c94602d', slug: 'paula-alejandra-riquelme-orbenes' } }, - { - artists_id: { - artist_name: 'El Lee', - image: null, - slug: 'el-lee' - } - } + { artists_id: { id: 2236, artist_name: 'El Lee', image: null, slug: 'el-lee' } } ] }, { id: 349, name: 'Global Community Gathering 2019', - poster: 'df0ba745-d596-4dee-b851-9a6b9189a5c1', event_type: 'GCG', startdatetime: '2019-04-20T09:00:00', enddatetime: '2019-04-22T00:00:00', + location: 'Tel Aviv', slug: 'global-community-gathering-2019', hero_background_color: null, - hubs: [311, 383], + hubs: [{ hubs_id: { city: 'Global' } }, { hubs_id: { city: 'Tel Aviv' } }], artists: [] }, { id: 352, name: 'Mami Loves Wata', - poster: 'e90dcad1-b723-45d8-ad89-7a9077b35f17', event_type: 'party', startdatetime: '2019-04-18T23:59:00', enddatetime: '2019-04-19T12:00:00', + location: "Voldemort's Bay", slug: 'mami-loves-wata', hero_background_color: null, - hubs: [314], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1826, artist_name: 'AndShe', - image: 'ca1dc635-2be6-4e32-8bda-332c1df6b8c8', slug: 'andshe' } }, + { artists_id: { id: 1935, artist_name: 'Brothers', image: null, slug: 'brothers' } }, { artists_id: { - artist_name: 'Brothers', - image: null, - slug: 'brothers' - } - }, - { - artists_id: { + id: 1827, artist_name: 'Bonjour Ben', - image: '6a00926f-541e-4f34-8858-b5adbc800e3e', slug: 'bonjour-ben' } }, { artists_id: { + id: 1828, artist_name: 'Ellosophy', - image: 'aa14212b-de0f-47fa-8f1d-4c4a0b52b4ce', slug: 'ellosophy' } }, + { artists_id: { id: 1829, artist_name: 'Julius', image: null, slug: 'julius' } }, { artists_id: { - artist_name: 'Julius', - image: null, - slug: 'julius' - } - }, - { - artists_id: { + id: 1830, artist_name: 'Leon Kostner', - image: '7273c75e-30eb-42af-903b-7339d9f69638', slug: 'leon-kostner' } }, + { artists_id: { id: 1831, artist_name: 'Lucky Djulz', image: null, slug: 'lucky-djulz' } }, { artists_id: { - artist_name: 'Lucky Djulz', - image: null, - slug: 'lucky-djulz' - } - }, - { - artists_id: { + id: 1832, artist_name: 'Mirmur', - image: 'a20a3471-1ebd-46c1-949f-0715f584e22e', slug: 'mirmur' } }, { artists_id: { + id: 1833, artist_name: 'Sarah Wild', - image: '7610c4b5-89d6-40da-96db-db6dbd4901bb', slug: 'sarah-wild' } }, { artists_id: { + id: 1834, artist_name: 'To Be Honest', - image: '33f51123-f8f3-4e24-9ecb-823611c8b13c', slug: 'to-be-honest' } }, { artists_id: { + id: 1835, artist_name: 'Tom Eichhagen', - image: '04c2a28a-2478-46b2-9065-467719a5f66c', slug: 'tom-eichhagen' } } @@ -5057,30 +4773,22 @@ export default { { id: 348, name: 'Stand up for Love', - poster: '6fef68c7-8a92-4e6a-a074-52bd34160bf9', event_type: 'storytelling', startdatetime: '2019-04-12T20:00:00', enddatetime: '1970-01-01T00:00:00', + location: + 'Workship op de Ceuvel\r\nKorte Papaverweg 6c, \r\n1032 KB Amsterdam\r\nThe Netherlands', slug: 'stand-up-for-love', hero_background_color: null, - hubs: [310], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ + { artists_id: { id: 2284, artist_name: 'Nira Tal', image: null, slug: 'nira-tal' } }, { - artists_id: { - artist_name: 'Nira Tal', - image: null, - slug: 'nira-tal' - } - }, - { - artists_id: { - artist_name: 'Riddhi Raina', - image: null, - slug: 'riddhi-raina' - } + artists_id: { id: 2286, artist_name: 'Riddhi Raina', image: null, slug: 'riddhi-raina' } }, { artists_id: { + id: 2287, artist_name: 'Mark McCormack', image: null, slug: 'mark-mccormack' @@ -5088,61 +4796,45 @@ export default { }, { artists_id: { + id: 2288, artist_name: 'Grazyna Frackiewicz', image: null, slug: 'grazyna-frackiewicz' } }, { - artists_id: { - artist_name: 'Guy Campbell', - image: null, - slug: 'guy-campbell' - } - }, - { - artists_id: { - artist_name: 'Koen West', - image: null, - slug: 'koen-west' - } + artists_id: { id: 2139, artist_name: 'Guy Campbell', image: null, slug: 'guy-campbell' } }, + { artists_id: { id: 2289, artist_name: 'Koen West', image: null, slug: 'koen-west' } }, { artists_id: { + id: 2290, artist_name: 'Gregory Erickson', image: null, slug: 'gregory-erickson' } }, { - artists_id: { - artist_name: 'Michael Jäger', - image: null, - slug: 'michael-jager' - } + artists_id: { id: 2138, artist_name: 'Michael Jäger', image: null, slug: 'michael-jager' } } ] }, { id: 347, name: 'Performing Love', - poster: '435fbfd2-cb1f-452c-a2a8-2dd71461344e', event_type: 'festival', startdatetime: '2019-04-11T14:00:00', enddatetime: '1970-01-01T00:00:00', + location: + 'KIASMA\r\nMuseum of Contemporary Art\r\nMannerheiminaukio 2, FIN-00100\r\nHelsinki, Finland', slug: 'performing-love', hero_background_color: null, - hubs: [309], + hubs: [{ hubs_id: { city: 'Helsinki' } }], artists: [ + { artists_id: { id: 2257, artist_name: 'Nora Rinne', image: null, slug: 'nora-rinne' } }, { artists_id: { - artist_name: 'Nora Rinne', - image: null, - slug: 'nora-rinne' - } - }, - { - artists_id: { + id: 2258, artist_name: 'Laura Cemin & Lena Schwingshandl', image: null, slug: 'laura-cemin-lena-schwingshandl' @@ -5150,6 +4842,7 @@ export default { }, { artists_id: { + id: 2263, artist_name: 'Annika Lintervo', image: null, slug: 'annika-lintervo' @@ -5157,6 +4850,7 @@ export default { }, { artists_id: { + id: 2264, artist_name: 'Inka Yli-Tepsa', image: null, slug: 'inka-yli-tepsa' @@ -5164,6 +4858,7 @@ export default { }, { artists_id: { + id: 2267, artist_name: 'Diana Thielen & Kaisa Kukkonen', image: null, slug: 'diana-thielen-and-kaisa-kukkonen' @@ -5171,36 +4866,36 @@ export default { }, { artists_id: { + id: 1799, artist_name: 'Harold Hejazi', - image: 'e273ae80-5fcb-4dd8-a0cb-680e379afd90', slug: 'harold-hejazi' } }, { artists_id: { + id: 1796, artist_name: 'Arez Metta', - image: '66551cbb-0aa3-4afa-8386-1dc39458b87e', slug: 'arez-metta' } }, { artists_id: { + id: 2206, artist_name: 'Elina Latva', - image: 'e22971c9-53a2-42ab-a324-d81d6f6ee970', slug: 'elina-latva' } }, { artists_id: { + id: 1797, artist_name: 'Elise Liikala', - image: 'c0d4e146-f57a-4e75-87b2-0462dd67ef2d', slug: 'elise-liikala' } }, { artists_id: { + id: 1808, artist_name: 'Mesimarja Paatero', - image: 'ab212239-ae27-4bad-ba47-e505d2e3d1f7', slug: 'mesimarja-paatero' } } @@ -5209,18 +4904,18 @@ export default { { id: 346, name: 'Taste of Water', - poster: '9c02cd0d-5337-44c5-b6b2-9a455302cc59', event_type: 'film night', startdatetime: '2019-03-11T18:30:00', enddatetime: '1970-01-01T00:00:00', + location: 'Plantage Doklaan 8-12, \r\n1018 CM Amsterdam, \r\nThe Netherlands', slug: 'taste-of-water', hero_background_color: null, - hubs: [308], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 2214, artist_name: 'Storyteller Milda', - image: '664ecfde-838e-48e7-b419-0731da72b6d3', slug: 'storyteller-milda' } } @@ -5229,146 +4924,129 @@ export default { { id: 345, name: 'Pop—Up Atelier', - poster: '318a583a-82e4-4f60-b5d4-2b79d50ec80a', event_type: null, startdatetime: '2019-03-02T13:00:00', enddatetime: '2019-03-02T21:30:00', + location: 'The Workshop, Forster Straße. 51, Berlin', slug: 'popup-atelier', hero_background_color: null, - hubs: [307], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [] }, { id: 441, name: 'Down. mit Love Foundation & GaZ', - poster: '88e777f0-3f3f-4e49-bf39-f6de215c46e2', event_type: 'love excursion', startdatetime: '2019-03-01T23:00:00', enddatetime: '2019-03-21T06:00:00', + location: 'fluc + fluc wanne', slug: 'down-mit-love-foundation-and-gaz', hero_background_color: null, - hubs: [405], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1873, artist_name: 'Mattmosphere', - image: 'd355b5dd-d762-40f5-bfe7-207743321c71', slug: 'mattmosphere' } }, { artists_id: { + id: 2033, artist_name: 'Tony Casanova', - image: 'c1238614-8697-4678-8a4b-e86d6a190910', slug: 'tony-casanova' } }, { artists_id: { + id: 2034, artist_name: "Käpt'n 12 & Düsentrieb", - image: '6193011d-4b31-4ae8-a461-bd0899f07679', slug: 'kaptn-12-and-dusentrieb' } }, { artists_id: { + id: 2023, artist_name: 'Schnuppo', - image: '41f9c513-2eaf-4b65-b893-68648c598bbc', slug: 'schnuppo' } }, { artists_id: { + id: 2040, artist_name: 'Lenia', - image: '0550d7d0-e061-4fdd-adec-27767042c7da', slug: 'lenia' } }, { artists_id: { + id: 2041, artist_name: 'DJ Narok', - image: '8ef22b7c-37c2-4c3b-b426-5a46e64785f5', slug: 'dj-narok' } }, - { - artists_id: { - artist_name: 'IllRakete', - image: null, - slug: 'illrakete' - } - }, - { - artists_id: { - artist_name: 'Murmel', - image: null, - slug: 'murmel' - } - }, - { - artists_id: { - artist_name: 'Al_paca', - image: null, - slug: 'al_paca' - } - } + { artists_id: { id: 2042, artist_name: 'IllRakete', image: null, slug: 'illrakete' } }, + { artists_id: { id: 2043, artist_name: 'Murmel', image: null, slug: 'murmel' } }, + { artists_id: { id: 2044, artist_name: 'Al_paca', image: null, slug: 'al_paca' } } ] }, { id: 341, name: 'A Film Night Full of-Community', - poster: 'a4582f36-4467-408a-b8b7-adada642f214', event_type: 'film night', startdatetime: '2019-02-21T19:00:00', enddatetime: '2019-02-21T22:00:00', + location: 'Kalasch&', slug: 'a-film-night-full-of-community', hero_background_color: null, - hubs: [302], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2291, artist_name: 'Harriet Davey', - image: '3079ef5f-4d68-49c8-a9b9-bb878f95a6dd', slug: 'harriet-davey' } }, { artists_id: { + id: 2292, artist_name: 'Katy Wang', - image: '4bdbbaf3-cc28-4333-8e7d-ad2d9a566f89', slug: 'katy-wang' } }, { artists_id: { + id: 2277, artist_name: 'Lucas Sinka Concee', - image: '5a53c444-b469-41a1-b6fc-8ecf08538e50', slug: 'lucas-sinka-concee' } }, { artists_id: { + id: 2293, artist_name: 'Marc Meier', - image: '30824687-b897-4d8b-9ac4-6242dae0e8ac', slug: 'marc-meier' } }, { artists_id: { + id: 2294, artist_name: 'Fredrik Lund-Hansen', image: null, slug: 'fredrik-lund-hansen' @@ -5376,20 +5054,21 @@ export default { }, { artists_id: { + id: 2295, artist_name: 'Kevin McGloughlin', - image: '6207b8c6-c7d8-47b2-9aba-db01980f77e0', slug: 'kevin-mcgloughlin' } }, { artists_id: { + id: 2296, artist_name: 'Tim Ellrich', - image: '8fe71dc1-afe9-4f3d-9e94-5e3888a76052', slug: 'tim-ellrich' } }, { artists_id: { + id: 2297, artist_name: 'Deborah M. Gordon', image: null, slug: 'deborah-m-gordon' @@ -5397,15 +5076,15 @@ export default { }, { artists_id: { + id: 2298, artist_name: 'Dan Taberski', - image: 'd4cc5546-257f-409c-b2dc-25814171f3b7', slug: 'dan-taberski' } }, { artists_id: { + id: 2299, artist_name: 'Kirsten Lepore', - image: 'c981ca0a-5097-401b-9bdc-bf9526a335d3', slug: 'kirsten-lepore' } } @@ -5414,32 +5093,32 @@ export default { { id: 442, name: 'Love Celebration', - poster: '31f84fda-d6e6-40bb-8524-06e26b42b136', event_type: 'party', startdatetime: '2019-02-14T23:00:00', enddatetime: '2019-02-15T05:00:00', + location: 'Bonnefooi Brussels', slug: 'love-celebration', hero_background_color: null, - hubs: [345], + hubs: [{ hubs_id: { city: 'Brussels' } }], artists: [ { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } }, { artists_id: { + id: 1871, artist_name: 'Rafael Aragon', - image: '4e84b522-7263-4d54-94b7-8b564d1a25e3', slug: 'rafael-aragon' } }, { artists_id: { + id: 2035, artist_name: 'THDS', - image: '08aeb728-d364-4a67-9a51-e58da286311c', slug: 'thds' } } @@ -5448,16 +5127,17 @@ export default { { id: 343, name: 'Love and Activism', - poster: '373f9004-7082-4a58-a31e-3cefcbca13f1', event_type: 'conference', startdatetime: '2019-02-14T20:00:00', enddatetime: '2019-02-14T23:00:00', + location: 'Brauni 51/53', slug: 'love-and-activism', hero_background_color: null, - hubs: [305], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2232, artist_name: 'Pablo Charlemoine', image: null, slug: 'pablo-charlemoine' @@ -5468,60 +5148,60 @@ export default { { id: 470, name: "Ravin' Ravin' 2019", - poster: '34b7e73c-7aa5-41f5-9393-b6b51e3a4892', event_type: 'other', startdatetime: '2019-01-26T23:00:00', enddatetime: '2019-01-27T18:00:00', + location: 'Sektor Evolution', slug: 'ravin-ravin-2019', hero_background_color: null, - hubs: [372], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', slug: 'saphear' } }, { artists_id: { + id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', slug: 'casio' } }, { artists_id: { + id: 2048, artist_name: 'Schlicke & Schlacke', - image: '1b69b841-2826-4f51-9406-a4d54a06d9f7', slug: 'schlicke-and-schlacke' } }, { artists_id: { + id: 2087, artist_name: 'sourton', - image: 'a6b231e4-ff76-402c-b312-70b30601a758', slug: 'sourton' } }, { artists_id: { + id: 2100, artist_name: 'Frida Darko', - image: '498034b7-ade8-4930-b5d6-b0c1da1bb49a', slug: 'frida-darko' } }, { artists_id: { + id: 2116, artist_name: 'Ostbam', - image: 'd23b7a70-ae3d-4e1b-99de-0180bbfe6fa9', slug: 'ostbam' } }, { artists_id: { + id: 1851, artist_name: 'feinheitsbrei', - image: 'dbc83392-ede5-4494-894b-0f23bbabf9a2', slug: 'feinheitsbrei' } } @@ -5530,136 +5210,120 @@ export default { { id: 334, name: 'Love Circus', - poster: '1961ee3a-2e50-45cf-af72-a7cdd835c528', event_type: 'storytelling', startdatetime: '2019-01-18T20:00:00', enddatetime: '1970-01-01T00:00:00', + location: + 'Workship, De Ceuvel\r\nKorte Papaverweg 6c, \r\n1032 KB \r\nAmsterdam, Netherlands', slug: 'love-circus-2', hero_background_color: null, - hubs: [296], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 2269, artist_name: 'Masha Bronnikova', - image: 'e2aeb562-3337-4ee8-b450-95dde426b839', slug: 'masha-bronnikova' } }, + { artists_id: { id: 2270, artist_name: 'Pippi Raad', image: null, slug: 'pippi-raad' } }, { artists_id: { - artist_name: 'Pippi Raad', - image: null, - slug: 'pippi-raad' - } - }, - { - artists_id: { + id: 2271, artist_name: 'Guy Galloway', - image: 'c231b197-b3b4-425b-8f55-e1c599f2d232', slug: 'guy-galloway' } }, { artists_id: { + id: 2272, artist_name: 'Gerard van Soelen', - image: 'e042a176-5a91-4caa-a8b4-13fda1704027', slug: 'gerard-van-soelen' } }, { artists_id: { + id: 2273, artist_name: 'Stanislav Nikolov', - image: '59d91a8a-5d01-4c88-8277-0f1d0fdd49d1', slug: 'stanislav-nikolov' } }, { artists_id: { + id: 2274, artist_name: 'Alexander ten Cate', image: null, slug: 'alexander-ten-cate' } }, - { - artists_id: { - artist_name: 'Lisa Dupuy', - image: null, - slug: 'lisa-dupuy' - } - }, - { - artists_id: { - artist_name: 'Anna-Liisa', - image: null, - slug: 'anna-liisa' - } - } + { artists_id: { id: 2275, artist_name: 'Lisa Dupuy', image: null, slug: 'lisa-dupuy' } }, + { artists_id: { id: 2276, artist_name: 'Anna-Liisa', image: null, slug: 'anna-liisa' } } ] }, { id: 336, name: 'Love Meier', - poster: 'f505fe72-1280-4faa-9bfd-157215a737ee', event_type: 'party', startdatetime: '2019-01-11T23:59:00', enddatetime: '2019-01-12T12:00:00', + location: 'Mensch Meier', slug: 'love-meier', hero_background_color: null, - hubs: [298], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1817, artist_name: 'KATKA', - image: 'e143cd17-546c-4269-96c4-66c1d0ff92b6', slug: 'katka' } }, { artists_id: { + id: 1846, artist_name: 'Xynia', - image: '45ce8d85-ae56-4d46-8780-ce3498b942bc', slug: 'xynia' } }, { artists_id: { + id: 1915, artist_name: 'Apocapoc', - image: 'a710691e-e809-4d1c-86e6-b56d45598700', slug: 'apocapoc' } }, { artists_id: { + id: 1930, artist_name: 'Judith van Waterkant', - image: '3cccdc82-746b-45b9-83f2-7fed69ec4bab', slug: 'judith-van-waterkant' } }, { artists_id: { + id: 1942, artist_name: 'Carolain Luf', - image: '2642e35f-ea8f-4030-a81d-442eb86c7a56', slug: 'carolain-luf' } }, { artists_id: { + id: 1943, artist_name: 'Danielle Arielli', - image: '0c0e3834-adf6-4090-95a9-da89b31647e6', slug: 'danielle-arielli' } }, { artists_id: { + id: 1944, artist_name: 'Doob', - image: '1920f27f-71c5-4723-9bff-6e0ea77fcdee', slug: 'doob' } }, { artists_id: { + id: 1945, artist_name: 'Gottlieb Scheppert', - image: '62f49661-5048-4921-b94c-9cdb4b81e750', slug: 'gottlieb-scheppert' } } @@ -5668,65 +5332,66 @@ export default { { id: 333, name: 'A Film Night Full of-Water', - poster: 'b35355b0-f73e-4533-be56-cfc41ed359a1', event_type: 'film night', startdatetime: '2018-12-12T19:00:00', enddatetime: '2018-12-12T22:00:00', + location: 'Kallasch& - Moabiter Barprojekt\r\nUnionstr. 2, 10551 Berlin', slug: 'a-film-night-full-of-water', hero_background_color: null, - hubs: [295], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2215, artist_name: 'Yann Arthus-Bertrand', - image: 'e702abe5-1124-4b3d-959a-8dc3848d5b09', slug: 'yann-arthus-bertrand' } }, { artists_id: { + id: 2216, artist_name: 'Saffron Ardern-Sodje', - image: 'f66f8eba-5ccb-4219-8a6a-1dd9622dc7d4', slug: 'saffron-ardern-sodje' } }, { artists_id: { + id: 2217, artist_name: 'Nevidimye', - image: '740554cd-069e-47c8-b2d1-574958e44dc2', slug: 'nevidimye' } }, { artists_id: { + id: 2218, artist_name: 'Vandana Shiva', - image: '8c6c0c08-df59-4e36-b1de-21be3b0df562', slug: 'vandana-shiva' } }, { artists_id: { + id: 2219, artist_name: 'George Warren & Leuan Lewis', - image: 'f3478cdc-6343-4820-85f2-195f2c35eb52', slug: 'george-warren-and-leuan-lewis' } }, { artists_id: { + id: 2220, artist_name: 'Julian Glander', - image: '9fe1cce3-c4f2-43cd-b402-3a4544fff469', slug: 'julian-glander' } }, { artists_id: { + id: 2221, artist_name: 'Brian Schulz', - image: '045951ce-78b5-46dd-bfab-1cff1da56572', slug: 'brian-schulz' } }, { artists_id: { + id: 2222, artist_name: 'Nathan Campbell', image: null, slug: 'nathan-campbell' @@ -5734,62 +5399,44 @@ export default { }, { artists_id: { + id: 2223, artist_name: 'Gold Panda', - image: '059fcfcf-5261-4f7e-a582-bcf74db46641', slug: 'gold-panda' } }, { artists_id: { + id: 2224, artist_name: 'Lydia Reid', - image: 'c111053c-f61d-4388-b6bd-95ba4b526219', slug: 'lydia-reid' } }, { artists_id: { + id: 2225, artist_name: 'Harrison Ford', - image: '1d0a7b8f-39e7-455d-87c7-cc8302be4231', slug: 'harrison-ford' } }, + { artists_id: { id: 2226, artist_name: 'Mischa Dels', image: null, slug: 'mischa-dels' } }, { - artists_id: { - artist_name: 'Mischa Dels', - image: null, - slug: 'mischa-dels' - } - }, - { - artists_id: { - artist_name: 'Andrea Lupono', - image: null, - slug: 'andrea-lupono' - } - }, - { - artists_id: { - artist_name: 'Jeris Ivens', - image: null, - slug: 'jeris-ivens' - } + artists_id: { id: 2227, artist_name: 'Andrea Lupono', image: null, slug: 'andrea-lupono' } }, + { artists_id: { id: 2228, artist_name: 'Jeris Ivens', image: null, slug: 'jeris-ivens' } }, { artists_id: { + id: 2229, artist_name: 'Moritz COOL Buschbeck', image: null, slug: 'moritz-cool-buschbeck' } }, { - artists_id: { - artist_name: 'Julia Tudisco', - image: null, - slug: 'julia-tudisco' - } + artists_id: { id: 2230, artist_name: 'Julia Tudisco', image: null, slug: 'julia-tudisco' } }, { artists_id: { + id: 2231, artist_name: 'Katariin Mudist', image: null, slug: 'katariin-mudist' @@ -5800,32 +5447,32 @@ export default { { id: 460, name: 'Thursdaze w. Love Foundation', - poster: 'a0f0bc94-1e74-4a5b-851e-e0bd24e2d22d', event_type: 'party', startdatetime: '2018-11-15T23:00:00', enddatetime: '2018-11-16T05:00:00', + location: 'TBA Club', slug: 'thursdaze-w-love-foundation', hero_background_color: null, - hubs: [374], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2087, artist_name: 'sourton', - image: 'a6b231e4-ff76-402c-b312-70b30601a758', slug: 'sourton' } }, { artists_id: { + id: 2088, artist_name: 'flooke', - image: '98056647-0066-474b-ab5e-d30a6e8d50fd', slug: 'flooke' } }, { artists_id: { + id: 2089, artist_name: 'Habiri', - image: '9cff5132-a74c-48f5-aec4-f46d56ba9178', slug: 'habiri' } } @@ -5834,98 +5481,98 @@ export default { { id: 332, name: 'LoveMag | 1st issue launch', - poster: '27d1ee8e-ee22-4659-a50c-a4ea941ef2d1', event_type: null, startdatetime: '2018-11-15T19:00:00', enddatetime: '1970-01-01T00:00:00', + location: "Butcher's Tears\r\nKarperweg 45\r\n1075LB\r\nAmsterdam\r\nThe Netherlands", slug: 'lovemag-1st-issue-launch', hero_background_color: null, - hubs: [294], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [] }, { id: 448, name: 'Love Foundation X Pop-Up Atelier Vol. II', - poster: '780873ab-19ca-4d7f-99a1-52f1e77711bd', event_type: 'workshop', startdatetime: '2018-11-10T15:00:00', enddatetime: '2018-11-10T23:00:00', + location: 'Bourgognestraat 32, Maastricht', slug: 'love-foundation-x-pop-up-atelier-vol-ii', hero_background_color: null, - hubs: [350], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 449, name: 'LF Community Gathering Afterparty', - poster: '2d95c4f5-e1f3-4503-866a-531a355f6b05', event_type: 'party', startdatetime: '2018-10-23T22:00:00', enddatetime: '2018-10-24T05:00:00', + location: 'AZ Conni, Dresden', slug: 'lf-community-gathering-afterparty', hero_background_color: null, - hubs: [351, 352], + hubs: [{ hubs_id: { city: 'Dresden' } }, { hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', slug: 'zodya' } }, { artists_id: { + id: 1691, artist_name: 'Monsieur Mango', - image: '006e638d-1a1f-43ce-96d7-7b23f080f36b', slug: 'monsieur-mango' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1991, artist_name: 'Dorian Fecht', - image: 'b4e7d3ff-f2f0-41bf-bade-bf901e4c6d50', slug: 'dorian-fecht' } }, { artists_id: { + id: 1820, artist_name: 'Raulito Wolf', - image: 'e811b49c-1ad1-490d-9746-ca512f8e8f8d', slug: 'raulito-wolf' } }, { artists_id: { + id: 1851, artist_name: 'feinheitsbrei', - image: 'dbc83392-ede5-4494-894b-0f23bbabf9a2', slug: 'feinheitsbrei' } }, { artists_id: { + id: 2047, artist_name: 'Absolutes Tanzgebot', - image: 'fbecfa2e-fa4a-4541-a1c3-b0c56565361e', slug: 'absolutes-tanzgebot' } }, { artists_id: { + id: 1701, artist_name: 'Viellaroue', - image: '660a2595-f5ba-43c7-9333-324d62a53acc', slug: 'viellaroue' } }, { artists_id: { + id: 2048, artist_name: 'Schlicke & Schlacke', - image: '1b69b841-2826-4f51-9406-a4d54a06d9f7', slug: 'schlicke-and-schlacke' } } @@ -5934,315 +5581,315 @@ export default { { id: 340, name: 'Second Global Community Gathering 2018', - poster: 'e42df687-b266-4991-96fc-a9aaffc78048', event_type: 'GCG', startdatetime: '2018-10-12T10:00:00', enddatetime: '2018-10-14T00:00:00', + location: 'AZ Conni, Dresden', slug: 'second-global-community-gathering-2018', hero_background_color: null, - hubs: [303, 384], + hubs: [{ hubs_id: { city: 'Global' } }, { hubs_id: { city: 'Dresden' } }], artists: [] }, { id: 337, name: 'Love Foundation: a first date', - poster: '6990380f-6ca7-4eca-a819-ccb849f8f607', event_type: 'party', startdatetime: '2018-09-20T20:00:00', enddatetime: '2018-09-21T01:00:00', + location: 'De Ruimte\r\nDistelweg 83, 1031HD \r\nAmsterdam, Netherlands', slug: 'love-foundation-a-first-date', hero_background_color: null, - hubs: [299], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [] }, { id: 324, name: 'The Art Of Loving - Second Edition', - poster: '638a2502-30e0-45b6-a9ad-c750079eae57', event_type: 'festival', startdatetime: '2018-07-13T23:59:00', enddatetime: '2018-07-14T12:00:00', + location: 'Mensch Meier\r\nStorkower Str. 121\r\n10407 Berlin', slug: 'the-art-of-loving-second-edition', hero_background_color: null, - hubs: [286], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1912, artist_name: 'ALUNA', - image: '84c75ecd-335c-4eff-8e62-841f59e46f11', slug: 'aluna' } }, { artists_id: { + id: 2008, artist_name: 'A.D.H.S.', - image: '5dabd9b3-fc92-41ce-9c58-5f889333fe44', slug: 'adhs' } }, { artists_id: { + id: 1924, artist_name: 'Alizarina', - image: '83a1b58a-0951-4ecd-ae6a-9f26b30ce388', slug: 'alizarina' } }, { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 1927, artist_name: 'Álvaro Suárez', - image: '7e1681c5-d392-4634-86d9-d90ff0f5d78b', slug: 'alvaro-suarez' } }, { artists_id: { + id: 1754, artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', slug: 'anton-feine' } }, { artists_id: { + id: 1915, artist_name: 'Apocapoc', - image: 'a710691e-e809-4d1c-86e6-b56d45598700', slug: 'apocapoc' } }, { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1827, artist_name: 'Bonjour Ben', - image: '6a00926f-541e-4f34-8858-b5adbc800e3e', slug: 'bonjour-ben' } }, { artists_id: { + id: 1918, artist_name: 'BirdzZie', - image: '42a3f41c-f6a2-4f8b-a345-1f70336145ca', slug: 'birdzzie' } }, { artists_id: { + id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', slug: 'casio' } }, { artists_id: { + id: 1917, artist_name: 'Cigarra', - image: '64f98d0b-f895-41be-8d37-aa6ff1c5b78e', slug: 'cigarra' } }, { artists_id: { + id: 1928, artist_name: 'Maria Die RUHE', - image: '9ad18940-49f6-4d25-9d0a-ded7203671f8', slug: 'maria-die-ruhe' } }, { artists_id: { + id: 1984, artist_name: 'FunKamel', - image: '69624c7a-d185-4575-8e11-dfb0b1fa3d25', slug: 'funkamel' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } }, { artists_id: { + id: 1920, artist_name: 'IntiNahual', - image: '9541004d-2e10-425c-abdf-aa28510c53fb', slug: 'intinahual' } }, { artists_id: { + id: 1922, artist_name: 'JAÇIRA ', - image: '2fd18cfa-e7a0-4dfa-be30-2534baacbbb5', slug: 'jacira' } }, { artists_id: { + id: 1816, artist_name: 'Kahl & Kæmena', - image: 'deea67cd-77f6-4da1-81ca-fbc59729ea77', slug: 'kahl-kaemena' } }, { artists_id: { + id: 1921, artist_name: 'Kurup ', - image: 'f8075b47-21df-4de4-a329-172b37c9fde0', slug: 'kurup' } }, { artists_id: { + id: 1863, artist_name: 'Luana Schwengber', - image: '2044e067-2da8-4b22-81bd-22a5c0e3a025', slug: 'luana-schwengber' } }, { artists_id: { + id: 1762, artist_name: 'Marcel Puntheller', - image: '75264d00-d6b2-4d6d-986a-39e7ab062d6c', slug: 'marcel-puntheller' } }, { artists_id: { + id: 1911, artist_name: 'Marco Tegui', - image: '5a97fe97-5059-4435-a0b1-0c22f93e1e92', slug: 'marco-tegui' } }, { artists_id: { + id: 1925, artist_name: 'Motomenja', - image: '8ecd5970-05ee-4c31-a015-aa0573686ae4', slug: 'motomenja' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1919, artist_name: 'Ramona Wouters', - image: '75d2c9c2-c5d2-447f-8ba4-4e884387edad', slug: 'ramona-wouters' } }, { artists_id: { + id: 1875, artist_name: 'Rhizomatique', - image: 'cdf6c6ef-50b5-40be-9526-4578c6c0fece', slug: 'rhizomatique' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1923, artist_name: 'SODA KIDS', - image: '3bcb3712-f46a-40cb-9d5c-8e4b1be74bd2', slug: 'soda-kids' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1688, artist_name: 'Temperini', - image: '298e61f4-3af9-424b-9ff2-6166002a3b06', slug: 'temperini' } }, { artists_id: { + id: 1782, artist_name: 'Tuğçe', - image: '93774389-c24e-45d7-8277-1e5eadcd0758', slug: 'tugce' } }, { artists_id: { + id: 1916, artist_name: 'Troja', - image: '3a81d323-2cf7-4e97-b4ae-4b262b90ee37', slug: 'troja' } }, { artists_id: { + id: 1732, artist_name: 'Viktor', - image: 'bd698384-58b6-48bd-823d-ba236a864c94', slug: 'viktor' } }, { artists_id: { + id: 1929, artist_name: 'Yanakuna', - image: '24ef067f-f667-4983-b908-cad52503a5a8', slug: 'yanakuna' } }, { artists_id: { + id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', slug: 'zodya' } }, { artists_id: { + id: 2049, artist_name: 'Labluxz_', - image: '7a02c912-eb92-4ffe-a5de-8939977fd113', slug: 'labluxz_' } }, { artists_id: { + id: 2050, artist_name: 'Alma Linda', - image: '97d19e65-d7bf-486f-91ea-6a464ae3d10d', slug: 'alma-linda' } }, { artists_id: { + id: 2051, artist_name: 'Emorine', - image: '30fd6800-d3f7-46b6-aaec-05863630ec99', slug: 'emorine' } }, { artists_id: { + id: 2052, artist_name: 'V-NYC', - image: '14eba3a3-f242-4170-9051-36c8fc7c2020', slug: 'v-nyc' } }, { artists_id: { + id: 2053, artist_name: 'Xique-Xique music', - image: '1dfcf320-d5d3-439d-867e-548ed00279ff', slug: 'xique-xique-music' } } @@ -6251,39 +5898,33 @@ export default { { id: 444, name: 'Love is in the Air // Love Foundation x Triple M', - poster: '49d8f23d-0539-4339-9b1c-19a86d79066f', event_type: 'party', startdatetime: '2018-06-09T15:00:00', enddatetime: '2018-06-09T23:00:00', + location: 'Secret Location', slug: 'love-is-in-the-air-love-foundation-x-triple-m', hero_background_color: null, - hubs: [347], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1873, artist_name: 'Mattmosphere', - image: 'd355b5dd-d762-40f5-bfe7-207743321c71', slug: 'mattmosphere' } }, { artists_id: { + id: 1948, artist_name: 'Warte:mal', - image: 'adc3459b-8927-441f-a785-7340478ed1bd', slug: 'wartemal' } }, + { artists_id: { id: 2032, artist_name: 'Julie', image: null, slug: 'julie' } }, { artists_id: { - artist_name: 'Julie', - image: null, - slug: 'julie' - } - }, - { - artists_id: { + id: 1732, artist_name: 'Viktor', - image: 'bd698384-58b6-48bd-823d-ba236a864c94', slug: 'viktor' } } @@ -6292,44 +5933,44 @@ export default { { id: 459, name: 'Love Foundation goes Dies Academicus', - poster: 'a4d7ae42-1ae8-463e-a76c-ba6172b85866', event_type: null, startdatetime: '2018-06-06T11:00:00', enddatetime: '2018-06-06T15:00:00', + location: 'Dresden', slug: 'love-foundation-goes-dies-academicus', hero_background_color: null, - hubs: [375], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [] }, { id: 450, name: 'Floßbrvch - Viva con Agua & Love Foundation Afterparty', - poster: '8ca8382a-f614-4c4f-83bd-4aa9a03a97fa', event_type: 'party', startdatetime: '2018-06-02T23:00:00', enddatetime: '2018-06-03T07:00:00', + location: 'Stilbrvch, Göttingen', slug: 'flossbrvch-viva-con-agua-and-love-foundation-afterparty', hero_background_color: null, - hubs: [353], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1762, artist_name: 'Marcel Puntheller', - image: '75264d00-d6b2-4d6d-986a-39e7ab062d6c', slug: 'marcel-puntheller' } }, { artists_id: { + id: 2065, artist_name: 'Muende', - image: '1b387a7d-5cd7-4cbe-9935-181c4d3f6475', slug: 'muende' } } @@ -6338,32 +5979,32 @@ export default { { id: 329, name: 'Love Conference', - poster: '1009b457-e7ce-4eeb-9b94-ef5cced9abc4', event_type: 'conference', startdatetime: '2018-06-02T12:00:00', enddatetime: '2018-06-03T03:00:00', + location: 'DELITELABS\r\nLinnaeusstraat 2, \r\nLeft of main entrance Tropenmuseum Amsterdam', slug: 'love-conference', hero_background_color: null, - hubs: [291], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1851, artist_name: 'feinheitsbrei', - image: 'dbc83392-ede5-4494-894b-0f23bbabf9a2', slug: 'feinheitsbrei' } }, { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } }, { artists_id: { + id: 1792, artist_name: 'Luca Musto', - image: 'f789f9cb-6863-49ad-81dc-0fefee2a1dee', slug: 'luca-musto' } } @@ -6372,18 +6013,18 @@ export default { { id: 452, name: 'Love for Sale', - poster: '88c70166-9289-4029-8fe6-c3b6c0f40da9', event_type: 'other', startdatetime: '2018-05-20T17:00:00', enddatetime: '2020-05-20T22:00:00', + location: 'The B', slug: 'love-for-sale', hero_background_color: null, - hubs: [356], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 2066, artist_name: 'longvân', - image: 'dee458a5-098f-4642-882f-99f440a47153', slug: 'longvan' } } @@ -6396,54 +6037,55 @@ export default { event_type: 'GCG', startdatetime: '2018-05-10T15:00:00', enddatetime: '2018-05-13T18:00:00', + location: 'Milano', slug: 'global-community-gathering-2018', hero_background_color: null, - hubs: [389, 390], + hubs: [{ hubs_id: { city: 'Global' } }, { hubs_id: { city: 'Milano' } }], artists: [] }, { id: 325, name: 'TBA in Love', - poster: '822bc084-e75d-4d4f-a8e3-313811915716', event_type: 'party', startdatetime: '2018-04-28T23:00:00', enddatetime: '2018-04-29T09:00:00', + location: 'Schlesischer Pl. 1, 01097 Dresden ', slug: 'tba-in-love', hero_background_color: null, - hubs: [287], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1910, artist_name: 'Mehr ist Mehr', - image: '7e33f955-b139-454d-a382-4dd4c384a983', slug: 'mehr-ist-mehr' } }, { artists_id: { + id: 1779, artist_name: 'Vittjas Tief', - image: 'e886e10a-242f-4d01-aa80-ecc852a2e0e7', slug: 'vittjas-tief' } }, { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1701, artist_name: 'Viellaroue', - image: '660a2595-f5ba-43c7-9333-324d62a53acc', slug: 'viellaroue' } } @@ -6452,67 +6094,67 @@ export default { { id: 453, name: 'Hoje! Love Years - 5 Anos de Love Foundation Global', - poster: 'e69cbda3-6795-4e5d-8dd6-5495c32f9e50', event_type: 'party', startdatetime: '2018-04-28T22:00:00', enddatetime: '2018-04-29T07:00:00', + location: 'Trackers, São Paulo, Brazil', slug: 'hoje-love-years-5-anos-de-love-foundation-global', hero_background_color: null, - hubs: [357], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 2067, artist_name: 'ElPeche', - image: 'd6aa7b6e-8330-4083-bec8-b7f6858b3911', slug: 'elpeche' } }, { artists_id: { + id: 2068, artist_name: 'Lady Slama', - image: '761a9e51-6a80-4182-830f-bcb91a5ae293', slug: 'lady-slama' } }, { artists_id: { + id: 2069, artist_name: 'Meraki', - image: 'db66e202-f857-4026-ba50-a76e335688ca', slug: 'meraki' } }, { artists_id: { + id: 2070, artist_name: 'Nikkatze', - image: '4f8bb24c-8b58-43a4-82d9-7f045b352d8e', slug: 'nikkatze' } }, { artists_id: { + id: 2071, artist_name: 's4liv4', - image: '375790ff-addb-4c0c-9429-54ac1714c5e3', slug: 's4liv4' } }, { artists_id: { + id: 2072, artist_name: 'Caleidoscópio Imaginário', - image: '34bfc538-0afd-44f2-9306-4cf1d3864d73', slug: 'caleidoscopio-imaginario' } }, { artists_id: { + id: 2073, artist_name: 'Studio Lagolagoa', - image: '91f9dcde-f7b8-4ec7-9c20-68cc129e9ac2', slug: 'studio-lagolagoa' } } @@ -6521,32 +6163,32 @@ export default { { id: 454, name: 'Rising Love', - poster: '34444b06-44f7-46ae-aae6-dc722d8627c7', event_type: 'party', startdatetime: '2018-04-28T21:00:00', enddatetime: '2018-04-29T04:00:00', + location: 'Beit Hapsanter, Tel Aviv', slug: 'rising-love', hero_background_color: null, - hubs: [358], + hubs: [{ hubs_id: { city: 'Tel Aviv' } }], artists: [ { artists_id: { + id: 1688, artist_name: 'Temperini', - image: '298e61f4-3af9-424b-9ff2-6166002a3b06', slug: 'temperini' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 2074, artist_name: 'Digital Hippies', - image: 'e7fed805-8eb0-4602-8331-75e993965949', slug: 'digital-hippies' } } @@ -6555,32 +6197,32 @@ export default { { id: 326, name: 'Feines Tier in Love', - poster: '590d741c-b5ee-49fc-b981-74e17a14c5bd', event_type: 'party', startdatetime: '2018-04-13T22:00:00', enddatetime: '2018-04-14T08:00:00', + location: '10 min biking from Centraal Station, Amsterdam North', slug: 'feines-tier-in-love', hero_background_color: null, - hubs: [288], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } }, { artists_id: { + id: 1775, artist_name: 'CaptHaddock', - image: '292daf25-fbff-439c-97f7-95d4ebc44854', slug: 'capthaddock' } } @@ -6589,32 +6231,32 @@ export default { { id: 327, name: 'Rosi´s in Love - 5 years Love Foundation', - poster: '44249d81-fa05-4b27-812c-2344b3828e8a', event_type: 'party', startdatetime: '2018-04-13T22:00:00', enddatetime: '2018-04-14T11:00:00', + location: 'Rosis Berlin Revaler Str. 29, 10245 Berlin', slug: 'rosi-s-in-love-5-years-love-foundation', hero_background_color: null, - hubs: [289], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } }, { artists_id: { + id: 1775, artist_name: 'CaptHaddock', - image: '292daf25-fbff-439c-97f7-95d4ebc44854', slug: 'capthaddock' } } @@ -6623,53 +6265,53 @@ export default { { id: 455, name: 'Love Foundation TLV: Spreading the Love', - poster: 'a3f464a5-0501-4038-8a32-52b0136405be', event_type: 'party', startdatetime: '2018-03-10T12:00:00', enddatetime: '2018-03-10T23:59:00', + location: 'Duplex Club, Tel Aviv', slug: 'love-foundation-tlv-spreading-the-love', hero_background_color: null, - hubs: [359], + hubs: [{ hubs_id: { city: 'Tel Aviv' } }], artists: [ { artists_id: { + id: 1746, artist_name: 'Franca', - image: 'f8e07f1d-acc3-4770-9a6f-1b5cc87610da', slug: 'franca' } }, { artists_id: { + id: 1676, artist_name: 'Trippin Jaguar', - image: '78c1b4cb-40c3-4f44-9454-1aac01b753b3', slug: 'trippin-jaguar' } }, { artists_id: { + id: 1983, artist_name: 'Ella Gotman', - image: '3ecc7429-e4ab-45f5-8e4b-700fc1b09c23', slug: 'ella-gotman' } }, { artists_id: { + id: 1984, artist_name: 'FunKamel', - image: '69624c7a-d185-4575-8e11-dfb0b1fa3d25', slug: 'funkamel' } }, { artists_id: { + id: 2075, artist_name: 'DJ Bush Beats', - image: 'abb11561-b748-4298-a5f7-665b13c8f9aa', slug: 'dj-bush-beats' } }, { artists_id: { + id: 2076, artist_name: 'Benji', - image: '7a187717-15f1-40c7-a72e-d15ae80e1f3c', slug: 'benji' } } @@ -6678,32 +6320,32 @@ export default { { id: 330, name: 'Lab in Love', - poster: '44882a7e-ef37-4246-857d-1a05fb3852f4', event_type: 'party', startdatetime: '2018-02-28T21:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'The Lab', slug: 'lab-in-love', hero_background_color: null, - hubs: [292], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 2213, artist_name: 'Realusion', - image: 'cd28aaea-adcc-437d-99ba-91cbb10a086d', slug: 'realusion' } }, { artists_id: { + id: 1902, artist_name: 'Clemens Friedrich', - image: '6eeacefb-be7b-4f02-9624-599f77f6929a', slug: 'clemens-friedrich' } }, { artists_id: { + id: 1901, artist_name: 'Octopus Garden', - image: '371b5123-4d82-4f17-9d13-70ef0b904aee', slug: 'octopus-garden' } } @@ -6712,46 +6354,46 @@ export default { { id: 323, name: 'Symphony of Love', - poster: 'cde25669-892a-4543-8fe7-cf0f1c76a3d3', event_type: 'party', startdatetime: '2018-02-17T21:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Lanbouwbelang', slug: 'symphony-of-love', hero_background_color: null, - hubs: [285], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', slug: 'saphear' } }, { artists_id: { + id: 1754, artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', slug: 'anton-feine' } }, { artists_id: { + id: 1755, artist_name: 'Color your mind', - image: '81338bb5-a1a0-4a43-a521-dc5c2dd7497d', slug: 'color-your-mind' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 2212, artist_name: 'Jonas San', - image: '92cffca3-e308-4ced-8f25-965fe730f568', slug: 'jonas-san' } } @@ -6760,32 +6402,32 @@ export default { { id: 321, name: "Intimate Lovin'", - poster: '467aac2f-e3c2-4686-b187-ea8514e02389', event_type: 'party', startdatetime: '2018-02-16T23:00:00', enddatetime: '2018-02-17T03:00:00', + location: 'De Ruimte\r\nDistelweg 83, \r\n1031HD \r\nAmsterdam, Netherlands', slug: 'intimate-lovin', hero_background_color: null, - hubs: [283], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1784, artist_name: 'Feller', - image: '8fe6d92e-267a-4ee5-949d-4131c21fcb57', slug: 'feller' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', slug: 'saphear' } } @@ -6794,44 +6436,44 @@ export default { { id: 322, name: 'Love is Moving', - poster: 'c7f2d5eb-c40b-4247-9cde-3cc492a4fdcb', event_type: null, startdatetime: '2018-02-10T19:00:00', enddatetime: '2018-02-10T23:00:00', + location: 'Wildenbruchbar Neukölln, Berlin', slug: 'love-is-moving', hero_background_color: null, - hubs: [284], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [] }, { id: 328, name: 'Pop-Up Atelier', - poster: 'dd98cff6-320e-4ac8-80d0-cdf7c2a36494', event_type: null, startdatetime: '2018-02-03T17:00:00', enddatetime: '2018-02-04T00:00:00', + location: 'The B', slug: 'pop-up-atelier', hero_background_color: null, - hubs: [290], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1785, artist_name: 'Saphear', - image: '133ffdfa-630c-4683-ae15-c32823c2fbd5', slug: 'saphear' } }, { artists_id: { + id: 1754, artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', slug: 'anton-feine' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } } @@ -6840,65 +6482,65 @@ export default { { id: 458, name: 'Family Gathering', - poster: 'fec55d72-cddd-4c26-82d4-f36183e553ca', event_type: 'party', startdatetime: '2018-02-03T15:30:00', enddatetime: '1970-01-01T00:00:00', + location: 'Nikkifaktur', slug: 'family-gathering', hero_background_color: null, - hubs: [361], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [] }, { id: 456, name: 'Trip to Love', - poster: '1649d06e-43d3-4679-8d88-5c72bdef03b8', event_type: null, startdatetime: '2018-01-28T15:00:00', enddatetime: '2018-01-28T23:59:00', + location: 'Florianópolis, Brasilien', slug: 'trip-to-love', hero_background_color: null, - hubs: [360], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 2069, artist_name: 'Meraki', - image: 'db66e202-f857-4026-ba50-a76e335688ca', slug: 'meraki' } }, { artists_id: { + id: 1921, artist_name: 'Kurup ', - image: 'f8075b47-21df-4de4-a329-172b37c9fde0', slug: 'kurup' } }, { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 2078, artist_name: 'Gerra G', - image: '3d1f49f9-aab5-468b-a2e9-f7745b24f554', slug: 'gerra-g' } }, { artists_id: { + id: 1987, artist_name: 'Boreal CaMi', - image: '6acf38e6-a7fe-4739-aaa2-0300da419b12', slug: 'boreal-cami' } }, { artists_id: { + id: 2072, artist_name: 'Caleidoscópio Imaginário', - image: '34bfc538-0afd-44f2-9306-4cf1d3864d73', slug: 'caleidoscopio-imaginario' } } @@ -6907,32 +6549,32 @@ export default { { id: 472, name: 'Love Im Brvch', - poster: '4a236bb6-3289-4f90-9873-2d7e9fb648b1', event_type: 'party', startdatetime: '2018-01-27T21:30:00', enddatetime: '2018-01-28T07:00:00', + location: 'Stilbrvch, Göttingen', slug: 'love-im-brvch', hero_background_color: null, - hubs: [363], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } } @@ -6941,60 +6583,60 @@ export default { { id: 473, name: 'Limbo in Love', - poster: '46496607-f219-44e3-9e63-8c871c9c8504', event_type: 'party', startdatetime: '2018-01-26T23:19:00', enddatetime: '2018-01-27T08:00:00', + location: 'SuB, Brasilia', slug: 'limbo-in-love', hero_background_color: null, - hubs: [362], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1917, artist_name: 'Cigarra', - image: '64f98d0b-f895-41be-8d37-aa6ff1c5b78e', slug: 'cigarra' } }, { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 2121, artist_name: 'EXZ', - image: '17e75a16-5e5a-4daa-86e9-8c09ee4dbad8', slug: 'exz' } }, { artists_id: { + id: 1921, artist_name: 'Kurup ', - image: 'f8075b47-21df-4de4-a329-172b37c9fde0', slug: 'kurup' } }, { artists_id: { + id: 2122, artist_name: 'Mariana Perelli', - image: '4fa3c201-a21c-4c8f-963c-5a65cad48f1d', slug: 'mariana-perelli' } }, { artists_id: { + id: 2123, artist_name: 'Cxxju', - image: 'fb3443dc-069e-4594-827c-6a81a121e3ce', slug: 'cxxju' } }, { artists_id: { + id: 2124, artist_name: 'ANRMS', - image: 'eebda1b3-2726-418a-b0dd-987a6b6a1db4', slug: 'anrms' } } @@ -7003,130 +6645,130 @@ export default { { id: 474, name: 'Love Tower', - poster: '90912c21-a251-4795-a2b6-80e574f4b8ce', event_type: null, startdatetime: '2018-01-20T22:15:00', enddatetime: '2018-01-21T07:15:00', + location: 'Trackers, São Paulo', slug: 'love-tower', hero_background_color: null, - hubs: [376], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 2125, artist_name: 'Fata & Morgana', - image: '598c7098-3b28-41c2-a74f-005318b16ea4', slug: 'fata-and-morgana' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1818, artist_name: 'Kotoe', - image: 'd2b294a0-f07d-4f60-9527-c8352e0ee3a8', slug: 'kotoe' } }, { artists_id: { + id: 2069, artist_name: 'Meraki', - image: 'db66e202-f857-4026-ba50-a76e335688ca', slug: 'meraki' } }, { artists_id: { + id: 2067, artist_name: 'ElPeche', - image: 'd6aa7b6e-8330-4083-bec8-b7f6858b3911', slug: 'elpeche' } }, { artists_id: { + id: 2126, artist_name: 'Nutty', - image: 'a5b5238a-32ba-4bec-97df-7edca8626714', slug: 'nutty' } }, { artists_id: { + id: 2121, artist_name: 'EXZ', - image: '17e75a16-5e5a-4daa-86e9-8c09ee4dbad8', slug: 'exz' } }, { artists_id: { + id: 2127, artist_name: 'Entropia-Entalpia', - image: '2abe2d83-9b3b-40c0-a92c-67ee7fd3ce1b', slug: 'entropia-entalpia' } }, { artists_id: { + id: 2070, artist_name: 'Nikkatze', - image: '4f8bb24c-8b58-43a4-82d9-7f045b352d8e', slug: 'nikkatze' } }, { artists_id: { + id: 2128, artist_name: 'Felipe MD', - image: '96bcd1a7-e727-4ed6-9085-2b6e92468ebd', slug: 'felipe-md' } }, { artists_id: { + id: 1917, artist_name: 'Cigarra', - image: '64f98d0b-f895-41be-8d37-aa6ff1c5b78e', slug: 'cigarra' } }, { artists_id: { + id: 1918, artist_name: 'BirdzZie', - image: '42a3f41c-f6a2-4f8b-a345-1f70336145ca', slug: 'birdzzie' } }, { artists_id: { + id: 2129, artist_name: 'Txäi', - image: 'ff8c3117-c04e-496f-a2c2-9f7a7dfefba1', slug: 'txai' } }, { artists_id: { + id: 2130, artist_name: 'DJ Maco Malturo', - image: 'fdc7ce8e-2d78-4bab-98c0-5c8c14c1f89d', slug: 'dj-maco-malturo' } }, { artists_id: { + id: 2131, artist_name: 'DJ MATTA', - image: '9417a513-2a25-4806-b392-a5ab9b5cfda0', slug: 'dj-matta' } }, { artists_id: { + id: 2073, artist_name: 'Studio Lagolagoa', - image: '91f9dcde-f7b8-4ec7-9c20-68cc129e9ac2', slug: 'studio-lagolagoa' } } @@ -7135,37 +6777,33 @@ export default { { id: 315, name: 'Love Circus', - poster: 'ae3742ed-18a7-47ac-807a-19f096c2e6b0', event_type: 'storytelling', startdatetime: '2018-01-20T20:00:00', enddatetime: '2018-01-21T00:00:00', + location: + 'Workship op de Ceuvel\r\nKorte Papaverweg 6c, \r\n1032 KB Amsterdam, \r\nNetherlands', slug: 'love-circus', hero_background_color: null, - hubs: [276], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ + { artists_id: { id: 2279, artist_name: 'Manuel', image: null, slug: 'manuel' } }, { artists_id: { - artist_name: 'Manuel', - image: null, - slug: 'manuel' - } - }, - { - artists_id: { + id: 2280, artist_name: 'Louise Goodger', - image: 'bc3a8b50-23b0-40f0-a051-e815f180e34a', slug: 'louise-goodger' } }, { artists_id: { + id: 2214, artist_name: 'Storyteller Milda', - image: '664ecfde-838e-48e7-b419-0731da72b6d3', slug: 'storyteller-milda' } }, { artists_id: { + id: 2281, artist_name: 'Isabella Paolini', image: null, slug: 'isabella-paolini' @@ -7173,6 +6811,7 @@ export default { }, { artists_id: { + id: 2282, artist_name: 'Ben Louis Oliver', image: null, slug: 'ben-louis-oliver' @@ -7180,6 +6819,7 @@ export default { }, { artists_id: { + id: 2283, artist_name: 'Katja de Groot', image: null, slug: 'katja-de-groot' @@ -7187,22 +6827,22 @@ export default { }, { artists_id: { + id: 2272, artist_name: 'Gerard van Soelen', - image: 'e042a176-5a91-4caa-a8b4-13fda1704027', slug: 'gerard-van-soelen' } }, { artists_id: { + id: 2277, artist_name: 'Lucas Sinka Concee', - image: '5a53c444-b469-41a1-b6fc-8ecf08538e50', slug: 'lucas-sinka-concee' } }, { artists_id: { + id: 1790, artist_name: 'Thommie G', - image: '754b1003-04ef-4dbe-b077-96eddf1024b0', slug: 'thommie-g' } } @@ -7211,67 +6851,67 @@ export default { { id: 475, name: 'Sweetuf in Love', - poster: '960fad1d-a710-4235-a5e8-31d7ed16bf03', event_type: null, startdatetime: '2018-01-19T20:00:00', enddatetime: '2018-01-20T09:00:00', + location: 'Curitiba, Brazil', slug: 'sweetuf-in-love', hero_background_color: null, - hubs: [377], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 2132, artist_name: 'Ágatha a.k.a Agrabah ', - image: '77797bfb-4a57-4f58-b704-252ea842fb96', slug: 'agatha-aka-agrabah' } }, { artists_id: { + id: 2133, artist_name: 'ANTILINE', - image: '6584c7dd-398f-4540-941f-7058dff40003', slug: 'antiline' } }, { artists_id: { + id: 2071, artist_name: 's4liv4', - image: '375790ff-addb-4c0c-9429-54ac1714c5e3', slug: 's4liv4' } }, { artists_id: { + id: 2072, artist_name: 'Caleidoscópio Imaginário', - image: '34bfc538-0afd-44f2-9306-4cf1d3864d73', slug: 'caleidoscopio-imaginario' } }, { artists_id: { + id: 2073, artist_name: 'Studio Lagolagoa', - image: '91f9dcde-f7b8-4ec7-9c20-68cc129e9ac2', slug: 'studio-lagolagoa' } }, { artists_id: { + id: 2134, artist_name: 'PAC', - image: '1b09a75f-1b44-40d5-82a7-389337bda2f6', slug: 'pac' } } @@ -7280,80 +6920,68 @@ export default { { id: 317, name: 'CousCousDiscous', - poster: 'ae0961fe-4777-4026-a8fc-52d9ebece896', event_type: 'party', startdatetime: '2018-01-13T22:00:00', enddatetime: '2018-01-14T05:00:00', + location: 'Pilskiste', slug: 'couscousdiscous', hero_background_color: null, - hubs: [279], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { artists_id: { + id: 1898, artist_name: 'Mild Curry', - image: '6db6065a-0bd0-47e1-9093-33d08e500ab1', slug: 'mild-curry' } }, { artists_id: { + id: 1897, artist_name: 'Pacifico', - image: '2aa99563-4b13-43a6-a13b-0a953beb1cf2', slug: 'pacifico' } }, - { - artists_id: { - artist_name: 'Salamalekker', - image: null, - slug: 'salamalekker' - } - } + { artists_id: { id: 1903, artist_name: 'Salamalekker', image: null, slug: 'salamalekker' } } ] }, { id: 481, name: 'Love Foundation Rio', - poster: '3a3aad8e-a677-458b-a8d2-6f1f932b5563', event_type: 'party', startdatetime: '2018-01-12T23:00:00', enddatetime: '2018-01-13T06:00:00', + location: 'Rio de Janeiro, Brasil', slug: 'love-foundation-rio', hero_background_color: null, - hubs: [380], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, + { artists_id: { id: 2144, artist_name: 'J g b', image: null, slug: 'j-g-b' } }, { artists_id: { - artist_name: 'J g b', - image: null, - slug: 'j-g-b' - } - }, - { - artists_id: { + id: 2145, artist_name: 'Érica', - image: 'd7c48be2-3372-4c9a-8a78-70c37009c6ee', slug: 'erica' } } @@ -7362,39 +6990,39 @@ export default { { id: 342, name: 'Flow Love Gathering', - poster: 'e3baf779-4273-47c9-a827-8f0cee9f95af', event_type: 'party', startdatetime: '2017-12-16T20:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Wildenbruch Bar', slug: 'flow-love-gathering', hero_background_color: null, - hubs: [304], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1947, artist_name: 'Intiche', - image: '8893b1d6-9d30-4c78-a09f-030ed2e4f7c5', slug: 'intiche' } }, { artists_id: { + id: 1948, artist_name: 'Warte:mal', - image: 'adc3459b-8927-441f-a785-7340478ed1bd', slug: 'wartemal' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } }, { artists_id: { + id: 1873, artist_name: 'Mattmosphere', - image: 'd355b5dd-d762-40f5-bfe7-207743321c71', slug: 'mattmosphere' } } @@ -7403,51 +7031,51 @@ export default { { id: 338, name: 'Love Exhibition', - poster: 'a75f34af-e9cd-4bf2-be9e-3d47f190d032', event_type: 'art exhibition', startdatetime: '2017-12-01T16:00:00', enddatetime: '2017-12-01T22:00:00', + location: 'ESCP Europe Berlin Campus', slug: 'love-exhibition', hero_background_color: null, - hubs: [300], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [] }, { id: 482, name: 'Love Foundation Tel Aviv', - poster: '18e56f95-0f6e-4e7c-b52b-7fad9671ea54', event_type: 'party', startdatetime: '2017-11-30T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Pasáž, Tel Aviv', slug: 'love-foundation-tel-aviv', hero_background_color: null, - hubs: [381], + hubs: [{ hubs_id: { city: 'Tel Aviv' } }], artists: [ { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1772, artist_name: 'Kraut', - image: 'e102d0f2-80a8-4d6d-8417-5d3fc5d93fdd', slug: 'kraut' } }, { artists_id: { + id: 1784, artist_name: 'Feller', - image: '8fe6d92e-267a-4ee5-949d-4131c21fcb57', slug: 'feller' } } @@ -7456,46 +7084,46 @@ export default { { id: 320, name: 'NonSense and Love', - poster: '37636405-3808-4297-b5f7-b35ef21a6cbf', event_type: 'party', startdatetime: '2017-11-18T20:00:00', enddatetime: '2017-11-19T03:00:00', + location: 'Tropenmuseum\r\nLinnaeusstraat 2, \r\nAmsterdam, \r\nThe Netherlands', slug: 'nonsense-and-love', hero_background_color: null, - hubs: [282], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1690, artist_name: 'Niju', - image: '712a1137-b068-4e0e-a11b-e80428a4a424', slug: 'niju' } }, { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 1746, artist_name: 'Franca', - image: 'f8e07f1d-acc3-4770-9a6f-1b5cc87610da', slug: 'franca' } }, { artists_id: { + id: 2278, artist_name: 'DYNNO DADA', - image: 'a43aa6d8-8aa1-486a-b70b-cd6f81dc2d02', slug: 'dynno-dada' } } @@ -7504,108 +7132,104 @@ export default { { id: 319, name: 'Give A Shit', - poster: 'fca7cff4-d53c-4bb3-bee3-44e4170a65c7', event_type: 'art exhibition', startdatetime: '2017-11-10T19:00:00', enddatetime: '2017-11-26T00:00:00', + location: 'Dresden', slug: 'give-a-shit', hero_background_color: null, - hubs: [281], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1911, artist_name: 'Marco Tegui', - image: '5a97fe97-5059-4435-a0b1-0c22f93e1e92', slug: 'marco-tegui' } }, { artists_id: { + id: 1936, artist_name: 'Harey', - image: '12ccf863-0779-4d58-ab63-e08539e19597', slug: 'harey' } }, { artists_id: { + id: 1937, artist_name: 'Lotta Sleeps', - image: 'd400f57f-b510-4dd6-8cd0-6eddb854b081', slug: 'lotta-sleeps' } }, { artists_id: { + id: 1938, artist_name: 'Christian Buchmann', - image: '1cfb2e92-94f5-4537-999f-2c6964c9a0b8', slug: 'christian-buchmann' } }, { artists_id: { + id: 1939, artist_name: 'Disaster! Disaster!', - image: 'e1960dee-9803-499f-94e8-c7028bf6c81f', slug: 'disaster-disaster' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } - }, - { - artists_id: { - artist_name: 'Whisky Durado', - image: null, - slug: 'whisky-durado' - } + }, + { + artists_id: { id: 2086, artist_name: 'Whisky Durado', image: null, slug: 'whisky-durado' } } ] }, { id: 318, name: 'Slow Love II', - poster: 'f3f7261c-7273-4a8e-8a1c-6efc418e00c6', event_type: 'party', startdatetime: '2017-11-04T22:00:00', enddatetime: '2017-11-05T00:00:00', + location: 'Pilskiste', slug: 'slow-love-ii', hero_background_color: null, - hubs: [280], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1732, artist_name: 'Viktor', - image: 'bd698384-58b6-48bd-823d-ba236a864c94', slug: 'viktor' } }, { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1688, artist_name: 'Temperini', - image: '298e61f4-3af9-424b-9ff2-6166002a3b06', slug: 'temperini' } }, { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 1907, artist_name: 'Zenoção', - image: '5d857153-958e-408e-a3a1-ef275fe92f97', slug: 'zenocao' } } @@ -7614,53 +7238,53 @@ export default { { id: 331, name: 'Love Tribe Gathering', - poster: '0a1e9291-2b30-44ee-8421-baa5bee49578', event_type: 'party', startdatetime: '2017-10-21T20:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Wildenbruch Bar', slug: 'love-tribe-gathering', hero_background_color: null, - hubs: [293], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1916, artist_name: 'Troja', - image: '3a81d323-2cf7-4e97-b4ae-4b262b90ee37', slug: 'troja' } }, { artists_id: { + id: 1946, artist_name: 'Maywa', - image: '0e2e8211-6867-4491-b918-501ded2d91f3', slug: 'maywa' } }, { artists_id: { + id: 1947, artist_name: 'Intiche', - image: '8893b1d6-9d30-4c78-a09f-030ed2e4f7c5', slug: 'intiche' } }, { artists_id: { + id: 1742, artist_name: 'Steffen Kirchhoff', - image: 'd6abb9f3-b583-4fca-ac83-adf17c3849b7', slug: 'steffen-kirchhoff' } }, { artists_id: { + id: 1754, artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', slug: 'anton-feine' } }, { artists_id: { + id: 1755, artist_name: 'Color your mind', - image: '81338bb5-a1a0-4a43-a521-dc5c2dd7497d', slug: 'color-your-mind' } } @@ -7669,13 +7293,13 @@ export default { { id: 313, name: 'Network Meeting 2017', - poster: 'd2c6ee25-05f5-497a-8016-2a985b3178ad', event_type: 'GCG', startdatetime: '2017-10-06T20:00:00', enddatetime: '2017-10-07T17:00:00', + location: 'University College Maastricht \r\nZwingelput 4, \r\n6211 KH \r\nMaastricht', slug: 'network-meeting-2017', hero_background_color: null, - hubs: [275], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [] }, { @@ -7685,40 +7309,41 @@ export default { event_type: 'GCG', startdatetime: '2017-10-06T18:00:00', enddatetime: '2017-10-08T18:00:00', + location: 'Zwingelput 4, 6211 KH Maastricht, Netherlands', slug: 'second-global-community-gathering-2017', hero_background_color: null, - hubs: [391, 392], + hubs: [{ hubs_id: { city: 'Maastricht' } }, { hubs_id: { city: 'Global' } }], artists: [] }, { id: 335, name: 'Love Family Gathering', - poster: '4e5637ac-17ac-46dd-977d-f9d1159e778e', event_type: 'party', startdatetime: '2017-09-22T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Wildenbruch Bar', slug: 'love-family-gathering', hero_background_color: null, - hubs: [297], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } } @@ -7727,32 +7352,32 @@ export default { { id: 312, name: 'Shamanic Love 3', - poster: '6f80d6a8-1e11-4a4f-9651-bb3cea4dba5a', event_type: 'party', startdatetime: '2017-09-15T20:00:00', enddatetime: '2017-09-16T02:00:00', + location: 'Odessa Amsterdam\r\nVeemkade 259,\r\nAmsterdam', slug: 'shamanic-love-3', hero_background_color: null, - hubs: [274], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1741, artist_name: 'The Shamaniac Movement', - image: 'e967f304-a0d8-467c-98b6-1c7458048c04', slug: 'the-shamaniac-movement' } }, { artists_id: { + id: 1771, artist_name: 'Deep Filip', - image: '2301a5b4-38be-4118-8d33-fedcab6e9cef', slug: 'deep-filip' } }, { artists_id: { + id: 1772, artist_name: 'Kraut', - image: 'e102d0f2-80a8-4d6d-8417-5d3fc5d93fdd', slug: 'kraut' } } @@ -7761,60 +7386,60 @@ export default { { id: 316, name: 'M I L L E R N T O R // Love Foundation x Pilskiste', - poster: 'c23380c5-b69f-4b23-b1b8-2a54b1151a3a', event_type: 'art exhibition', startdatetime: '2017-09-09T22:00:00', enddatetime: '2017-09-10T10:00:00', + location: 'Pilskiste ', slug: 'm-i-l-l-e-r-n-t-o-r-love-foundation-x-pilskiste', hero_background_color: null, - hubs: [277], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1940, artist_name: 'Olaf Stuut', - image: '84ef613c-d52b-4af9-a84e-089b214a9dcf', slug: 'olaf-stuut' } }, { artists_id: { + id: 1941, artist_name: 'Martin Rosie', - image: '526d92c8-0e8f-4830-8afb-1fef93e78dac', slug: 'martin-rosie' } }, { artists_id: { + id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', slug: 'some-chemistry' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { artists_id: { + id: 1908, artist_name: 'Midas 104', - image: 'b469b662-f368-48ce-8bb6-4e153fe2eef8', slug: 'midas-104' } }, { artists_id: { + id: 1909, artist_name: 'Dirrty Dishes', - image: '59cc8447-631a-41be-b0b8-d9ec06704c17', slug: 'dirrty-dishes' } } @@ -7823,67 +7448,67 @@ export default { { id: 310, name: 'Birgit in Love - Freiluftliebe am Schleusenufer', - poster: 'c815b468-8d0d-4f42-92f2-66855fb22194', event_type: 'party', startdatetime: '2017-07-15T10:00:00', enddatetime: '2017-07-15T22:00:00', + location: 'Birgit&Bier\r\nSchleusenufer 3, 10997 Berlin', slug: 'birgit-in-love-freiluftliebe-am-schleusenufer', hero_background_color: null, - hubs: [272], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1771, artist_name: 'Deep Filip', - image: '2301a5b4-38be-4118-8d33-fedcab6e9cef', slug: 'deep-filip' } }, { artists_id: { + id: 1772, artist_name: 'Kraut', - image: 'e102d0f2-80a8-4d6d-8417-5d3fc5d93fdd', slug: 'kraut' } }, { artists_id: { + id: 1741, artist_name: 'The Shamaniac Movement', - image: 'e967f304-a0d8-467c-98b6-1c7458048c04', slug: 'the-shamaniac-movement' } }, { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1891, artist_name: 'BurnTale', - image: 'b069d0ae-cd6a-41f8-8917-aea7b264d6dc', slug: 'burntale' } }, { artists_id: { + id: 1892, artist_name: 'Lotte Ahoi', - image: 'a0acd9e3-9a61-4cf7-9fd0-1a1841803bcd', slug: 'lotte-ahoi' } }, { artists_id: { + id: 1893, artist_name: 'Bonnie Ford', - image: '784167b5-b1da-4981-bf9a-509ec908e427', slug: 'bonnie-ford' } }, { artists_id: { + id: 1894, artist_name: 'Felidae', - image: 'daafccac-6ddb-414c-916c-2c29cd656b43', slug: 'felidae' } } @@ -7892,158 +7517,158 @@ export default { { id: 309, name: 'The Art Of Loving - First Edition', - poster: '5a467396-61a6-437e-8975-c86eb551508c', event_type: 'festival', startdatetime: '2017-06-24T12:00:00', enddatetime: '2017-06-25T00:00:00', + location: 'Secret Location Kreuzberg Berlin', slug: 'the-art-of-loving-first-edition', hero_background_color: null, - hubs: [271], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1757, artist_name: 'Barrio lindo', - image: '212284fc-6eb3-47db-b887-01258e77aa59', slug: 'barrio-lindo' } }, { artists_id: { + id: 1758, artist_name: 'Yør Kultura', - image: 'e53ad330-716d-4260-8b2d-cdb47aee8974', slug: 'yoer-kultura' } }, { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1754, artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', slug: 'anton-feine' } }, { artists_id: { + id: 1755, artist_name: 'Color your mind', - image: '81338bb5-a1a0-4a43-a521-dc5c2dd7497d', slug: 'color-your-mind' } }, { artists_id: { + id: 1759, artist_name: 'Gina Sabatini', - image: '646ddc18-ea5e-43f5-ba68-01755b4f8915', slug: 'gina-sabatini' } }, { artists_id: { + id: 1762, artist_name: 'Marcel Puntheller', - image: '75264d00-d6b2-4d6d-986a-39e7ab062d6c', slug: 'marcel-puntheller' } }, { artists_id: { + id: 1763, artist_name: 'Zodya', - image: '7ea78612-e57e-4bb3-aa0f-f1554a6efb51', slug: 'zodya' } }, { artists_id: { + id: 1777, artist_name: 'Andrevictor', - image: 'ec0e8e04-23ea-4181-b8d6-2231b93da706', slug: 'andrevictor' } }, { artists_id: { + id: 1781, artist_name: 'GiZ', - image: '9828c228-95e0-4b8c-a18a-7b746cc809db', slug: 'giz' } }, { artists_id: { + id: 1816, artist_name: 'Kahl & Kæmena', - image: 'deea67cd-77f6-4da1-81ca-fbc59729ea77', slug: 'kahl-kaemena' } }, { artists_id: { + id: 1827, artist_name: 'Bonjour Ben', - image: '6a00926f-541e-4f34-8858-b5adbc800e3e', slug: 'bonjour-ben' } }, { artists_id: { + id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', slug: 'casio' } }, { artists_id: { + id: 1863, artist_name: 'Luana Schwengber', - image: '2044e067-2da8-4b22-81bd-22a5c0e3a025', slug: 'luana-schwengber' } }, { artists_id: { + id: 1875, artist_name: 'Rhizomatique', - image: 'cdf6c6ef-50b5-40be-9526-4578c6c0fece', slug: 'rhizomatique' } }, { artists_id: { + id: 1896, artist_name: 'Kitti Mimizan', - image: '3278b1c6-23f0-430e-b4bd-0f764833c32a', slug: 'kitti-mimizan' } }, { artists_id: { + id: 1923, artist_name: 'SODA KIDS', - image: '3bcb3712-f46a-40cb-9d5c-8e4b1be74bd2', slug: 'soda-kids' } }, { artists_id: { + id: 1987, artist_name: 'Boreal CaMi', - image: '6acf38e6-a7fe-4739-aaa2-0300da419b12', slug: 'boreal-cami' } } @@ -8052,39 +7677,39 @@ export default { { id: 306, name: 'Shamanic Love 2', - poster: 'a891d7ab-74da-4859-8a57-577eca7cbff9', event_type: 'party', startdatetime: '2017-06-23T20:00:00', enddatetime: '2017-06-24T02:00:00', + location: 'Odessa Amsterdam\r\nVeemkade 259,\r\nAmsterdam', slug: 'shamanic-love-2', hero_background_color: null, - hubs: [268], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 2209, artist_name: 'Pipaluk Universe', - image: 'ccffe0c8-cb94-4e24-98be-701a1b31de6e', slug: 'pipaluk-universe' } }, { artists_id: { + id: 1757, artist_name: 'Barrio lindo', - image: '212284fc-6eb3-47db-b887-01258e77aa59', slug: 'barrio-lindo' } }, { artists_id: { + id: 1758, artist_name: 'Yør Kultura', - image: 'e53ad330-716d-4260-8b2d-cdb47aee8974', slug: 'yoer-kultura' } }, { artists_id: { + id: 1681, artist_name: 'BeatuniQue', - image: '48945b0e-c746-4490-bd1a-46a41ff13722', slug: 'beatunique' } } @@ -8093,30 +7718,31 @@ export default { { id: 457, name: 'Love Foundation X Amoriestammtisch Dresden', - poster: 'b1c27212-eda3-4db4-9581-aceef646f5aa', event_type: 'party', startdatetime: '2017-06-10T22:00:00', enddatetime: '2017-06-11T06:00:00', + location: 'Club Puschkin Dresden', slug: 'love-foundation-x-amoriestammtisch-dresden', hero_background_color: null, - hubs: [402], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1845, artist_name: 'Casio', - image: 'daeef9a2-2db7-42d9-a398-be04c199804a', slug: 'casio' } }, { artists_id: { + id: 2084, artist_name: 'Frau Feuerfell', image: null, slug: 'frau-feuerfell' @@ -8124,8 +7750,8 @@ export default { }, { artists_id: { + id: 2085, artist_name: 'Leon Haller', - image: '7afb13a3-3afd-4ae1-98ad-1eb9c5f1d551', slug: 'leon-haller' } } @@ -8134,241 +7760,241 @@ export default { { id: 305, name: 'Love Foundation Helsinki: First Assembly', - poster: 'f6eaf7fe-4fe4-42af-99c1-6edde66a47b2', event_type: 'party', startdatetime: '2017-06-03T18:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Måndag\r\nSiltasaarenkatu 15, 00530 Helsinki', slug: 'love-foundation-helsinki-first-assembly', hero_background_color: null, - hubs: [317], + hubs: [{ hubs_id: { city: 'Helsinki' } }], artists: [ { artists_id: { + id: 1756, artist_name: 'Kototama', - image: 'bf0d9500-4e22-4562-b778-f28a6008c57b', slug: 'kototama' } }, { artists_id: { + id: 2202, artist_name: 'Laineen Kasperi', - image: 'f934d333-1d1a-4bbd-9749-21eef153561d', slug: 'laineen-kasperi' } }, { artists_id: { + id: 1809, artist_name: 'Ona Kamu', - image: 'dcbc5db9-cc7e-4797-8246-d9e1e3ff0f7f', slug: 'ona-kamu' } }, { artists_id: { + id: 2203, artist_name: 'Jukka Viikilä', - image: '03190a64-cf8f-4217-a218-8aa8321221e7', slug: 'jukka-viikila' } }, { artists_id: { + id: 2204, artist_name: 'Risto Oikarinen', - image: '169b00c3-81b9-4ea6-a9a4-842662831c94', slug: 'risto-oikarinen' } }, { artists_id: { + id: 2205, artist_name: 'Toni Kamula', - image: '7055cb94-92ed-49ed-a67e-cd1867367bdb', slug: 'toni-kamula' } }, { artists_id: { + id: 2206, artist_name: 'Elina Latva', - image: 'e22971c9-53a2-42ab-a324-d81d6f6ee970', slug: 'elina-latva' } }, { artists_id: { + id: 1801, artist_name: 'Kaisa Illukka', - image: '26043402-8abb-4611-a8a0-5fcc6f0c2e8e', slug: 'kaisa-illukka' } }, { artists_id: { + id: 2207, artist_name: 'Lotta Esko', - image: '308b9d8c-3aed-4c02-a597-b900b5604862', slug: 'lotta-esko' } } ] }, - { - id: 314, - name: 'Enter the Love Festival - 100% live music', - poster: '1978ab56-8b7c-4f56-84ff-8e83c6fca0e8', - event_type: 'festival', - startdatetime: '2017-06-03T14:00:00', - enddatetime: '1970-01-01T00:00:00', - slug: 'enter-the-love-festival-100-live-music', - hero_background_color: null, - hubs: [278], - artists: [ - { - artists_id: { - artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', - slug: 'nadav-dagon' - } - }, - { - artists_id: { - artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', - slug: 'anton-feine' - } - }, - { - artists_id: { - artist_name: 'Color your mind', - image: '81338bb5-a1a0-4a43-a521-dc5c2dd7497d', - slug: 'color-your-mind' - } - }, - { - artists_id: { - artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', - slug: 'mahfoud' - } - }, - { - artists_id: { - artist_name: 'Gam̈a͇', - image: '2426daf8-5f72-4c4c-a9bc-b34021b9aabe', - slug: 'gama' - } - } - ] - }, { id: 354, name: 'Love Caravan 2017', - poster: '5b07dfad-0e45-49f6-9dde-0138f5fe2806', event_type: 'party', startdatetime: '2017-06-03T14:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Maastricht, Amsterdam, Berlin, Dresden', slug: 'love-caravan-2017', hero_background_color: null, - hubs: [316], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1754, artist_name: 'Anton Feine', - image: '09e232fa-777d-464a-b655-c50b646c7bed', slug: 'anton-feine' } }, { artists_id: { + id: 1755, artist_name: 'Color your mind', - image: '81338bb5-a1a0-4a43-a521-dc5c2dd7497d', slug: 'color-your-mind' } }, { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { artists_id: { + id: 1732, artist_name: 'Viktor', - image: 'bd698384-58b6-48bd-823d-ba236a864c94', slug: 'viktor' } }, { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 2174, artist_name: 'Villanova', - image: '6838b7fb-8bf1-4d8a-8207-b8110d391ae4', slug: 'villanova' } }, { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1742, artist_name: 'Steffen Kirchhoff', - image: 'd6abb9f3-b583-4fca-ac83-adf17c3849b7', slug: 'steffen-kirchhoff' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } } ] }, + { + id: 314, + name: 'Enter the Love Festival - 100% live music', + event_type: 'festival', + startdatetime: '2017-06-03T14:00:00', + enddatetime: '1970-01-01T00:00:00', + location: 'Secret outdoor location in Amsterdam ', + slug: 'enter-the-love-festival-100-live-music', + hero_background_color: null, + hubs: [{ hubs_id: { city: 'Amsterdam' } }], + artists: [ + { + artists_id: { + id: 1745, + artist_name: 'Nadav Dagon', + slug: 'nadav-dagon' + } + }, + { + artists_id: { + id: 1754, + artist_name: 'Anton Feine', + slug: 'anton-feine' + } + }, + { + artists_id: { + id: 1755, + artist_name: 'Color your mind', + slug: 'color-your-mind' + } + }, + { + artists_id: { + id: 1635, + artist_name: 'Mâhfoud', + slug: 'mahfoud' + } + }, + { + artists_id: { + id: 1753, + artist_name: 'Gam̈a͇', + slug: 'gama' + } + } + ] + }, { id: 483, name: 'Love Ball', - poster: '6e68a5b8-db9f-4bc7-861f-e579883a538c', event_type: 'other', startdatetime: '2017-05-27T14:30:00', enddatetime: '2017-05-27T21:00:00', + location: 'Piazza San Marco, 20121 Milano', slug: 'love-ball', hero_background_color: null, - hubs: [382], + hubs: [{ hubs_id: { city: 'Milano' } }], artists: [] }, { @@ -8378,59 +8004,60 @@ export default { event_type: 'GCG', startdatetime: '2017-05-12T18:00:00', enddatetime: '2017-05-14T18:00:00', + location: 'Café Fincan, Altenbraker Str. 26, 12051 Berlin', slug: 'global-community-gathering-2017', hero_background_color: null, - hubs: [393, 394], + hubs: [{ hubs_id: { city: 'Berlin' } }, { hubs_id: { city: 'Global' } }], artists: [] }, { id: 339, name: 'Network Meeting 2017 Berlin', - poster: '089506be-8aba-4c54-a516-2c351025f0f1', event_type: 'GCG', startdatetime: '2017-05-12T10:00:00', enddatetime: '2017-05-15T00:00:00', + location: 'Cafe Fincan, Berlin', slug: 'network-meeting-2017-berlin', hero_background_color: null, - hubs: [301], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [] }, { id: 308, name: 'Bankjesliefde | Love on Benches', - poster: '5e8bb4f6-40a9-4834-a1cd-4ef3ae96d9a1', event_type: 'festival', startdatetime: '2017-05-06T17:00:00', enddatetime: '2017-05-07T03:00:00', + location: 'Vlla\r\nWillem Roeloofstraat 9\r\n1062JX Amsterdam', slug: 'bankjesliefde-love-on-benches', hero_background_color: null, - hubs: [270], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1751, artist_name: 'Native Response', - image: '71004aeb-7a6f-4daa-a2fd-9c84303ee274', slug: 'native-response' } }, { artists_id: { + id: 1750, artist_name: 'Innellea', - image: '832d8199-cfc8-4c1d-a6fc-e0d6199ec107', slug: 'innellea' } }, { artists_id: { + id: 1667, artist_name: 'Ground Method', - image: '36a1bb3a-b528-4d64-95dd-ffb4b667d18d', slug: 'ground-method' } }, { artists_id: { + id: 1752, artist_name: 'Noah Lyas', - image: '65a09132-60e5-47f1-92f1-a2782dffa01b', slug: 'noah-lyas' } } @@ -8439,32 +8066,32 @@ export default { { id: 311, name: 'Slow Love', - poster: 'ed7a80be-bdf8-4799-909d-e991d6ae1dae', event_type: 'party', startdatetime: '2017-05-04T14:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Pilzkiste', slug: 'slow-love', hero_background_color: null, - hubs: [273], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1639, artist_name: 'Garstique', - image: 'd807d9bd-7ea0-48d8-b3a6-9769f6d362cf', slug: 'garstique' } }, { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } } @@ -8473,32 +8100,32 @@ export default { { id: 300, name: 'Amor Lisboeta', - poster: '45979d66-8558-48ac-b33f-557d7e36ff6b', event_type: 'love excursion', startdatetime: '2017-04-15T21:00:00', enddatetime: '2017-04-16T00:00:00', + location: 'Crew Hassan\r\nRua Andrade, nº 8 A, 1170-015 Lissabon', slug: 'amor-lisboeta', hero_background_color: null, - hubs: [264], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1917, artist_name: 'Cigarra', - image: '64f98d0b-f895-41be-8d37-aa6ff1c5b78e', slug: 'cigarra' } }, { artists_id: { + id: 1918, artist_name: 'BirdzZie', - image: '42a3f41c-f6a2-4f8b-a345-1f70336145ca', slug: 'birdzzie' } }, { artists_id: { + id: 1913, artist_name: 'Peter Power', - image: 'ff3a4b0b-ac0c-4252-a3c9-912245f4fbe6', slug: 'peter-power' } } @@ -8507,25 +8134,25 @@ export default { { id: 307, name: 'Underwater Love 3', - poster: '2ed7ee17-fd95-469f-a533-ad94c2b9f997', event_type: 'party', startdatetime: '2017-04-14T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Spinhuis\r\nSingel 165A\r\n1012 WE Amsterdam\r\n(under the bridge)', slug: 'underwater-love-3', hero_background_color: null, - hubs: [269], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1749, artist_name: 'ENKA', - image: 'ebe99115-0081-4997-824c-0ccc56ea008f', slug: 'enka' } }, { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } } @@ -8534,108 +8161,102 @@ export default { { id: 303, name: 'Späti-Run und Afterparty', - poster: '1c8a5e06-e90c-4bc9-a9b6-474e99ad0cbf', event_type: 'party', startdatetime: '2017-03-22T19:30:00', enddatetime: '2017-03-23T02:00:00', + location: 'Zukunft am Ostkreuz\r\nLaskerstr. 5, 10245 Berlin-Friedrichshain, Berlin, Germany', slug: 'spaeti-run-und-afterparty', hero_background_color: null, - hubs: [266], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1700, artist_name: 'Lurvink', - image: 'd9a4b103-f601-4b4d-bcec-a1c5059e11fb', slug: 'lurvink' } }, { artists_id: { + id: 1710, artist_name: 'Kisser', - image: 'd1b4f3be-e6b0-42bf-9395-e443e64c069f', slug: 'kisser' } }, { artists_id: { + id: 1886, artist_name: 'Midlight Malte', - image: '7c1e91fd-6a91-4cde-a319-2dd68adce5c4', slug: 'midlight-malte' } }, { artists_id: { + id: 1888, artist_name: 'Maserati Janis', - image: 'c9a2c560-248d-4f36-a503-11937ace421e', slug: 'maserati-janis' } }, - { - artists_id: { - artist_name: 'Fohm', - image: null, - slug: 'fohm' - } - } + { artists_id: { id: 1889, artist_name: 'Fohm', image: null, slug: 'fohm' } } ] }, { id: 297, name: 'Shamanic Love', - poster: '5ba4cc5a-f2b0-455f-8486-115984f0e095', event_type: 'party', startdatetime: '2017-03-17T20:00:00', enddatetime: '2017-03-18T02:00:00', + location: 'Odessa Amsterdam\r\nVeemkade 259, \r\nAmsterdam', slug: 'shamanic-love', hero_background_color: null, - hubs: [260], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1742, artist_name: 'Steffen Kirchhoff', - image: 'd6abb9f3-b583-4fca-ac83-adf17c3849b7', slug: 'steffen-kirchhoff' } }, { artists_id: { + id: 1741, artist_name: 'The Shamaniac Movement', - image: 'e967f304-a0d8-467c-98b6-1c7458048c04', slug: 'the-shamaniac-movement' } }, { artists_id: { + id: 1743, artist_name: 'Tante Dante', - image: '9c341066-cb5c-4359-aff2-1c536daefcae', slug: 'tante-dante' } }, { artists_id: { + id: 1681, artist_name: 'BeatuniQue', - image: '48945b0e-c746-4490-bd1a-46a41ff13722', slug: 'beatunique' } }, { artists_id: { + id: 2199, artist_name: 'Michalis Massage and Soundhealing', - image: '0dbd2744-e378-46ae-b201-b0bb8e5ff80f', slug: 'michalis-massage-and-soundhealing' } }, { artists_id: { + id: 2200, artist_name: 'Nomalanga Draws', - image: '0e78b96d-ae9b-40bb-ba4f-a0f4fe72c3c4', slug: 'nomalanga-draws' } }, { artists_id: { + id: 2201, artist_name: 'Prasand', - image: '60732db0-8ee9-498e-9119-ce4f12cf08d0', slug: 'prasand' } } @@ -8644,32 +8265,32 @@ export default { { id: 301, name: "Lekker Lovin' II", - poster: '4fafa4b1-5d9a-4071-83e9-4cedd42a115e', event_type: 'party', startdatetime: '2017-03-16T23:00:00', enddatetime: '2017-03-17T05:00:00', + location: 'Kaleido', slug: 'lekker-lovin-ii', hero_background_color: null, - hubs: [263], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1890, artist_name: 'Ghettohousedrummachine', - image: '2b554f9c-826c-4805-9a05-063b43eda25a', slug: 'ghettohousedrummachine' } }, { artists_id: { + id: 1700, artist_name: 'Lurvink', - image: 'd9a4b103-f601-4b4d-bcec-a1c5059e11fb', slug: 'lurvink' } }, { artists_id: { + id: 1710, artist_name: 'Kisser', - image: 'd1b4f3be-e6b0-42bf-9395-e443e64c069f', slug: 'kisser' } } @@ -8678,39 +8299,39 @@ export default { { id: 296, name: 'Love Tube', - poster: '6344a90b-1a4b-48c2-9555-ac9413e79160', event_type: 'party', startdatetime: '2017-02-22T23:00:00', enddatetime: '2017-02-23T07:00:00', + location: 'Farbfernseher\r\nSkalitzer Straße 114\r\nBerlin', slug: 'love-tube', hero_background_color: null, - hubs: [259], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 2198, artist_name: 'Strip Steve', - image: '441849a2-60d4-4b60-b5e6-8016361214e8', slug: 'strip-steve' } }, { artists_id: { + id: 1738, artist_name: 'Mculo', - image: '8c69615a-3904-4276-80b4-c3b593c98609', slug: 'mculo' } }, { artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } }, { artists_id: { + id: 1710, artist_name: 'Kisser', - image: 'd1b4f3be-e6b0-42bf-9395-e443e64c069f', slug: 'kisser' } } @@ -8719,25 +8340,25 @@ export default { { id: 298, name: 'Kick4Water', - poster: '0750cac0-66c8-4189-bb30-3934a1e8028a', event_type: 'party', startdatetime: '2017-02-18T12:30:00', enddatetime: '1970-01-01T00:00:00', + location: 'UM Sports', slug: 'kick4water', hero_background_color: null, - hubs: [261], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1739, artist_name: 'Aramburu Urubmara', - image: '61008565-34d7-4e5d-8cbe-e2abbd62f021', slug: 'aramburu-urubmara' } }, { artists_id: { + id: 1740, artist_name: 'Outa Rim', - image: '925bc927-bd56-44e7-9b0e-680bb4c4593e', slug: 'outa-rim' } } @@ -8746,25 +8367,25 @@ export default { { id: 299, name: 'Love Room VI', - poster: 'ace99c39-5c44-41a9-8ada-858360318afe', event_type: 'party', startdatetime: '2017-02-11T21:00:00', enddatetime: '2017-02-12T04:00:00', + location: "'t Keldertje", slug: 'love-room-vi', hero_background_color: null, - hubs: [262], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1740, artist_name: 'Outa Rim', - image: '925bc927-bd56-44e7-9b0e-680bb4c4593e', slug: 'outa-rim' } }, { artists_id: { + id: 1739, artist_name: 'Aramburu Urubmara', - image: '61008565-34d7-4e5d-8cbe-e2abbd62f021', slug: 'aramburu-urubmara' } } @@ -8773,39 +8394,39 @@ export default { { id: 302, name: 'Vllove', - poster: 'bcb29d58-819d-431d-83a5-6dbd369e99e0', event_type: 'party', startdatetime: '2017-02-10T22:00:00', enddatetime: '2017-02-11T04:00:00', + location: 'Vlla \r\nWillem Roeloofstraat 9 \r\n1062JX Amsterdam\r\n', slug: 'vllove', hero_background_color: null, - hubs: [265], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1703, artist_name: 'Duze', - image: 'd3d74eb8-1f79-4439-a6c9-d1f455f35ce9', slug: 'duze' } }, { artists_id: { + id: 1744, artist_name: 'Zebra Centauri', - image: 'fd71de79-0332-4fbc-b8f7-161c054f412f', slug: 'zebra-centauri' } }, { artists_id: { + id: 1745, artist_name: 'Nadav Dagon', - image: 'c126918a-b0bc-4a46-93cc-4de7adb7b011', slug: 'nadav-dagon' } }, { artists_id: { + id: 1746, artist_name: 'Franca', - image: 'f8e07f1d-acc3-4770-9a6f-1b5cc87610da', slug: 'franca' } } @@ -8814,32 +8435,32 @@ export default { { id: 294, name: 'Studio Love', - poster: 'aed45db7-5022-407a-9761-3ae07e2ab118', event_type: 'film night', startdatetime: '2017-01-28T10:00:00', enddatetime: '2017-01-29T04:00:00', + location: 'Studio/K, Timorplein 62, 1094 CC Amsterdam', slug: 'studio-love', hero_background_color: null, - hubs: [257], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1734, artist_name: 'Victor Norman', - image: '543ec00c-913c-42fe-b666-d91cec0a868e', slug: 'victor-norman' } }, { artists_id: { + id: 1733, artist_name: 'Michie Walzheimer', - image: '5df2b358-1d26-4a1d-890b-9692a66ac5ea', slug: 'michie-walzheimer' } }, { artists_id: { + id: 1900, artist_name: 'Planty Herbs', - image: 'acf67139-5b37-4650-b93f-74788197c5d8', slug: 'planty-herbs' } } @@ -8848,18 +8469,18 @@ export default { { id: 287, name: 'Sem Água', - poster: '58d951c4-1039-4020-b6a9-37e50f8002d7', event_type: 'love excursion', startdatetime: '2017-01-13T19:00:00', enddatetime: '2017-01-14T02:00:00', + location: 'Sabor k Intende, Rua dos Anjos 5B, 1150-032 Lisbon, Portugal', slug: 'sem-agua', hero_background_color: null, - hubs: [251], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } } @@ -8868,105 +8489,105 @@ export default { { id: 289, name: 'Jugendtanz', - poster: '21edbedd-8125-47e2-923b-2b63bd7d3def', event_type: 'party', startdatetime: '2017-01-05T22:00:00', enddatetime: '2017-01-06T05:00:00', + location: 'Chemiefabrik (Chemo) Dresden ', slug: 'jugendtanz', hero_background_color: null, - hubs: [252], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1701, artist_name: 'Viellaroue', - image: '660a2595-f5ba-43c7-9333-324d62a53acc', slug: 'viellaroue' } }, { artists_id: { + id: 1702, artist_name: 'Karlo', - image: '107708b6-ba78-428e-9b66-1247993abf85', slug: 'karlo' } } ] }, + { + id: 288, + name: 'Kekse & Gemütlich', + event_type: 'storytelling', + startdatetime: '2016-12-16T20:00:00', + enddatetime: '2016-12-17T01:00:00', + location: 'Café Endstation', + slug: 'kekse-gemuetlich', + hero_background_color: null, + hubs: [{ hubs_id: { city: 'Dresden' } }], + artists: [] + }, { id: 207, name: 'Floating Love', - poster: 'cae32694-0075-4c69-9793-a51655a42f6b', event_type: 'party', startdatetime: '2016-12-16T20:00:00', enddatetime: '2016-12-17T02:00:00', + location: 'Odessa\r\nVeemkade 259\r\n1019 CZ Amsterdam,\r\nThe Netherlands', slug: 'floating-love', hero_background_color: null, - hubs: [170], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } } ] }, - { - id: 288, - name: 'Kekse & Gemütlich', - poster: 'f2612815-9671-4501-a51a-74d6f831a399', - event_type: 'storytelling', - startdatetime: '2016-12-16T20:00:00', - enddatetime: '2016-12-17T01:00:00', - slug: 'kekse-gemuetlich', - hero_background_color: null, - hubs: [250], - artists: [] - }, { id: 295, name: 'Abbild Der Liebe Kurzfilmnacht', - poster: '737bdf4e-5fcc-440e-a5c8-d5dcee0cf1c2', event_type: 'film night', startdatetime: '2016-12-15T20:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'KIKI SOL Reinickendorfer Straße 96, 13347 Berlin', slug: 'abbild-der-liebe-kurzfilmnacht', hero_background_color: null, - hubs: [258], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1710, artist_name: 'Kisser', - image: 'd1b4f3be-e6b0-42bf-9395-e443e64c069f', slug: 'kisser' } }, { artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } }, { artists_id: { + id: 1738, artist_name: 'Mculo', - image: '8c69615a-3904-4276-80b4-c3b593c98609', slug: 'mculo' } }, { artists_id: { + id: 2198, artist_name: 'Strip Steve', - image: '441849a2-60d4-4b60-b5e6-8016361214e8', slug: 'strip-steve' } } @@ -8975,39 +8596,39 @@ export default { { id: 293, name: "Lekker Lovin'", - poster: '5cc04841-03df-4e14-9b94-57be6314ffe2', event_type: 'party', startdatetime: '2016-12-06T11:00:00', enddatetime: '2016-12-07T05:00:00', + location: 'Kaleido\r\nMaastricht\r\nThe Netherlands', slug: 'lekker-lovin', hero_background_color: null, - hubs: [256], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1712, artist_name: 'CRVEL', - image: '0f2688b6-f66d-4c6b-a503-38fa7d752059', slug: 'crvel' } }, { artists_id: { + id: 1661, artist_name: 'Analogue Choir Boys', - image: '23136e68-b7c7-434a-8373-180e964ad105', slug: 'analogue-choir-boys' } }, { artists_id: { + id: 1732, artist_name: 'Viktor', - image: 'bd698384-58b6-48bd-823d-ba236a864c94', slug: 'viktor' } }, { artists_id: { + id: 2197, artist_name: 'Taborsky', - image: '003ec8fe-2985-40b2-b798-4fc6024f71a6', slug: 'taborsky' } } @@ -9016,25 +8637,25 @@ export default { { id: 304, name: 'Cornici Culturali', - poster: '7425aae1-11ef-4515-9cea-46cd5d08d581', event_type: 'art exhibition', startdatetime: '2016-12-03T18:00:00', enddatetime: '2016-12-04T00:00:00', + location: 'Allestimenti Portanuova Srl. ', slug: 'cornici-culturali', hero_background_color: null, - hubs: [267], + hubs: [{ hubs_id: { city: 'Milano' } }], artists: [ { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 1749, artist_name: 'ENKA', - image: 'ebe99115-0081-4997-824c-0ccc56ea008f', slug: 'enka' } } @@ -9043,37 +8664,32 @@ export default { { id: 290, name: 'Flow of Love', - poster: '7c3d6d08-aae0-4265-93cd-aabd27469588', event_type: 'GCG', startdatetime: '2016-11-26T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'AZ Conni ', slug: 'flow-of-love', hero_background_color: null, - hubs: [253], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1701, artist_name: 'Viellaroue', - image: '660a2595-f5ba-43c7-9333-324d62a53acc', slug: 'viellaroue' } }, { artists_id: { + id: 1702, artist_name: 'Karlo', - image: '107708b6-ba78-428e-9b66-1247993abf85', slug: 'karlo' } }, + { artists_id: { id: 2082, artist_name: 'Karl Weinl', image: null, slug: 'karl-weinl' } }, { artists_id: { - artist_name: 'Karl Weinl', - image: null, - slug: 'karl-weinl' - } - }, - { - artists_id: { + id: 2083, artist_name: 'Genossene Zeit', image: null, slug: 'genossene-zeit' @@ -9084,25 +8700,25 @@ export default { { id: 212, name: 'Cosmic Love', - poster: '5607ee62-49d4-4a7b-93f0-f5180fbffff7', event_type: 'party', startdatetime: '2016-11-26T20:00:00', enddatetime: '2016-11-27T03:00:00', + location: 'VLLA\r\nWillem Roelofsstraat 9\r\n1062 JX Amsterdam\r\nThe Netherlands', slug: 'cosmic-love', hero_background_color: null, - hubs: [175], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1747, artist_name: 'Aquinox', - image: '73b1d201-a9c7-4111-9bdc-32a0da8a10c6', slug: 'aquinox' } }, { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } } @@ -9111,30 +8727,30 @@ export default { { id: 204, name: 'Landhuis Love III', - poster: 'bf9ad204-fd3d-4b84-9fad-11a16bc205a3', event_type: 'party', startdatetime: '2016-11-19T19:00:00', enddatetime: '2016-11-19T22:00:00', + location: 'Landhuis (LBB)\r\nMaasboulevard, 6211 AH\r\nMaastricht\r\nThe Netherlands', slug: 'landhuis-love-iii', hero_background_color: null, - hubs: [167], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 224, name: 'Finnisage L°Utopia', - poster: '8472375e-8cff-415a-aba9-034db78faaa5', event_type: 'party', startdatetime: '2016-11-18T19:00:00', enddatetime: '2016-11-19T02:00:00', + location: 'Hole Of Fame\r\nKönigsbrücker Str. 39\r\n01097 Dresden\r\nGermany', slug: 'finnisage-l0utopia', hero_background_color: null, - hubs: [187], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 2079, artist_name: 'Cold Cold Nights', - image: 'a754ccb2-6f72-4279-b068-e81522226ebe', slug: 'cold-cold-nights' } } @@ -9143,59 +8759,53 @@ export default { { id: 226, name: 'L°Utopia', - poster: '638e626b-5e9b-4828-b0dd-7f8b127643d9', event_type: 'art exhibition', startdatetime: '2016-11-12T19:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Tennisbar Neukölln, Reuterstraße 9512053 BerlinGermany', slug: 'lutopia-berlin', hero_background_color: null, - hubs: [189], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1692, artist_name: 'Kolect', - image: '1e2738b3-e9ad-4da1-bb55-6f1d14e3da86', slug: 'kolect' } }, { artists_id: { + id: 1886, artist_name: 'Midlight Malte', - image: '7c1e91fd-6a91-4cde-a319-2dd68adce5c4', slug: 'midlight-malte' } }, - { - artists_id: { - artist_name: 'Jesse', - image: null, - slug: 'jesse' - } - } + { artists_id: { id: 1887, artist_name: 'Jesse', image: null, slug: 'jesse' } } ] }, { id: 205, name: 'Blunt Generation', - poster: '81481072-0635-460c-be80-c96d751a827d', event_type: 'art exhibition', startdatetime: '2016-11-11T16:00:00', enddatetime: '2016-11-13T00:00:00', + location: 'Batterijstraat 5\r\n6211 SE Maastricht\r\nThe Netherlands', slug: 'blunt-generation', hero_background_color: null, - hubs: [168], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1700, artist_name: 'Lurvink', - image: 'd9a4b103-f601-4b4d-bcec-a1c5059e11fb', slug: 'lurvink' } }, { artists_id: { + id: 1736, artist_name: 'Tessa', - image: '2c2bfd26-a9d5-4902-a8b4-862a89ed66ad', slug: 'tessa' } } @@ -9204,70 +8814,70 @@ export default { { id: 231, name: 'Tribe Gathering', - poster: '164686a5-7d14-49dc-97db-b005cfbd9271', event_type: 'GCG', startdatetime: '2016-10-14T16:00:00', enddatetime: '2016-10-16T00:00:00', + location: 'Waterhouse, Klaprozenweg 611032 KK AmsterdamThe Netherlands', slug: 'tribe-gathering', hero_background_color: null, - hubs: [194], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [] }, { id: 344, name: 'Network Meeting 2016', - poster: '3e7f6d29-1b34-4bc6-8a95-c1e5cccd3479', event_type: 'GCG', startdatetime: '2016-10-14T10:00:00', enddatetime: '2016-10-16T00:00:00', + location: 'Waterhouse, Amsterdam', slug: 'network-meeting-2016', hero_background_color: null, - hubs: [306], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [] }, { id: 209, name: 'Home Of Love II', - poster: '0f61fb50-ccc7-4458-9e44-1ef2315264f7', event_type: 'party', startdatetime: '2016-10-08T19:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Landboubelang\r\nMaasboulevard, 6211 AH\r\nMaastricht\r\nThe Netherlands', slug: 'home-of-love-ii', hero_background_color: null, - hubs: [172], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1637, artist_name: 'John Wolter', - image: '96e67de2-ca15-4d65-8af7-6439178c133e', slug: 'john-wolter' } }, { artists_id: { + id: 1636, artist_name: 'Josh Oudendijk', - image: '307586e2-c5eb-4e1b-a0f7-c3854d2acb9a', slug: 'josh-oudendijk' } }, { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { artists_id: { + id: 1634, artist_name: 'Somnium (LUX)', - image: '7b67dfad-2323-4f38-8464-37161617af1c', slug: 'somnium-lux' } }, { artists_id: { + id: 1708, artist_name: "The Straw That Broke The Donkey's Back", - image: 'ea558fd3-3a8d-4730-b21b-56943fcd88be', slug: 'the-straw-that-broke-the-donkey-s-back' } } @@ -9276,58 +8886,60 @@ export default { { id: 236, name: 'Sunday Sessions', - poster: '9bc9165b-aa0d-4822-9dc0-bda57f8a0d5c', event_type: 'party', startdatetime: '2016-10-02T18:00:00', enddatetime: '2016-10-03T03:00:00', + location: + 'De Marktkantine\r\nJan van Galenstraat 6\r\n1051 KM Amsterdam\r\nThe Netherlands\r\n', slug: 'sunday-sessions', hero_background_color: null, - hubs: [199], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1638, artist_name: 'Iorie', - image: 'fbdb5dc4-f935-497e-8388-5d620fea0d2d', slug: 'iorie' } }, { artists_id: { + id: 1639, artist_name: 'Garstique', - image: 'd807d9bd-7ea0-48d8-b3a6-9769f6d362cf', slug: 'garstique' } }, { artists_id: { + id: 1640, artist_name: 'Batu Ozer', - image: 'abc01e5e-37e1-4a78-a650-123b6e814489', slug: 'batu-ozer' } }, { artists_id: { + id: 1642, artist_name: 'Kavafoglu', - image: '04e8c3f0-41f2-4ebb-aed2-6ab7b0cf0a21', slug: 'kavafoglu' } }, { artists_id: { + id: 1641, artist_name: 'Pedro Martins', - image: '708e2d10-c586-4f69-98b2-f7018935fe37', slug: 'pedro-martins' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 2169, artist_name: 'Allan Edens Art', image: null, slug: 'allan-edens-art' @@ -9335,29 +8947,29 @@ export default { }, { artists_id: { + id: 2170, artist_name: 'Bastiaan Lipsicus', - image: '562f0bd1-c081-48bc-9b22-8d17461013fa', slug: 'bastiaan-lipsicus' } }, { artists_id: { + id: 2171, artist_name: 'vreemde vogels', - image: '88a41215-8e4a-4a47-9d41-70a6f23763e8', slug: 'vreemde-vogels' } }, { artists_id: { + id: 2172, artist_name: 'levensavonturiers', - image: '938ec07e-5715-479d-a4fc-87759afe6605', slug: 'levensavonturiers' } }, { artists_id: { + id: 2173, artist_name: 'theboardroomcafe', - image: 'fb9d48e2-6246-47cb-8e18-41e8e3a11771', slug: 'theboardroomcafe' } } @@ -9366,44 +8978,31 @@ export default { { id: 217, name: 'Love Gets Fab', - poster: '5d93f361-9972-439f-b310-34cc22a914a7', event_type: 'fashion show', startdatetime: '2016-09-29T19:00:00', enddatetime: '2016-09-29T23:00:00', + location: 'Raffles Hotel\r\n70-72 Canning Beach Rd\r\nApplecross WA 6153\r\nAustralia', slug: 'love-gets-fab', hero_background_color: null, - hubs: [180], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [ { - artists_id: { - artist_name: 'Natalie Rolt', - image: null, - slug: 'natalie-rolt' - } + artists_id: { id: 2158, artist_name: 'Natalie Rolt', image: null, slug: 'natalie-rolt' } }, { artists_id: { + id: 2159, artist_name: 'LIPT', - image: 'bddef27c-7f3d-462c-b1c5-c62ef0de16cc', slug: 'lipt' } }, { - artists_id: { - artist_name: 'Emma Ritchie', - image: null, - slug: 'emma-ritchie' - } - }, - { - artists_id: { - artist_name: 'Claudi JVR', - image: null, - slug: 'claudi-jvr' - } + artists_id: { id: 2160, artist_name: 'Emma Ritchie', image: null, slug: 'emma-ritchie' } }, + { artists_id: { id: 2161, artist_name: 'Claudi JVR', image: null, slug: 'claudi-jvr' } }, { artists_id: { + id: 2162, artist_name: 'Ela & Jackson', image: null, slug: 'ela-and-jackson' @@ -9414,75 +9013,77 @@ export default { { id: 201, name: 'Green Love Festival', - poster: 'da92201a-417c-4db5-a843-60025371f69c', event_type: 'party', startdatetime: '2016-09-04T11:00:00', enddatetime: '2016-09-04T23:00:00', + location: + 'Het Groene Leven Lab\r\nGustav Mahlerlaan 3005\r\n1081 LA Amsterdam\r\nThe Netherlands', slug: 'green-love-festival', hero_background_color: null, - hubs: [164], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [] }, { id: 214, name: 'Love Episode #9', - poster: '7c9fa1a6-45de-4ee9-ac10-a6b75b37d3b7', event_type: 'party', startdatetime: '2016-08-20T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-episode-9', hero_background_color: null, - hubs: [177], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [] }, { id: 229, name: 'The One Where love Throws A Quizznight', - poster: '770e2da3-5608-48ac-8976-fb6a43aeb990', event_type: 'quiz night', startdatetime: '2016-08-16T18:30:00', enddatetime: '2016-08-16T22:30:00', + location: 'UWA Tavern\r\nM300 UWA Student Guild Hackett Dr\r\nCrawley WA 6009\r\nAustralia', slug: 'the-one-where-love-throws-a-quizznight', hero_background_color: null, - hubs: [192], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [] }, { id: 202, name: 'Green Love', - poster: 'eccabadf-9abf-48f8-829f-9fe58fab0cbd', event_type: 'party', startdatetime: '2016-07-23T19:30:00', enddatetime: '2016-07-24T03:00:00', + location: + 'Het Groene Leven Lab\r\nGustav Mahlerlaan 3005\r\n1081 LA Amsterdam\r\nThe Netherlands', slug: 'green-love', hero_background_color: null, - hubs: [165], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1663, artist_name: 'No Reset', - image: '878d16b2-e678-4121-8ed0-ee7f7aa10b32', slug: 'no-reset' } }, { artists_id: { + id: 1683, artist_name: 'Lola Villa', - image: 'c39b5d98-0093-46e0-a785-d86cdbea34e8', slug: 'lola-villa' } }, { artists_id: { + id: 1691, artist_name: 'Monsieur Mango', - image: '006e638d-1a1f-43ce-96d7-7b23f080f36b', slug: 'monsieur-mango' } } @@ -9491,65 +9092,65 @@ export default { { id: 203, name: 'First Love', - poster: '24891b80-583f-48f9-871d-e15de996f2a8', event_type: 'party', startdatetime: '2016-07-21T18:00:00', enddatetime: '2016-07-22T02:00:00', + location: 'Cervin', slug: 'first-love', hero_background_color: null, - hubs: [166], + hubs: [{ hubs_id: { city: 'Milano' } }], artists: [] }, { id: 220, name: 'Love In Motion', - poster: '586b6549-d845-4a6e-8730-dbaa70a43a52', event_type: 'party', startdatetime: '2016-06-24T20:00:00', enddatetime: '2016-06-25T05:00:00', + location: 'De Marktkantine\r\nJan van Galenstraat 6\r\n1051 KM Amsterdam\r\nThe Netherlands', slug: 'love-in-motion', hero_background_color: null, - hubs: [183], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1687, artist_name: 'LUi.', - image: '0d7c2835-52e6-490f-aa30-afc6f33a091c', slug: 'lui' } }, { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1688, artist_name: 'Temperini', - image: '298e61f4-3af9-424b-9ff2-6166002a3b06', slug: 'temperini' } }, { artists_id: { + id: 1642, artist_name: 'Kavafoglu', - image: '04e8c3f0-41f2-4ebb-aed2-6ab7b0cf0a21', slug: 'kavafoglu' } }, { artists_id: { + id: 1753, artist_name: 'Gam̈a͇', - image: '2426daf8-5f72-4c4c-a9bc-b34021b9aabe', slug: 'gama' } } @@ -9558,25 +9159,25 @@ export default { { id: 292, name: "Summer lovin'", - poster: '186151bd-d745-4ff6-aeae-9905b5c60c07', event_type: 'party', startdatetime: '2016-06-14T22:00:00', enddatetime: '2016-06-15T02:00:00', + location: 'Il Cavo', slug: 'summer-lovin', hero_background_color: null, - hubs: [255], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1696, artist_name: 'Dixie7', - image: '4e13461e-595e-410f-9e1d-bf4c8d9fe010', slug: 'dixie7' } }, { artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } } @@ -9585,39 +9186,39 @@ export default { { id: 219, name: 'Liebe Im Quartier', - poster: '30738a82-21b3-4ef5-a837-438822bbee87', event_type: 'party', startdatetime: '2016-06-10T22:00:00', enddatetime: '2016-06-11T05:00:00', + location: 'Chemiefabrik\r\nPetrikirchstraße 5\r\n01097 Dresden\r\nGermany', slug: 'liebe-im-quartier', hero_background_color: null, - hubs: [366], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1704, artist_name: 'dunkel:rot', - image: '462623a5-6b06-4605-ada2-0f1429c4ffa5', slug: 'dunkel-rot' } }, { artists_id: { + id: 1702, artist_name: 'Karlo', - image: '107708b6-ba78-428e-9b66-1247993abf85', slug: 'karlo' } }, { artists_id: { + id: 1706, artist_name: 'Twisted Playground', - image: '5d16bfa7-df52-458b-9623-1d1d56019610', slug: 'twisted-playground' } }, { artists_id: { + id: 2077, artist_name: 'milkmaid', - image: '64084bf3-332d-416f-8511-05805681d6a0', slug: 'milkmaid' } } @@ -9626,39 +9227,39 @@ export default { { id: 409, name: 'Home of Love', - poster: 'dfef0afa-bc06-429c-acd0-c18664c9e04b', event_type: 'party', startdatetime: '2016-06-08T20:00:00', enddatetime: '2016-06-08T20:00:00', + location: 'Maastricht', slug: 'home-of-love', hero_background_color: null, - hubs: [323], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { artists_id: { + id: 1707, artist_name: 'Jeroen Schilder', - image: '238cbf54-0ebc-41dd-b50d-e18c9ee7090d', slug: 'jeroen-schilder' } }, { artists_id: { + id: 1708, artist_name: "The Straw That Broke The Donkey's Back", - image: 'ea558fd3-3a8d-4730-b21b-56943fcd88be', slug: 'the-straw-that-broke-the-donkey-s-back' } }, { artists_id: { + id: 1965, artist_name: 'Captain Bee', - image: 'ff703470-7607-4255-b171-1ee4589806e3', slug: 'captain-bee' } } @@ -9667,94 +9268,82 @@ export default { { id: 228, name: 'Move am See', - poster: '75195ec4-58ff-4c46-aa4a-2e6def812f72', event_type: 'party', startdatetime: '2016-06-04T12:00:00', enddatetime: '2016-06-04T22:00:00', + location: 'Fischerpinte Plötzensee\r\nNordufer 26\r\n13351 Berlin\r\nGermany', slug: 'move-am-see', hero_background_color: null, - hubs: [191], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1661, artist_name: 'Analogue Choir Boys', - image: '23136e68-b7c7-434a-8373-180e964ad105', slug: 'analogue-choir-boys' } }, { artists_id: { + id: 1662, artist_name: 'Tizian', - image: 'e4d46ad4-a348-40f4-8ef1-adaa24cc40e8', slug: 'tizian' } }, { artists_id: { + id: 1664, artist_name: 'Nir Ivenizki', - image: 'd1032fbd-ac14-426d-9390-e0f62ee2c8d4', slug: 'nir-ivenizki' } }, { artists_id: { + id: 1665, artist_name: 'Doron Eisenberg', - image: '039a00d8-2c3b-4b71-b924-2ddd79b6627f', slug: 'doron-eisenberg' } }, - { - artists_id: { - artist_name: 'Jackie G', - image: null, - slug: 'jackie-g' - } - }, - { - artists_id: { - artist_name: 'Joris', - image: null, - slug: 'joris' - } - } + { artists_id: { id: 1884, artist_name: 'Jackie G', image: null, slug: 'jackie-g' } }, + { artists_id: { id: 1885, artist_name: 'Joris', image: null, slug: 'joris' } } ] }, { id: 225, name: 'Sheffield - The Night Kitchen', - poster: '083b7a16-dbb5-4115-b9af-ca1958bb61fe', event_type: 'party', startdatetime: '2016-05-27T23:00:00', enddatetime: '2016-05-28T06:00:00', + location: 'The Night Kitchen\r\n7AW 7 Smithfield\r\nSheffield S3\r\nUnited Kingdom\r\n', slug: 'sheffield-the-night-kitchen', hero_background_color: null, - hubs: [188], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', slug: 'some-chemistry' } }, { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } }, { artists_id: { + id: 1676, artist_name: 'Trippin Jaguar', - image: '78c1b4cb-40c3-4f44-9454-1aac01b753b3', slug: 'trippin-jaguar' } }, { artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } } @@ -9763,73 +9352,61 @@ export default { { id: 479, name: 'PFTP Presents Love Foundation (Amsterdam) & Chip Butty Records', - poster: '1138f46d-0af1-460a-8148-60b00a4cd68e', event_type: 'party', startdatetime: '2016-05-27T11:45:00', enddatetime: '2016-05-28T06:00:00', + location: 'The Night Kitchen', slug: 'pftp-presents-love-foundation-amsterdam-and-chip-butty-records', hero_background_color: null, - hubs: [406], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1676, artist_name: 'Trippin Jaguar', - image: '78c1b4cb-40c3-4f44-9454-1aac01b753b3', slug: 'trippin-jaguar' } }, { artists_id: { + id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', slug: 'some-chemistry' } }, { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } }, - { - artists_id: { - artist_name: 'DJ David', - image: null, - slug: 'dj-david' - } - } + { artists_id: { id: 2135, artist_name: 'DJ David', image: null, slug: 'dj-david' } } ] }, { id: 211, name: 'Lekker Lovin: May The Love Be With You', - poster: '1fa3af4b-fae3-4fde-b4ca-9108c8fed48a', event_type: 'party', startdatetime: '2016-05-17T22:00:00', enddatetime: '2016-05-18T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'lekker-lovin-may-the-love-be-with-you', hero_background_color: null, - hubs: [174], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1709, artist_name: 'Sen', - image: 'b41b538c-e904-4f9a-8cb2-8bd4e8716d7f', slug: 'sen' } }, + { artists_id: { id: 2157, artist_name: 'New Nemesis', image: null, slug: 'new-nemesis' } }, { artists_id: { - artist_name: 'New Nemesis', - image: null, - slug: 'new-nemesis' - } - }, - { - artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } } @@ -9838,39 +9415,39 @@ export default { { id: 206, name: 'Anniversary Party: 3 Years of Love', - poster: 'e9b9c463-80e2-4ff8-9bd6-df4aed0f8841', event_type: 'party', startdatetime: '2016-05-06T23:00:00', enddatetime: '2016-05-07T05:00:00', + location: 'Boschstraat 7\r\n6211 AS Maastricht\r\nThe Netherlands', slug: 'anniversary-party-3-years-of-love', hero_background_color: null, - hubs: [169], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1661, artist_name: 'Analogue Choir Boys', - image: '23136e68-b7c7-434a-8373-180e964ad105', slug: 'analogue-choir-boys' } }, { artists_id: { + id: 1693, artist_name: 'Terry Benedikt', - image: '8e1429cc-cfc3-4050-bc12-62ab76e40f04', slug: 'terry-benedikt' } }, { artists_id: { + id: 1697, artist_name: 'Teenage Mutants', - image: 'b4a1070a-7690-4d84-bb46-a27de1593307', slug: 'teenage-mutants' } }, { artists_id: { + id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', slug: 'some-chemistry' } } @@ -9879,44 +9456,45 @@ export default { { id: 230, name: 'Present Is A Gift', - poster: '027810e7-049f-47c5-b41e-00a2b6f1239a', event_type: 'party', startdatetime: '2016-04-29T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'TBA Club\r\nSchlesischer Pl. 1\r\n01097 Dresden\r\nGermany', slug: 'present-is-a-gift', hero_background_color: null, - hubs: [193], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1705, artist_name: 'Aio', - image: 'ef62a581-e7b7-4bfc-8527-f024e2fef27d', slug: 'aio' } }, { artists_id: { + id: 1703, artist_name: 'Duze', - image: 'd3d74eb8-1f79-4439-a6c9-d1f455f35ce9', slug: 'duze' } }, { artists_id: { + id: 1838, artist_name: 'Paul Träumer', - image: '7297b7b3-6d9a-447e-99b5-e07656579dff', slug: 'paul-traeumer' } }, { artists_id: { + id: 2045, artist_name: 'Jonn Dark', - image: '77bfb36d-8375-427a-bbe1-665b36b055c8', slug: 'jonn-dark' } }, { artists_id: { + id: 2046, artist_name: 'Techno Frühstück', image: null, slug: 'techno-fruhstuck' @@ -9927,39 +9505,40 @@ export default { { id: 235, name: 'Telling Stories', - poster: 'dc8d9704-6e4b-49e2-bf39-03cf05931d0d', event_type: 'storytelling', startdatetime: '2016-04-24T16:00:00', enddatetime: '2016-10-30T00:00:00', + location: + 'Gebouw M\r\nUniversity College Maastricht\r\nZwingelput 4\r\n6211 KH Maastricht\r\nThe Netherlands', slug: 'telling-stories', hero_background_color: null, - hubs: [198], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1698, artist_name: "TROMPE L'OEIL", - image: 'fa54a6ee-293d-4943-8ada-12350d662b3f', slug: 'trompe-l-oeil' } }, { artists_id: { + id: 1716, artist_name: 'Jeska Onderwater', - image: '21d7defb-fbf6-481e-a313-f23a5a41e7fb', slug: 'jeska-onderwater' } }, { artists_id: { + id: 1729, artist_name: 'The VOID', - image: '8877d48a-e18f-4afb-bf8e-5c16db0e4985', slug: 'the-void' } }, { artists_id: { + id: 1730, artist_name: 'ConnAct Theatre', - image: '5837eae3-ba9d-4c06-a5eb-9a5c5bed9dd1', slug: 'connact-theatre' } } @@ -9968,25 +9547,25 @@ export default { { id: 221, name: 'Love Room IV', - poster: '322e4d7d-2238-4cc0-8dda-6a3ca2bb1535', event_type: 'party', startdatetime: '2016-04-23T20:00:00', enddatetime: '2016-04-23T23:00:00', + location: "T' Keldertje\r\nMaasboulevard\r\n6211 AH Maastricht\r\nThe Netherlands", slug: 'love-room-iv', hero_background_color: null, - hubs: [184], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1700, artist_name: 'Lurvink', - image: 'd9a4b103-f601-4b4d-bcec-a1c5059e11fb', slug: 'lurvink' } }, { artists_id: { + id: 1699, artist_name: 'Don Londi', - image: 'a0dfbb00-cf4e-4b0b-a799-a1c0c94cd923', slug: 'don-londi' } } @@ -9995,32 +9574,32 @@ export default { { id: 208, name: 'Kolorit', - poster: 'd49ddea0-6f43-4f71-983b-a06ac686fdb0', event_type: 'party', startdatetime: '2016-04-23T18:00:00', enddatetime: '2016-04-24T02:00:00', + location: 'Gordon Allerstraße 11, 12049 Berlin', slug: 'kolorit', hero_background_color: null, - hubs: [171], + hubs: [{ hubs_id: { city: 'Berlin' } }], artists: [ { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1694, artist_name: 'Byrke Lou', - image: '7da1e4f6-a62e-4720-a075-03a02c41f4b7', slug: 'byrke-lou' } }, { artists_id: { + id: 1695, artist_name: 'DLG', - image: 'e929fb94-ca06-4748-ba48-55f5de62d1a0', slug: 'dlg' } } @@ -10029,80 +9608,50 @@ export default { { id: 218, name: 'Love Gets Live', - poster: '27287174-470d-4e38-bac7-a2d008a29d7d', event_type: 'party', startdatetime: '2016-04-22T18:00:00', enddatetime: '2016-04-22T23:00:00', + location: 'Claremont Hotel\r\n1 Bayview Terrace\r\nClaremont WA 6010\r\nAustralia', slug: 'love-gets-live', hero_background_color: null, - hubs: [181], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [ + { artists_id: { id: 2163, artist_name: 'Belford Duo', image: null, slug: 'belford-duo' } }, { - artists_id: { - artist_name: 'Belford Duo', - image: null, - slug: 'belford-duo' - } - }, - { - artists_id: { - artist_name: 'Harrow Lodge', - image: null, - slug: 'harrow-lodge' - } - }, - { - artists_id: { - artist_name: 'Elliot Ness-', - image: null, - slug: 'elliot-ness-' - } - }, - { - artists_id: { - artist_name: 'Droppert', - image: null, - slug: 'droppert' - } + artists_id: { id: 2164, artist_name: 'Harrow Lodge', image: null, slug: 'harrow-lodge' } }, { - artists_id: { - artist_name: 'Boykie', - image: null, - slug: 'boykie' - } + artists_id: { id: 2165, artist_name: 'Elliot Ness-', image: null, slug: 'elliot-ness-' } }, + { artists_id: { id: 2166, artist_name: 'Droppert', image: null, slug: 'droppert' } }, + { artists_id: { id: 2167, artist_name: 'Boykie', image: null, slug: 'boykie' } }, { - artists_id: { - artist_name: 'Richard Lilje', - image: null, - slug: 'richard-lilje' - } + artists_id: { id: 2168, artist_name: 'Richard Lilje', image: null, slug: 'richard-lilje' } } ] }, { id: 216, name: 'Love Blossoms', - poster: 'f25e6046-2b51-4f84-9d31-1304b02a5664', event_type: 'party', startdatetime: '2016-04-19T22:00:00', enddatetime: '2016-04-20T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'love-blossoms', hero_background_color: null, - hubs: [178], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1696, artist_name: 'Dixie7', - image: '4e13461e-595e-410f-9e1d-bf4c8d9fe010', slug: 'dixie7' } }, { artists_id: { + id: 1964, artist_name: 'Groove Riddim', - image: '5677349b-1fa4-4842-862a-0f6313e46c53', slug: 'groove-riddim' } } @@ -10111,37 +9660,37 @@ export default { { id: 222, name: 'Love Sundowner', - poster: '188b28b8-af24-4a57-b124-4e61fa63a224', event_type: 'party', startdatetime: '2016-03-25T18:00:00', enddatetime: '2016-03-25T21:00:00', + location: 'Llama Bar\r\n1/464 Hay St\r\nSubiaco WA 6008\r\nAustralia', slug: 'love-sundowner', hero_background_color: null, - hubs: [185], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [] }, { id: 233, name: 'Underwater Love', - poster: '2dff19a5-2ed0-42cf-9731-c1a0d8a57512', event_type: 'party', startdatetime: '2016-03-19T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Het Spinhuis\r\nSingel 165A\r\n1012 WE Amsterdam\r\nThe Netherlands', slug: 'underwater-love', hero_background_color: null, - hubs: [196], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1682, artist_name: 'Sauerkraut', - image: '55242490-baa6-4c42-8eae-06c55805706d', slug: 'sauerkraut' } }, { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } } @@ -10150,25 +9699,25 @@ export default { { id: 215, name: 'Lekker Lovin: Marching For Love', - poster: 'b6e88959-0b82-43c2-99a9-86420c938ebc', event_type: 'party', startdatetime: '2016-03-15T22:00:00', enddatetime: '2016-03-16T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'lekker-lovin-marching-for-love', hero_background_color: null, - hubs: [179], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1711, artist_name: 'Mr.Fries', - image: '37ac1582-a6bc-46e6-8430-eb65a8ce87a9', slug: 'mr-fries' } }, { artists_id: { + id: 1710, artist_name: 'Kisser', - image: 'd1b4f3be-e6b0-42bf-9395-e443e64c069f', slug: 'kisser' } } @@ -10177,25 +9726,25 @@ export default { { id: 210, name: 'Landhuis Love II', - poster: 'd3a04432-73f9-44fb-b76e-379fea8c790a', event_type: 'party', startdatetime: '2016-02-27T18:00:00', enddatetime: '2016-02-27T23:00:00', + location: 'Landhuis (LBB)\r\nMaasboulevard, 6211 AH\r\nMaastricht\r\nThe Netherlands', slug: 'landhuis-love-ii', hero_background_color: null, - hubs: [173], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1717, artist_name: 'Yeti', - image: '8be58474-704a-4fe4-98f6-adecbe57989c', slug: 'yeti' } }, { artists_id: { + id: 2151, artist_name: 'Not Just A Number', - image: '5a098509-2434-4610-aa26-838587db7fb0', slug: 'not-just-a-number' } } @@ -10204,25 +9753,25 @@ export default { { id: 227, name: 'Love Room III', - poster: '42776312-e70b-458c-97eb-13ec6d0b288c', event_type: 'party', startdatetime: '2016-02-25T20:00:00', enddatetime: '2016-02-26T01:00:00', + location: "T' Keldertje\r\nMaasboulevard\r\n6211 AH Maastricht\r\nThe Netherlands", slug: 'love-room-iii', hero_background_color: null, - hubs: [190], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1713, artist_name: 'Marius Drescher', - image: '1d952cfd-87c2-4f95-8cc6-dc204efa4d83', slug: 'marius-drescher' } }, { artists_id: { + id: 1712, artist_name: 'CRVEL', - image: '0f2688b6-f66d-4c6b-a503-38fa7d752059', slug: 'crvel' } } @@ -10231,32 +9780,32 @@ export default { { id: 213, name: 'Lekker Lovin: Love Me Every Day', - poster: '0a604a0b-3c46-4a31-8602-ca986e9ec987', event_type: 'party', startdatetime: '2016-02-16T22:00:00', enddatetime: '2016-02-17T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'lekker-lovin-love-me-every-day', hero_background_color: null, - hubs: [176], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1661, artist_name: 'Analogue Choir Boys', - image: '23136e68-b7c7-434a-8373-180e964ad105', slug: 'analogue-choir-boys' } }, { artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } }, { artists_id: { + id: 1714, artist_name: 'Kandisky', - image: '1bdd4e71-9a7f-47a0-84da-39417388a4cd', slug: 'kandisky' } } @@ -10265,32 +9814,32 @@ export default { { id: 223, name: 'L°Utopia', - poster: '69c1fcb9-c79f-47c6-8a66-e6faefb507bb', event_type: 'art exhibition', startdatetime: '2016-02-12T15:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Nikkifaktur\r\nLößnitzstraße 14\r\n01097 Dresden\r\nGermany', slug: 'l0utopia', hero_background_color: null, - hubs: [186], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [ { artists_id: { + id: 1838, artist_name: 'Paul Träumer', - image: '7297b7b3-6d9a-447e-99b5-e07656579dff', slug: 'paul-traeumer' } }, { artists_id: { + id: 2080, artist_name: 'Harry Hancock', - image: '4704b872-48b4-49e9-b947-127f6db9e95e', slug: 'harry-hancock' } }, { artists_id: { + id: 2081, artist_name: 'Cromatics', - image: '9f0a4a79-7206-4198-8f87-e2e029405c18', slug: 'cromatics' } } @@ -10299,16 +9848,17 @@ export default { { id: 200, name: 'Borders & Migration', - poster: '07302371-6e32-40a7-9991-5cefd28c9064', event_type: 'art exhibition', startdatetime: '2016-01-23T18:00:00', enddatetime: '2016-01-29T10:00:00', + location: 'Radion Amsterdam, Louwesweg 1, 1066 EA Amsterdam, The Netherlands', slug: 'borders-migration', hero_background_color: null, - hubs: [163], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 2152, artist_name: 'Marina Papazyan', image: null, slug: 'marina-papazyan' @@ -10316,27 +9866,19 @@ export default { }, { artists_id: { + id: 2153, artist_name: 'Daniel Seemayer', image: null, slug: 'daniel-seemayer' } }, + { artists_id: { id: 2154, artist_name: 'Nelle Swan', image: null, slug: 'nelle-swan' } }, { - artists_id: { - artist_name: 'Nelle Swan', - image: null, - slug: 'nelle-swan' - } - }, - { - artists_id: { - artist_name: 'Mayra Sergio', - image: null, - slug: 'mayra-sergio' - } + artists_id: { id: 2155, artist_name: 'Mayra Sergio', image: null, slug: 'mayra-sergio' } }, { artists_id: { + id: 2156, artist_name: 'Sonia Oet & Nikola Čemanová', image: null, slug: 'sonia-oet-and-nikola-cemanova' @@ -10347,37 +9889,37 @@ export default { { id: 244, name: 'Kurzfilm Abend Zum Thema Liebe', - poster: 'e50c6b31-0bbb-4337-873f-854434209f17', event_type: 'film night', startdatetime: '2015-12-21T19:30:00', enddatetime: '1970-01-01T00:00:00', + location: 'Rösslstube\r\nFriedrichstraße 37\r\n01067 Dresden\r\nGermany', slug: 'kurzfilm-abend-zum-thema-liebe', hero_background_color: null, - hubs: [207], + hubs: [{ hubs_id: { city: 'Dresden' } }], artists: [] }, { id: 243, name: 'Love Caravan', - poster: '9408136a-fb83-4992-b84b-295f19790fc7', event_type: 'party', startdatetime: '2015-12-18T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Radion\r\nLouwesweg 1\r\n1066 EA Amsterdam\r\nThe Netherlands', slug: 'love-caravan', hero_background_color: null, - hubs: [206], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { artists_id: { + id: 1661, artist_name: 'Analogue Choir Boys', - image: '23136e68-b7c7-434a-8373-180e964ad105', slug: 'analogue-choir-boys' } } @@ -10386,30 +9928,30 @@ export default { { id: 241, name: 'Landhuis Love', - poster: '14a7d04a-2ec6-412f-a3af-e5218094b6c8', event_type: 'party', startdatetime: '2015-12-01T17:00:00', enddatetime: '2015-12-01T23:00:00', + location: 'Landhuis (LBB)\r\nMaasboulevard, 6211 AH\r\nMaastricht\r\nThe Netherlands', slug: 'landhuis-love', hero_background_color: null, - hubs: [204], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 239, name: "I'm Nuts About You", - poster: '87b736e9-7913-4902-8a4c-3e0d048536bc', event_type: 'party', startdatetime: '2015-11-26T22:00:00', enddatetime: '2015-11-27T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'i-m-nuts-about-you', hero_background_color: null, - hubs: [202], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1717, artist_name: 'Yeti', - image: '8be58474-704a-4fe4-98f6-adecbe57989c', slug: 'yeti' } } @@ -10418,39 +9960,39 @@ export default { { id: 260, name: 'Love Photography Contest - Change', - poster: '6715c96d-1cd1-4672-bc86-e4a0fcfd53e2', event_type: null, startdatetime: '2015-11-26T16:00:00', enddatetime: '2015-11-29T00:00:00', + location: 'Studio Korridor\r\nSint Nicolaasstraat\r\n6211 NL Maastricht\r\nThe Netherlands', slug: 'love-photography-contest-change', hero_background_color: null, - hubs: [223], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1716, artist_name: 'Jeska Onderwater', - image: '21d7defb-fbf6-481e-a313-f23a5a41e7fb', slug: 'jeska-onderwater' } }, { artists_id: { + id: 1731, artist_name: 'Caisaman', - image: '4218829d-fc8a-4679-a330-df16d4761281', slug: 'caisaman' } }, { artists_id: { + id: 1736, artist_name: 'Tessa', - image: '2c2bfd26-a9d5-4902-a8b4-862a89ed66ad', slug: 'tessa' } }, { artists_id: { + id: 1693, artist_name: 'Terry Benedikt', - image: '8e1429cc-cfc3-4050-bc12-62ab76e40f04', slug: 'terry-benedikt' } } @@ -10459,18 +10001,18 @@ export default { { id: 258, name: 'Love Room II', - poster: '9042c512-c2fb-49a1-a000-6f253201f693', event_type: 'party', startdatetime: '2015-11-05T20:00:00', enddatetime: '2015-11-05T23:00:00', + location: "T' Keldertje\r\nMaasboulevard\r\n6211 AH Maastricht\r\nThe Netherlands", slug: 'love-room-ii', hero_background_color: null, - hubs: [221], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1699, artist_name: 'Don Londi', - image: 'a0dfbb00-cf4e-4b0b-a799-a1c0c94cd923', slug: 'don-londi' } } @@ -10479,25 +10021,25 @@ export default { { id: 246, name: 'True Love Comes In Pears', - poster: 'b1dd65a5-10d3-4125-ab55-69ab23ec18b8', event_type: 'party', startdatetime: '2015-11-03T22:00:00', enddatetime: '2015-11-04T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'true-love-comes-in-pears', hero_background_color: null, - hubs: [209], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1718, artist_name: 'Kasymir', - image: '628b36c4-b719-42bb-9266-6cd0cd722355', slug: 'kasymir' } }, { artists_id: { + id: 1693, artist_name: 'Terry Benedikt', - image: '8e1429cc-cfc3-4050-bc12-62ab76e40f04', slug: 'terry-benedikt' } } @@ -10510,47 +10052,48 @@ export default { event_type: 'GCG', startdatetime: '2015-10-30T18:00:00', enddatetime: '2015-11-01T18:00:00', + location: 'Waterhouse, Amsterdam', slug: 'global-community-gathering-2015', hero_background_color: null, - hubs: [397, 398], + hubs: [{ hubs_id: { city: 'Amsterdam' } }, { hubs_id: { city: 'Global' } }], artists: [] }, { id: 257, name: 'Adelaide - Love Lockdown', - poster: '78fc1ab1-c32d-47d6-bfd9-38ba36f5763f', event_type: 'party', startdatetime: '2015-10-29T20:00:00', enddatetime: '2015-10-30T02:00:00', + location: 'Ancient World\r\n116A Hindley St\r\nAdelaide SA 5000\r\nAustralia', slug: 'adelaide-love-lockdown', hero_background_color: null, - hubs: [220], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 2147, artist_name: 'Mr. John', - image: '2cd76bf1-d429-4bc8-a124-48ab6fb01148', slug: 'mr-john' } }, { artists_id: { + id: 2148, artist_name: 'DYP', - image: '7e917de3-4aee-47cc-a4c0-6c25f6811c29', slug: 'dyp' } }, { artists_id: { + id: 2149, artist_name: 'Freddie Norwood', - image: 'ebd4f928-7eb4-4f1a-bac6-e0db583e6cc6', slug: 'freddie-norwood' } }, { artists_id: { + id: 2150, artist_name: 'Strict Face', - image: 'a9bd036e-ac3f-482e-a6f6-490c9edc01c2', slug: 'strict-face' } } @@ -10559,44 +10102,44 @@ export default { { id: 234, name: 'Cocktail Night', - poster: 'c09d39bd-b9b8-41da-9047-e923e5411e28', event_type: 'party', startdatetime: '2015-10-03T19:30:00', enddatetime: '2015-10-03T23:00:00', + location: 'Raffles Hotel\r\n70-72 Canning Beach Rd\r\nApplecross WA 6153\r\nAustralia', slug: 'cocktail-night', hero_background_color: null, - hubs: [197], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [] }, { id: 255, name: 'Love Foundation Episode #8', - poster: 'ff522bfc-d3c9-4072-b817-4d7d5c9ef310', event_type: 'party', startdatetime: '2015-09-19T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-foundation-episode-8', hero_background_color: null, - hubs: [218], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1667, artist_name: 'Ground Method', - image: '36a1bb3a-b528-4d64-95dd-ffb4b667d18d', slug: 'ground-method' } }, { artists_id: { + id: 1679, artist_name: 'Cyspe', - image: 'a0c92524-3a0d-495e-93ad-389632d9ed67', slug: 'cyspe' } }, { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } } @@ -10605,66 +10148,60 @@ export default { { id: 267, name: 'Squeeze Me', - poster: 'e8dd6882-d100-4c4e-9791-7fb1be7446e7', event_type: 'party', startdatetime: '2015-09-15T22:00:00', enddatetime: '2015-09-16T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'squeeze-me', hero_background_color: null, - hubs: [230], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1719, artist_name: 'Drew Puxty', - image: '4ec25843-5da0-45ae-a12b-b0305261beb3', slug: 'drew-puxty' } }, - { - artists_id: { - artist_name: 'Filori', - image: null, - slug: 'filori' - } - } + { artists_id: { id: 1963, artist_name: 'Filori', image: null, slug: 'filori' } } ] }, { id: 253, name: 'Love Foundation Episode #7', - poster: 'd3edfd68-1c7c-4846-84a2-7448b9881d79', event_type: 'party', startdatetime: '2015-08-08T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-foundation-episode-7', hero_background_color: null, - hubs: [216], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1676, artist_name: 'Trippin Jaguar', - image: '78c1b4cb-40c3-4f44-9454-1aac01b753b3', slug: 'trippin-jaguar' } }, { artists_id: { + id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', slug: 'some-chemistry' } }, { artists_id: { + id: 1677, artist_name: 'URUBU Marinka', - image: '6e324ea7-933b-405e-905d-df3ffe6f9044', slug: 'urubu-marinka' } }, { artists_id: { + id: 1678, artist_name: 'Martha van Straaten', - image: '963f6f40-5524-4fec-b8f6-20ae361523ef', slug: 'martha-van-straaten' } } @@ -10673,32 +10210,32 @@ export default { { id: 251, name: 'Love Episode #6', - poster: '7ac1fb18-4907-429e-a50a-e97319ae9336', event_type: 'party', startdatetime: '2015-07-10T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-episode-6', hero_background_color: null, - hubs: [214], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1675, artist_name: 'Ornamental', - image: 'f4467971-5db9-47bb-ac39-3c6ca8ac231d', slug: 'ornamental' } }, { artists_id: { + id: 1667, artist_name: 'Ground Method', - image: '36a1bb3a-b528-4d64-95dd-ffb4b667d18d', slug: 'ground-method' } }, { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } } @@ -10707,73 +10244,61 @@ export default { { id: 263, name: 'Barcelona - Walking DJs For Water', - poster: '133d1816-b937-4da4-90f8-e0aabf4bb2ec', event_type: 'love excursion', startdatetime: '2015-06-26T23:30:00', enddatetime: '2015-06-27T03:00:00', + location: 'Surya Pau Claris\r\nCarrer de Pau Claris\r\n92, 08010 Barcelona\r\nSpain', slug: 'barcelona-walking-djs-for-water', hero_background_color: null, - hubs: [226], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [ { artists_id: { + id: 1762, artist_name: 'Marcel Puntheller', - image: '75264d00-d6b2-4d6d-986a-39e7ab062d6c', slug: 'marcel-puntheller' } }, { artists_id: { + id: 2190, artist_name: 'Matteo Morrielli', - image: 'b9ced2b9-a885-4cbd-a7ef-4b3e0ffc9f42', slug: 'matteo-morrielli' } }, - { - artists_id: { - artist_name: 'Monacco Flo', - image: null, - slug: 'monacco-flo' - } - } + { artists_id: { id: 2255, artist_name: 'Monacco Flo', image: null, slug: 'monacco-flo' } } ] }, { id: 249, name: 'Love Episode #5', - poster: 'b6f10fdc-f083-4d1a-8c72-7ffaaad12d36', event_type: 'party', startdatetime: '2015-06-06T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-episode-5', hero_background_color: null, - hubs: [211], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ + { artists_id: { id: 1955, artist_name: 'Popcorn', image: null, slug: 'popcorn' } }, { artists_id: { - artist_name: 'Popcorn', - image: null, - slug: 'popcorn' - } - }, - { - artists_id: { + id: 1663, artist_name: 'No Reset', - image: '878d16b2-e678-4121-8ed0-ee7f7aa10b32', slug: 'no-reset' } }, { artists_id: { + id: 1674, artist_name: 'Emil Berliner', - image: '73a814ec-2284-4a25-8490-d06d7166300d', slug: 'emil-berliner' } }, { artists_id: { + id: 1666, artist_name: 'Gabo Lora', - image: '4759bf93-a077-4540-abfd-bc3228463cde', slug: 'gabo-lora' } } @@ -10782,72 +10307,72 @@ export default { { id: 261, name: 'May Amour', - poster: 'ce3a6867-7979-47c5-a98b-b35fd278d835', event_type: 'party', startdatetime: '2015-05-30T20:00:00', enddatetime: '2015-05-31T01:00:00', + location: 'Unknown', slug: 'may-amour', hero_background_color: null, - hubs: [224], + hubs: [{ hubs_id: { city: 'Santa Cruz' } }], artists: [] }, { id: 256, name: 'Love Gets Loud', - poster: '46ae4c9f-c1ed-44ab-97a4-a154c778de78', event_type: 'party', startdatetime: '2015-05-29T18:00:00', enddatetime: '2015-05-29T22:30:00', + location: 'Claremont Hotel\r\n1 Bayview Terrace\r\nClaremont WA 6010\r\nAustralia', slug: 'love-gets-loud', hero_background_color: null, - hubs: [219], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [ { artists_id: { + id: 2183, artist_name: 'The Encounters', - image: 'b994d15d-223c-445b-ab15-f03614017fbe', slug: 'the-encounters' } }, { artists_id: { + id: 2184, artist_name: 'Chief Monarchy', - image: '2a6f3a1b-509b-43f1-ba0c-9ef0cb55c0dd', slug: 'chief-monarchy' } }, { artists_id: { + id: 2180, artist_name: 'Negrocity', - image: '9dd7f0de-86f7-4d95-aa6d-e86e32025033', slug: 'negrocity' } }, { artists_id: { + id: 2176, artist_name: 'Matt Evans', - image: 'fed9bd42-740a-4a49-bdc7-004ce84e68e9', slug: 'matt-evans' } }, { artists_id: { + id: 2185, artist_name: 'Nicky Sandover', - image: 'abbe46cd-e4ac-4ada-b03c-e2df7d95df51', slug: 'nicky-sandover' } }, { artists_id: { + id: 2186, artist_name: 'Little Bird', - image: '64225c86-5642-4e0d-ad72-76fb0f0d8d95', slug: 'little-bird' } }, { artists_id: { + id: 2187, artist_name: 'Three Hands One Hoof', - image: '4577fc1c-a331-4a4d-8dd4-6f3abbf703e4', slug: 'three-hands-one-hoof' } } @@ -10856,39 +10381,39 @@ export default { { id: 250, name: 'Love Episode #4', - poster: 'cd3e0bd5-4939-4fb1-8240-fb25f2453dbd', event_type: 'party', startdatetime: '2015-05-26T23:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-episode-4', hero_background_color: null, - hubs: [213], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1667, artist_name: 'Ground Method', - image: '36a1bb3a-b528-4d64-95dd-ffb4b667d18d', slug: 'ground-method' } }, { artists_id: { + id: 1673, artist_name: 'Vela Uniform', - image: '7734611c-0e70-42ff-a88b-556a4d860999', slug: 'vela-uniform' } }, { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1633, artist_name: 'Marius Jopen', - image: '3d455729-1f00-4e60-95b0-cac9b58d5860', slug: 'marius-jopen' } } @@ -10897,25 +10422,25 @@ export default { { id: 259, name: 'Love Room', - poster: '0b234a18-a31a-42d4-8127-37e89bfdf456', event_type: 'party', startdatetime: '2015-05-21T20:00:00', enddatetime: '2015-05-21T23:00:00', + location: "T' Keldertje\r\nMaasboulevard\r\n6211 AH Maastricht\r\nThe Netherlands", slug: 'love-room', hero_background_color: null, - hubs: [222], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } }, { artists_id: { + id: 1962, artist_name: 'Disco Droid', - image: '0f4bd331-3f56-4d05-9d40-7a9accc754ed', slug: 'disco-droid' } } @@ -10924,39 +10449,39 @@ export default { { id: 232, name: 'Underwater Love II', - poster: '94e6ddba-e849-4921-abeb-599a995b5e9b', event_type: 'party', startdatetime: '2015-05-20T22:00:00', enddatetime: '2015-05-21T05:00:00', + location: 'Het Spinhuis\r\nSingel 165A\r\n1012 WE Amsterdam\r\nThe Netherlands', slug: 'underwater-love-ii', hero_background_color: null, - hubs: [195], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1667, artist_name: 'Ground Method', - image: '36a1bb3a-b528-4d64-95dd-ffb4b667d18d', slug: 'ground-method' } }, { artists_id: { + id: 1675, artist_name: 'Ornamental', - image: 'f4467971-5db9-47bb-ac39-3c6ca8ac231d', slug: 'ornamental' } }, { artists_id: { + id: 1685, artist_name: 'Nathan der Weise', - image: 'e3a247a8-40cd-4a67-b7b1-fcf82da8e330', slug: 'nathan-der-weise' } }, { artists_id: { + id: 1686, artist_name: 'RLHBSLCN', - image: '90bb550a-cc57-45fc-98bd-9b60912a27d1', slug: 'rlhbslcn' } } @@ -10965,35 +10490,36 @@ export default { { id: 237, name: 'Deal', - poster: 'ef88cb43-b2dc-4e01-b272-caade16e3575', event_type: 'art exhibition', startdatetime: '2015-05-04T16:00:00', enddatetime: '2015-05-08T00:00:00', + location: 'LBB\r\nMaasboulevard, 6211 AH\r\nMaastricht\r\nThe Netherlands', slug: 'deal', hero_background_color: null, - hubs: [200], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 240, name: 'Lekker Lovin: I Heard It Through The Grapevine', - poster: '590896cd-dad3-4c8e-9dfb-144925f01a14', event_type: 'party', startdatetime: '2015-04-30T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'lekker-lovin-i-heard-it-through-the-grapevine', hero_background_color: null, - hubs: [203], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1653, artist_name: 'Thomas Longio', - image: '4b165ce8-e72a-46de-b2b3-cc037a90a020', slug: 'thomas-longio' } }, { artists_id: { + id: 1961, artist_name: 'Thore Hagemann', image: null, slug: 'thore-hagemann' @@ -11004,39 +10530,39 @@ export default { { id: 247, name: 'Love Foundation Episode #3 (King Size)', - poster: 'd20f69df-128e-482e-a680-eff472863929', event_type: 'party', startdatetime: '2015-04-25T21:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-foundation-episode-3-king-size', hero_background_color: null, - hubs: [210], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1633, artist_name: 'Marius Jopen', - image: '3d455729-1f00-4e60-95b0-cac9b58d5860', slug: 'marius-jopen' } }, { artists_id: { + id: 1670, artist_name: 'Some Chemistry', - image: 'ac3082e9-509f-47fb-81a9-5cc75c431af8', slug: 'some-chemistry' } }, { artists_id: { + id: 1671, artist_name: 'ME.N.U.', - image: 'cdef17fc-3329-4363-9b0b-43edfc54463a', slug: 'me-n-u' } }, { artists_id: { + id: 1672, artist_name: 'La Vondèl', - image: '84451a58-cc75-4073-a54c-95b43bdf5494', slug: 'la-vondel' } } @@ -11045,32 +10571,32 @@ export default { { id: 248, name: 'Love Foundation Episode #2', - poster: '9f8c36e4-0b5a-4a29-b39b-21158657f818', event_type: 'party', startdatetime: '2015-03-28T21:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'love-foundation-episode-2', hero_background_color: null, - hubs: [212], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1667, artist_name: 'Ground Method', - image: '36a1bb3a-b528-4d64-95dd-ffb4b667d18d', slug: 'ground-method' } }, { artists_id: { + id: 1669, artist_name: 'Karl Friedrich', - image: 'f3c0fbe6-532f-4e15-80d5-75754d86575c', slug: 'karl-friedrich' } } @@ -11079,18 +10605,18 @@ export default { { id: 242, name: 'Lekker Lovin: Apple Of My Eye', - poster: '20e3ff31-d6c6-444b-9d7d-6af0b906bfb5', event_type: 'party', startdatetime: '2015-03-16T22:00:00', enddatetime: '2015-03-17T02:00:00', + location: 'Il Cavo', slug: 'lekker-lovin-apple-of-my-eye', hero_background_color: null, - hubs: [205], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1661, artist_name: 'Analogue Choir Boys', - image: '23136e68-b7c7-434a-8373-180e964ad105', slug: 'analogue-choir-boys' } } @@ -11099,86 +10625,82 @@ export default { { id: 238, name: 'Future Love Nature', - poster: '4b724833-8da6-4f79-aab2-3ec98ce76c33', event_type: 'art exhibition', startdatetime: '2015-03-13T18:30:00', enddatetime: '2015-03-15T00:00:00', + location: 'ZZ Fabriek\r\nBoschstraat 45\r\n6211 AT Maastricht\r\nThe Netherlands', slug: 'future-love-nature', hero_background_color: null, - hubs: [201], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [] }, { id: 252, name: 'Love Gets Live #2', - poster: 'a876caaa-2b2f-4a41-bb01-10deeec6d525', event_type: 'party', startdatetime: '2015-03-06T17:00:00', enddatetime: '2015-03-06T22:30:00', + location: 'Claremont Hotel\r\n1 Bayview Terrace\r\nClaremont WA 6010\r\nAustralia', slug: 'love-gets-live-2', hero_background_color: null, - hubs: [215], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [ { - artists_id: { - artist_name: 'Richard Lilje', - image: null, - slug: 'richard-lilje' - } + artists_id: { id: 2168, artist_name: 'Richard Lilje', image: null, slug: 'richard-lilje' } }, { artists_id: { + id: 2174, artist_name: 'Villanova', - image: '6838b7fb-8bf1-4d8a-8207-b8110d391ae4', slug: 'villanova' } }, { artists_id: { + id: 2175, artist_name: 'Young and the Beast', - image: 'b607d3a1-971d-4eae-8c9e-b7a41f4abbe9', slug: 'young-and-the-beast' } }, { artists_id: { + id: 2176, artist_name: 'Matt Evans', - image: 'fed9bd42-740a-4a49-bdc7-004ce84e68e9', slug: 'matt-evans' } }, { artists_id: { + id: 2177, artist_name: 'Chris Hall', - image: '64f24390-373e-45ab-9118-f03eb7ec2433', slug: 'chris-hall' } }, { artists_id: { + id: 2178, artist_name: 'Sarah Gamble', - image: '021f4a63-b2f9-4e10-ac9f-7907adda859e', slug: 'sarah-gamble' } }, { artists_id: { + id: 2179, artist_name: 'Claire Fahie', - image: '36865b10-2ba2-44c4-9d06-386c50ae7e15', slug: 'claire-fahie' } }, { artists_id: { + id: 2180, artist_name: 'Negrocity', - image: '9dd7f0de-86f7-4d95-aa6d-e86e32025033', slug: 'negrocity' } }, { artists_id: { + id: 2181, artist_name: 'Gianni', - image: 'f57c3d4f-b088-4813-a3a5-e6f3507da54c', slug: 'gianni' } } @@ -11187,32 +10709,32 @@ export default { { id: 265, name: 'Still Water + French Invasion After Party', - poster: 'eb347a1e-e510-4a8c-a4c5-683ab29eba2b', event_type: 'art exhibition', startdatetime: '2015-02-21T21:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'still-water-french-invasion-after-party', hero_background_color: null, - hubs: [228], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [ { artists_id: { + id: 1666, artist_name: 'Gabo Lora', - image: '4759bf93-a077-4540-abfd-bc3228463cde', slug: 'gabo-lora' } }, { artists_id: { + id: 1668, artist_name: 'Yorick Ludolph', - image: 'a1dbda40-b9e1-41a8-95ea-96aef59734dc', slug: 'yorick-ludolph' } }, { artists_id: { + id: 1663, artist_name: 'No Reset', - image: '878d16b2-e678-4121-8ed0-ee7f7aa10b32', slug: 'no-reset' } } @@ -11221,18 +10743,18 @@ export default { { id: 245, name: 'Lekker Lovin: Be My Clementine', - poster: '92c15bfe-64f1-4399-91c6-c432581e5323', event_type: 'party', startdatetime: '2015-02-10T22:00:00', enddatetime: '2015-02-11T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'lekker-lovin-be-my-clementine', hero_background_color: null, - hubs: [208], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1720, artist_name: 'Mick Save', - image: '04a4daaa-1468-49c9-8d73-c2f39161d8a3', slug: 'mick-save' } } @@ -11241,44 +10763,35 @@ export default { { id: 254, name: 'Love Gets Live', - poster: '4f19983c-39ff-4766-b7a8-de07000abbcb', event_type: 'party', startdatetime: '2015-01-09T18:30:00', enddatetime: '2015-01-09T22:30:00', + location: 'Claremont Hotel\r\n1 Bayview Terrace\r\nClaremont WA 6010\r\nAustralia', slug: 'love-gets-live-1', hero_background_color: null, - hubs: [217], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [ { artists_id: { + id: 2182, artist_name: 'The Hunting Birds', - image: '8d20109a-8a4d-4eb1-ad0b-761ff1aa5e50', slug: 'the-hunting-birds' } }, { artists_id: { + id: 2174, artist_name: 'Villanova', - image: '6838b7fb-8bf1-4d8a-8207-b8110d391ae4', slug: 'villanova' } }, { - artists_id: { - artist_name: 'Richard Lilje', - image: null, - slug: 'richard-lilje' - } - }, - { - artists_id: { - artist_name: 'The Damsels', - image: null, - slug: 'the-damsels' - } + artists_id: { id: 2168, artist_name: 'Richard Lilje', image: null, slug: 'richard-lilje' } }, + { artists_id: { id: 2251, artist_name: 'The Damsels', image: null, slug: 'the-damsels' } }, { artists_id: { + id: 2252, artist_name: 'Jesse Middleton', image: null, slug: 'jesse-middleton' @@ -11286,8 +10799,8 @@ export default { }, { artists_id: { + id: 2183, artist_name: 'The Encounters', - image: 'b994d15d-223c-445b-ab15-f03614017fbe', slug: 'the-encounters' } } @@ -11296,25 +10809,25 @@ export default { { id: 275, name: 'Love Foundation First Anniversary', - poster: '18966d58-ab10-457b-a555-33789c57ad06', event_type: 'party', startdatetime: '2014-12-06T22:00:00', enddatetime: '2014-12-07T03:00:00', + location: "D'n Hiemel\r\nSint Bernardusstraat 24-A\r\n6211 HL Maastricht\r\nThe Netherlands", slug: 'love-foundation-first-anniversary', hero_background_color: null, - hubs: [238], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1654, artist_name: 'Colors Amped', - image: 'cdb9b663-f9ea-4681-981a-bde39ba6791d', slug: 'colors-amped' } }, { artists_id: { + id: 1655, artist_name: 'Patrick Schulze', - image: '6577db8b-b11b-4c91-a2fa-d0496217aee9', slug: 'patrick-schulze' } } @@ -11323,25 +10836,25 @@ export default { { id: 268, name: 'Love - 2 Years Of Gude Laune', - poster: '5fbfa568-bdac-46ae-ac4c-c9c44dbec3ad', event_type: 'party', startdatetime: '2014-12-02T21:00:00', enddatetime: '2014-12-03T02:00:00', + location: "D'n Hiemel\r\nSint Bernardusstraat 24-A\r\n6211 HL Maastricht\r\nThe Netherlands", slug: 'love-2-years-of-gude-laune', hero_background_color: null, - hubs: [231], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1721, artist_name: 'Konstantin Kraft', - image: '3a4b8468-a454-40c6-ab07-67acd1b73085', slug: 'konstantin-kraft' } }, { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } } @@ -11350,25 +10863,25 @@ export default { { id: 280, name: 'Loveolution III', - poster: 'e4268fc2-b17e-4737-b34a-83801a31ec0e', event_type: 'party', startdatetime: '2014-11-07T22:00:00', enddatetime: '2014-11-08T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'loveolution-iii', hero_background_color: null, - hubs: [243], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1652, artist_name: 'Rauschakustik', - image: '03940758-c43b-499e-ae82-7da415967dcb', slug: 'rauschakustik' } }, { artists_id: { + id: 1724, artist_name: 'Kay Dahmer', - image: '40a39b8e-59a8-4172-93e1-28e0772bf961', slug: 'kay-dahmer' } } @@ -11377,115 +10890,103 @@ export default { { id: 273, name: 'Love At First Sight', - poster: '84d20aab-6fd6-4f27-9b20-306eb2d14d68', event_type: 'party', startdatetime: '2014-10-17T23:00:00', enddatetime: '2014-10-18T01:00:00', + location: 'Claremont Hotel\r\n1 Bayview Terrace\r\nClaremont WA 6010\r\nAustralia', slug: 'love-at-first-sight', hero_background_color: null, - hubs: [237], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [ { artists_id: { + id: 2191, artist_name: 'Ben Greenfell', - image: '380b0fee-599f-4818-9a52-ab2e49fe24a9', slug: 'ben-greenfell' } }, - { - artists_id: { - artist_name: 'SolTex', - image: null, - slug: 'soltex' - } - } + { artists_id: { id: 2192, artist_name: 'SolTex', image: null, slug: 'soltex' } } ] }, { id: 286, name: 'Waterhouse Unofficial Opening Party', - poster: '326cb193-df40-4040-a314-85ee0d1bc0d4', event_type: 'party', startdatetime: '2014-10-11T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Waterhouse\r\nKlaprozenweg 61\r\n1032 KK Amsterdam\r\nThe Netherlands', slug: 'waterhouse-unofficial-opening-party', hero_background_color: null, - hubs: [249], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [] }, { id: 264, name: 'Fall In Love', - poster: '85add1c1-e594-4f40-a603-4c89a06d502f', event_type: 'party', startdatetime: '2014-10-11T20:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Unknown', slug: 'fall-in-love', hero_background_color: null, - hubs: [227], + hubs: [{ hubs_id: { city: 'Santa Cruz' } }], artists: [] }, { id: 282, name: 'Loveolution IV', - poster: 'b48fdd46-58f9-4231-a261-a2f447a56071', event_type: 'party', startdatetime: '2014-09-23T22:00:00', enddatetime: '2014-09-24T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'loveolution-iv', hero_background_color: null, - hubs: [245], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1721, artist_name: 'Konstantin Kraft', - image: '3a4b8468-a454-40c6-ab07-67acd1b73085', slug: 'konstantin-kraft' } }, { - artists_id: { - artist_name: 'Archi & Bald', - image: null, - slug: 'archi-and-bald' - } + artists_id: { id: 1960, artist_name: 'Archi & Bald', image: null, slug: 'archi-and-bald' } } ] }, { id: 262, name: 'Arts Exhibition', - poster: 'fefbae43-7e9f-49ab-872a-8754f4f2610d', event_type: 'art exhibition', startdatetime: '2014-09-08T17:00:00', enddatetime: '1970-01-01T00:00:00', + location: + 'Fremantle Envrionmental Ressource Center (FERN)\r\n26 Montreal St. Fremantle, WA 6160\r\nAustralia', slug: 'arts-exhibition', hero_background_color: null, - hubs: [225], + hubs: [{ hubs_id: { city: 'Perth' } }], artists: [ { artists_id: { + id: 2188, artist_name: 'Jake Yarwood', - image: 'db792e5d-1165-4f76-9b1e-03f844d62d6d', slug: 'jake-yarwood' } }, { artists_id: { + id: 2189, artist_name: 'Annemieke Mulders', - image: '2fdbd685-ca93-41ec-9b16-bcd5a2dd841a', slug: 'annemieke-mulders' } }, { - artists_id: { - artist_name: 'Glenn Medway', - image: null, - slug: 'glenn-medway' - } + artists_id: { id: 2253, artist_name: 'Glenn Medway', image: null, slug: 'glenn-medway' } }, { artists_id: { + id: 2254, artist_name: 'Soul Frequency', image: null, slug: 'soul-frequency' @@ -11496,64 +10997,60 @@ export default { { id: 272, name: 'Love Revolution', - poster: 'c242fc36-a9c6-4639-bfe6-5ab767af4da1', event_type: 'party', startdatetime: '2014-06-27T22:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'Goleb\r\nBurgemeester de Vlugtlaan 125\r\n1063 BJ Amsterdam\r\nThe Netherlands', slug: 'love-revolution', hero_background_color: null, - hubs: [235], + hubs: [{ hubs_id: { city: 'Amsterdam' } }], artists: [] }, { id: 266, name: 'Embrace The Love', - poster: 'd9541147-78b8-4c8d-aeb2-190a243ce146', event_type: 'party', startdatetime: '2014-06-25T22:00:00', enddatetime: '2014-06-26T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'embrace-the-love', hero_background_color: null, - hubs: [229], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1635, artist_name: 'Mâhfoud', - image: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', slug: 'mahfoud' } }, { - artists_id: { - artist_name: 'Archi & Bald', - image: null, - slug: 'archi-and-bald' - } + artists_id: { id: 1960, artist_name: 'Archi & Bald', image: null, slug: 'archi-and-bald' } } ] }, { id: 278, name: 'Swiss Bass Invasion', - poster: '0ad270f9-8a94-4f4c-afd3-4d132f7fdc2c', event_type: 'party', startdatetime: '2014-06-13T22:00:00', enddatetime: '2014-06-14T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'swiss-bass-invasion', hero_background_color: null, - hubs: [240], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1647, artist_name: 'Kezeg', - image: '5140c599-530c-48f4-87b7-0bf77d75acc5', slug: 'kezeg' } }, { artists_id: { + id: 1648, artist_name: 'Akespeare', - image: 'fbe87729-10c7-4462-9cd6-89da36d0bd45', slug: 'akespeare' } } @@ -11562,32 +11059,32 @@ export default { { id: 274, name: 'Love In The Sun', - poster: 'c676a0f9-fdb7-4e40-9bb3-8b473fee35b0', event_type: 'party', startdatetime: '2014-05-25T19:00:00', enddatetime: '2014-05-25T23:00:00', + location: 'Unknown\r\nSanta Cruz\r\nUSA', slug: 'love-in-the-sun', hero_background_color: null, - hubs: [236], + hubs: [{ hubs_id: { city: 'Santa Cruz' } }], artists: [ { artists_id: { + id: 2193, artist_name: '7 come 11', - image: '955d146b-6fb2-4ba2-8c06-32083b830267', slug: '7-come-11' } }, { artists_id: { + id: 2194, artist_name: 'TV broken 3rd eye open', - image: 'e158f5bd-7081-4528-809d-db257554ae1c', slug: 'tv-broken-3rd-eye-open' } }, { artists_id: { + id: 2195, artist_name: 'Wicked Man', - image: '3019f99e-6061-4380-8a71-5b2b01bea3ef', slug: 'wicked-man' } } @@ -11596,18 +11093,19 @@ export default { { id: 270, name: 'Kick For Water', - poster: '9e21c8f3-e32f-4dc4-b51e-f8415621ccd9', event_type: 'sport event', startdatetime: '2014-05-18T12:00:00', enddatetime: '2014-05-18T19:30:00', + location: + 'Stichting Sportpark West \r\nNegenputruwe 1-5\r\n6218 RA Maastricht\r\nThe Netherlands', slug: 'kick-for-water', hero_background_color: null, - hubs: [233], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1715, artist_name: 'David Ley', - image: '704cf14a-6615-42b0-9da3-bf950511d5e6', slug: 'david-ley' } } @@ -11616,32 +11114,32 @@ export default { { id: 291, name: 'Love Koningsnacht', - poster: 'f52fbdc3-196e-478f-bc8f-f47edb62e924', event_type: 'party', startdatetime: '2014-04-25T23:00:00', enddatetime: '2014-04-26T05:00:00', + location: 'De Kaap', slug: 'love-koningsnacht-2', hero_background_color: null, - hubs: [254], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1723, artist_name: 'Moritz Esyot', - image: '318e0cdf-cca0-4b2d-bff4-a4e56c66a447', slug: 'moritz-esyot' } }, { artists_id: { + id: 1722, artist_name: 'Herr Bauer', - image: 'd3971707-2ab5-490f-bbda-5174bdc82935', slug: 'herr-bauer' } }, { artists_id: { + id: 1720, artist_name: 'Mick Save', - image: '04a4daaa-1468-49c9-8d73-c2f39161d8a3', slug: 'mick-save' } } @@ -11650,32 +11148,32 @@ export default { { id: 276, name: 'Love Gets Loud', - poster: '4e7d618a-1276-4b9c-9fc6-2c2a583d4d61', event_type: 'party', startdatetime: '2014-03-08T20:00:00', enddatetime: '2014-03-09T03:00:00', + location: 'TBA\r\nSanta Cruz\r\nUSA', slug: 'love-gets-loud-1', hero_background_color: null, - hubs: [239], + hubs: [{ hubs_id: { city: 'Santa Cruz' } }], artists: [ { artists_id: { + id: 1658, artist_name: 'Boostive', - image: '47af9fa8-e2d2-48ce-ad79-60edd3ddb810', slug: 'boostive' } }, { artists_id: { + id: 1659, artist_name: 'Westron', - image: 'ba57739d-cdae-4619-8abd-0e6c0f3ae4b9', slug: 'westron' } }, { artists_id: { + id: 1660, artist_name: 'Whys Guy', - image: 'e921ec15-aad5-491d-b916-376475a06f13', slug: 'whys-guy' } } @@ -11684,25 +11182,25 @@ export default { { id: 283, name: 'Love The Circle', - poster: '2b49d9a5-047f-48f2-85ce-071d8848ca65', event_type: 'party', startdatetime: '2014-02-25T22:00:00', enddatetime: '2014-02-26T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'love-the-circle', hero_background_color: null, - hubs: [246], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1656, artist_name: 'Max Kellner', - image: '3d120cb9-c3a0-4363-98ad-615bfe6c8d55', slug: 'max-kellner' } }, { artists_id: { + id: 1657, artist_name: 'Wanderlust', - image: '28bfad92-4ba3-4ebd-93a7-9fa8ed111e13', slug: 'wanderlust' } } @@ -11711,25 +11209,25 @@ export default { { id: 285, name: 'New Love', - poster: 'd22ad5b6-5cd0-495f-ab50-ff9d9453b367', event_type: 'party', startdatetime: '2014-02-15T04:00:00', enddatetime: '2014-02-15T22:00:00', + location: 'Unknown\r\nSanta Cruz\r\nUSA', slug: 'new-love', hero_background_color: null, - hubs: [248], + hubs: [{ hubs_id: { city: 'Santa Cruz' } }], artists: [ { artists_id: { + id: 2193, artist_name: '7 come 11', - image: '955d146b-6fb2-4ba2-8c06-32083b830267', slug: '7-come-11' } }, { artists_id: { + id: 2196, artist_name: 'Hella Deer', - image: '880c536b-5a48-4de7-b5a5-e68901d3db75', slug: 'hella-deer' } } @@ -11738,74 +11236,66 @@ export default { { id: 408, name: 'Love Foundation Arts Exhibition', - poster: 'eeb03f6c-7433-4375-b239-adef526ecf0f', event_type: 'art exhibition', startdatetime: '2013-11-07T18:00:00', enddatetime: '2013-11-07T22:00:00', + location: '6211 Kunstkwartier', slug: 'love-foundation-arts-exhibition', hero_background_color: null, - hubs: [322], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1633, artist_name: 'Marius Jopen', - image: '3d455729-1f00-4e60-95b0-cac9b58d5860', slug: 'marius-jopen' } }, { artists_id: { + id: 1727, artist_name: 'Traumpaar', - image: 'af6a8e5d-6fe4-4cd1-ac54-112ca3f665ae', slug: 'traumpaar' } }, { artists_id: { + id: 1728, artist_name: 'Melanie', - image: '2ef7ecf9-cfc9-4b37-b416-2e6290807cca', slug: 'melanie' } }, { artists_id: { + id: 1951, artist_name: 'Stefan Fincken', image: null, slug: 'stefan-fincken' } }, + { artists_id: { id: 1955, artist_name: 'Popcorn', image: null, slug: 'popcorn' } }, { artists_id: { - artist_name: 'Popcorn', - image: null, - slug: 'popcorn' - } - }, - { - artists_id: { + id: 1956, artist_name: 'strassenkoeter', - image: '4a93b638-8e7b-4e71-9eee-4c5134cdba03', slug: 'strassenkoeter' } }, { artists_id: { + id: 1957, artist_name: 'Jasper van Doorn', image: null, slug: 'jasper-van-doorn' } }, { - artists_id: { - artist_name: 'Sarah Fischer', - image: null, - slug: 'sarah-fischer' - } + artists_id: { id: 1958, artist_name: 'Sarah Fischer', image: null, slug: 'sarah-fischer' } }, { artists_id: { + id: 1959, artist_name: 'Triumph Odita Illustrations', - image: '137b9dff-daa6-451c-95e7-f4942a8fbfbf', slug: 'triumph-odita-illustrations' } } @@ -11814,25 +11304,25 @@ export default { { id: 284, name: 'Loveolution II', - poster: 'cd8c492d-2d18-4dbc-9fd3-b6197749b46f', event_type: 'party', startdatetime: '2013-09-12T22:00:00', enddatetime: '2013-09-13T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'loveolution-ii', hero_background_color: null, - hubs: [247], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1652, artist_name: 'Rauschakustik', - image: '03940758-c43b-499e-ae82-7da415967dcb', slug: 'rauschakustik' } }, { artists_id: { + id: 1653, artist_name: 'Thomas Longio', - image: '4b165ce8-e72a-46de-b2b3-cc037a90a020', slug: 'thomas-longio' } } @@ -11841,23 +11331,18 @@ export default { { id: 407, name: 'Love Foundation Arts Fair', - poster: 'f3511e3d-fb26-4c36-a3c0-9daf74cc7b68', event_type: 'art exhibition', startdatetime: '2013-06-22T17:00:00', enddatetime: '2013-06-22T22:00:00', + location: 'Mandril Cultural Centre', slug: 'love-foundation-arts-fair', hero_background_color: null, - hubs: [321], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ + { artists_id: { id: 1949, artist_name: 'KeF!Art', image: null, slug: 'kefart' } }, { artists_id: { - artist_name: 'KeF!Art', - image: null, - slug: 'kefart' - } - }, - { - artists_id: { + id: 1950, artist_name: 'Rene Wischinski', image: null, slug: 'rene-wischinski' @@ -11865,72 +11350,47 @@ export default { }, { artists_id: { + id: 1951, artist_name: 'Stefan Fincken', image: null, slug: 'stefan-fincken' } }, + { artists_id: { id: 1952, artist_name: 'Flora Dorn', image: null, slug: 'flora-dorn' } }, { - artists_id: { - artist_name: 'Flora Dorn', - image: null, - slug: 'flora-dorn' - } - }, - { - artists_id: { - artist_name: 'Dorian Krimme', - image: null, - slug: 'dorian-krimme' - } - }, - { - artists_id: { - artist_name: 'Miss Samidi', - image: null, - slug: 'miss-samidi' - } + artists_id: { id: 1953, artist_name: 'Dorian Krimme', image: null, slug: 'dorian-krimme' } }, + { artists_id: { id: 1954, artist_name: 'Miss Samidi', image: null, slug: 'miss-samidi' } }, { artists_id: { + id: 1633, artist_name: 'Marius Jopen', - image: '3d455729-1f00-4e60-95b0-cac9b58d5860', slug: 'marius-jopen' } }, - { - artists_id: { - artist_name: 'Popcorn', - image: null, - slug: 'popcorn' - } - } + { artists_id: { id: 1955, artist_name: 'Popcorn', image: null, slug: 'popcorn' } } ] }, { id: 281, name: 'Loveolution Family Summer Opening', - poster: '9b321b11-fa8a-43b8-b6f1-f6f8ae4fe716', event_type: 'party', startdatetime: '2013-06-20T22:00:00', enddatetime: '2013-06-21T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'loveolution-family-summer-opening', hero_background_color: null, - hubs: [244], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1652, artist_name: 'Rauschakustik', - image: '03940758-c43b-499e-ae82-7da415967dcb', slug: 'rauschakustik' } }, { - artists_id: { - artist_name: 'Ulla & Schulla', - image: null, - slug: 'ulla-schulla' - } + artists_id: { id: 1883, artist_name: 'Ulla & Schulla', image: null, slug: 'ulla-schulla' } } ] }, @@ -11941,40 +11401,41 @@ export default { event_type: 'GCG', startdatetime: '2013-06-14T18:00:00', enddatetime: '2013-06-16T18:00:00', + location: 'Knogge', slug: 'global-community-gathering-2014', hero_background_color: null, - hubs: [399], + hubs: [{ hubs_id: { city: 'Global' } }], artists: [] }, { id: 279, name: 'Love Digger', - poster: 'fe7aaba0-d372-43e7-a59d-9812b7cec382', event_type: 'party', startdatetime: '2013-05-14T22:00:00', enddatetime: '2013-05-15T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'love-digger', hero_background_color: null, - hubs: [242], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1651, artist_name: 'Fraktion Freude', - image: '12603376-5808-40b5-817c-e9ee5e82c59a', slug: 'fraktion-freude' } }, { artists_id: { + id: 1650, artist_name: 'Alexander Martel', - image: '0ae2fc34-8540-4745-a15b-4c7d99d33a97', slug: 'alexander-martel' } }, { artists_id: { + id: 1649, artist_name: 'Blastnoize', - image: 'cdbfbd04-b879-4b5b-b769-a648033a2560', slug: 'blastnoize' } } @@ -11983,25 +11444,25 @@ export default { { id: 277, name: 'Locals', - poster: '9bd93307-2bd3-4c7e-a8ed-ef341fbb047b', event_type: 'party', startdatetime: '2013-05-02T22:00:00', enddatetime: '2013-05-03T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'locals', hero_background_color: null, - hubs: [241], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1644, artist_name: 'Gefferson', - image: 'e2921cd7-bfdb-4a3f-a173-3eb30f6ff9fd', slug: 'gefferson' } }, { artists_id: { + id: 1727, artist_name: 'Traumpaar', - image: 'af6a8e5d-6fe4-4cd1-ac54-112ca3f665ae', slug: 'traumpaar' } } @@ -12010,25 +11471,25 @@ export default { { id: 269, name: 'Green Love', - poster: 'f54d2cdf-a6ae-43f2-b847-e81d4ccc582d', event_type: 'party', startdatetime: '2013-04-22T22:00:00', enddatetime: '2013-04-23T02:00:00', + location: 'Il Cavo\r\nSint Amorsplein 3\r\n6211 GT Maastricht\r\nThe Netherlands', slug: 'green-love-1', hero_background_color: null, - hubs: [232], + hubs: [{ hubs_id: { city: 'Maastricht' } }], artists: [ { artists_id: { + id: 1643, artist_name: 'Arthur Robert', - image: 'e373bcd1-fbae-4fa3-b2d9-6a0247610b18', slug: 'arthur-robert' } }, { artists_id: { + id: 1645, artist_name: 'Noizome', - image: 'dd66dc2d-650f-4316-966a-0056ee3b4f97', slug: 'noizome' } } @@ -12041,6 +11502,7 @@ export default { event_type: 'livestream', startdatetime: '1970-01-01T00:00:00', enddatetime: '1970-01-01T00:00:00', + location: 'With Love Radio', slug: 'from-love-foundation-with-love-20', hero_background_color: null, hubs: [], diff --git a/fixtures/projects.ts b/fixtures/projects.ts index ff365c4d..695aff1a 100644 --- a/fixtures/projects.ts +++ b/fixtures/projects.ts @@ -1,7431 +1,6745 @@ export default { - "data": [ - { - "id": 1, - "name": "Test Project", - "pillar": "joy", - "slug": "test-project", - "location_country": "South Africa", - "hero_background_color": "#E35169", - "main_image": { - "id": "db02b54d-e11d-448d-921d-c93f9703987c", - "storage": "minio", - "filename_disk": "db02b54d-e11d-448d-921d-c93f9703987c.png", - "filename_download": "Poster-1.png", - "title": "Poster 1", - "type": "image/png", - "folder": null, - "uploaded_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "uploaded_on": "2022-01-10T19:44:39.321Z", - "modified_by": null, - "modified_on": "2022-01-10T19:44:41.948Z", - "charset": null, - "filesize": "2367642", - "width": 7016, - "height": 9933, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": { - "ihdr": { - "ImageWidth": 7016, - "ImageHeight": 9933, - "BitDepth": 8, - "ColorType": "RGB", - "Compression": "Deflate/Inflate", - "Filter": "Adaptive", - "Interlace": "Noninterlaced" - } - } - }, - "content": [ - { - "id": 1, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.228Z", - "text": "
Meow all night leave dead animals as gifts when owners are asleep, cry for no apparent reason. Run outside as soon as door open twitch tail in permanent irritation and give me some of your food give me some of your food give me some of your food meh, i don't want it but flex claws on the human's belly and purr like a lawnmower if human is on laptop sit on the keyboard meow meow mama. Somehow manage to catch a bird but have no idea what to do next, so play with it until it dies of shock kitty kitty for jump launch to pounce upon little yarn mouse, bare fangs at toy run hide in litter box until treats are fed. Meow meow meow mama cat meoooow i iz master of hoomaan, not hoomaan master of i, oooh damn dat dog so have my breakfast spaghetti yarn if it fits i sits attack the child. Catto munch salmono white cat sleeps on a black shirt play riveting piece on synthesizer keyboard but sleep in the bathroom sink. Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
", - "type": "image_left", - "sort": 7, - "text_layout": null, - "content_label": "test Project 102", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": { - "id": 4, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:25.771Z", - "modified_by": "129a7a19-43ca-427a-aa76-8e331677c56c", - "name": "test", - "slug": "test", - "hero_background_color": null, - "content": [ - 1, - 2, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 14, - 40, - 49, - 50, - 51, - 52, - 54 - ] - }, - "image": { - "id": "7b67dfad-2323-4f38-8464-37161617af1c", - "storage": "minio", - "filename_disk": "7b67dfad-2323-4f38-8464-37161617af1c.jpeg", - "filename_download": "14316778_689987071153334_4575082444412855580_n.jpeg", - "title": "14316778 689987071153334 4575082444412855580 N", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "uploaded_on": "2021-09-15T20:07:53.604Z", - "modified_by": null, - "modified_on": "2021-09-15T20:07:54.009Z", - "charset": null, - "filesize": "127776", - "width": 960, - "height": 960, - "duration": null, - "embed": null, - "description": "", - "location": null, - "tags": null, - "metadata": { - "iptc": { - "OriginalTransmissionReference": "1dry5Gz-HzhRucXl1LIO" - } - } - }, - "image_two": null, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - }, - { - "id": 2, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.233Z", - "text": "Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
", - "type": "image_right", - "sort": 5, - "text_layout": null, - "content_label": "test project 103", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": { - "id": 4, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:25.771Z", - "modified_by": "129a7a19-43ca-427a-aa76-8e331677c56c", - "name": "test", - "slug": "test", - "hero_background_color": null, - "content": [ - 1, - 2, - 4, - 5, - 6, - 7, - 8, - 9, - 10, - 14, - 40, - 49, - 50, - 51, - 52, - 54 - ] - }, - "image": { - "id": "4ac6ee8b-9088-47e7-97f8-cef7aa9ad128", - "storage": "minio", - "filename_disk": "4ac6ee8b-9088-47e7-97f8-cef7aa9ad128.jpeg", - "filename_download": "14712920_698139953671785_1736708767633790136_o.jpeg", - "title": "14712920 698139953671785 1736708767633790136 O", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "uploaded_on": "2021-09-15T20:07:55.314Z", - "modified_by": null, - "modified_on": "2021-09-15T20:07:55.389Z", - "charset": null, - "filesize": "414099", - "width": 1532, - "height": 1532, - "duration": null, - "embed": null, - "description": "", - "location": null, - "tags": null, - "metadata": { - "iptc": { - "OriginalTransmissionReference": "6Sp4gfVhM6zIbrOg35WF", - "SpecialInstructions": "FBMD01000a9d0d00009e7a0000d4010100b20e010008180100e8890100572503008b4003000c5c03000271030093510600" - } - } - }, - "image_two": null, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - }, - { - "id": 3, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.238Z", - "text": "Meow all night leave dead animals as gifts when owners are asleep, cry for no apparent reason. Run outside as soon as door open twitch tail in permanent irritation and give me some of your food give me some of your food give me some of your food meh, i don't want it but flex claws on the human's belly and purr like a lawnmower if human is on laptop sit on the keyboard meow meow mama. Somehow manage to catch a bird but have no idea what to do next, so play with it until it dies of shock kitty kitty for jump launch to pounce upon little yarn mouse, bare fangs at toy run hide in litter box until treats are fed. Meow meow meow mama cat meoooow i iz master of hoomaan, not hoomaan master of i, oooh damn dat dog so have my breakfast spaghetti yarn if it fits i sits attack the child. Catto munch salmono white cat sleeps on a black shirt play riveting piece on synthesizer keyboard but sleep in the bathroom sink. Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
\nMeow all night leave dead animals as gifts when owners are asleep, cry for no apparent reason. Run outside as soon as door open twitch tail in permanent irritation and give me some of your food give me some of your food give me some of your food meh, i don't want it but flex claws on the human's belly and purr like a lawnmower if human is on laptop sit on the keyboard meow meow mama. Somehow manage to catch a bird but have no idea what to do next, so play with it until it dies of shock kitty kitty for jump launch to pounce upon little yarn mouse, bare fangs at toy run hide in litter box until treats are fed. Meow meow meow mama cat meoooow i iz master of hoomaan, not hoomaan master of i, oooh damn dat dog so have my breakfast spaghetti yarn if it fits i sits attack the child. Catto munch salmono white cat sleeps on a black shirt play riveting piece on synthesizer keyboard but sleep in the bathroom sink. Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
", - "type": "text_only", - "sort": 0, - "text_layout": null, - "content_label": "test project 104", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - }, - { - "id": 12, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.318Z", - "text": "Great Text that is Amazing
", - "type": "image_left", - "sort": 1, - "text_layout": null, - "content_label": "Test Project 101", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "19732a7e-0486-4f2b-aabf-691ab786237f", - "storage": "minio", - "filename_disk": "19732a7e-0486-4f2b-aabf-691ab786237f.png", - "filename_download": "Plakat_KB_schwarz_KombiLogoBunt_A1.png", - "title": "Plakat Kb Schwarz Kombi Logo Bunt A1", - "type": "image/png", - "folder": null, - "uploaded_by": "9ae0d8fb-1015-405d-bcef-6040c3ee1c03", - "uploaded_on": "2022-01-13T20:34:28.225Z", - "modified_by": null, - "modified_on": "2022-01-13T20:34:28.626Z", - "charset": null, - "filesize": "556572", - "width": 2268, - "height": 3201, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": { - "ihdr": { - "ImageWidth": 2268, - "ImageHeight": 3201, - "BitDepth": 8, - "ColorType": "RGB with Alpha", - "Compression": "Deflate/Inflate", - "Filter": "Adaptive", - "Interlace": "Noninterlaced", - "Software": "www.inkscape.org" - } - } - }, - "image_two": null, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - }, - { - "id": 63, - "status": "published", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-06-03T08:09:12.171Z", - "text": null, - "type": "image_only", - "sort": 2, - "text_layout": null, - "content_label": "test project 105", - "distance_to_next": "large", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "27e12940-8abe-42bd-8571-098d4ec3c0cb", - "storage": "minio", - "filename_disk": "27e12940-8abe-42bd-8571-098d4ec3c0cb.jpg", - "filename_download": "kerria.jpg", - "title": "Kerria", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "392835b4-5bff-4f9f-8ffe-46f7e61f8222", - "uploaded_on": "2022-05-31T20:53:48.151Z", - "modified_by": null, - "modified_on": "2022-05-31T20:53:48.245Z", - "charset": null, - "filesize": "88814", - "width": 640, - "height": 1138, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": { - "iptc": { - "SpecialInstructions": "FBMD0a000a70010000d92a00009962000029690000a7720000569300009cd300004adc00008ee6000021f20000ee5a0100" - } - } - }, - "image_two": null, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - }, - { - "id": 64, - "status": "published", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-06-03T08:10:28.709Z", - "text": "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\nDuis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
\nNam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
\nDuis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.
", - "type": "text_only", - "sort": 3, - "text_layout": "two_columns", - "content_label": "test project 106", - "distance_to_next": "medium", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - }, - { - "id": 65, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-06-03T08:11:42.277Z", - "text": null, - "type": "double_image", - "sort": 4, - "text_layout": null, - "content_label": "test project 106", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "0ec6b96b-1621-457b-8c45-8928328beba0", - "storage": "minio", - "filename_disk": "0ec6b96b-1621-457b-8c45-8928328beba0.jpeg", - "filename_download": "ladybug.jpeg", - "title": "Ladybug", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "392835b4-5bff-4f9f-8ffe-46f7e61f8222", - "uploaded_on": "2022-05-31T20:53:12.548Z", - "modified_by": null, - "modified_on": "2022-05-31T20:53:12.698Z", - "charset": null, - "filesize": "168992", - "width": 960, - "height": 1280, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "image_two": { - "id": "b5d03a03-8db6-4ff1-8c0a-2247a8b6d412", - "storage": "minio", - "filename_disk": "b5d03a03-8db6-4ff1-8c0a-2247a8b6d412.jpg", - "filename_download": "artworks-SePLomPxxhTVbzaf-EkAzOw-t500x500.jpg", - "title": "Artworks Se P Lom Pxxh T Vbzaf Ek Az Ow T500x500", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "uploaded_on": "2022-05-11T15:55:13.697Z", - "modified_by": null, - "modified_on": "2022-05-11T15:55:13.910Z", - "charset": null, - "filesize": "30489", - "width": 500, - "height": 500, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - }, - { - "id": 66, - "status": "published", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-06-03T08:30:35.756Z", - "text": null, - "type": "full_width", - "sort": 6, - "text_layout": null, - "content_label": "test project 107", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "df776a4a-10ed-48bf-b566-4cb8f78d4c1a", - "storage": "minio", - "filename_disk": "df776a4a-10ed-48bf-b566-4cb8f78d4c1a.jpeg", - "filename_download": "Marcelito.jpeg", - "title": "Marcelito", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "9ae0d8fb-1015-405d-bcef-6040c3ee1c03", - "uploaded_on": "2022-01-13T20:46:29.517Z", - "modified_by": null, - "modified_on": "2022-01-13T20:46:29.717Z", - "charset": null, - "filesize": "159939", - "width": 1020, - "height": 836, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": { - "ifd0": { - "59932": { - "0": 28, - "1": 234, - "2": 0, - "3": 0, - "4": 0, - "5": 8, - "6": 0, - "7": 0, - "8": 0, - "9": 0, - "10": 0, - "11": 0, - "12": 0, - "13": 0, - "14": 0, - "15": 0, - "16": 0, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0, - "24": 0, - "25": 0, - "26": 0, - "27": 0, - "28": 0, - "29": 0, - "30": 0, - "31": 0, - "32": 0, - "33": 0, - "34": 0, - "35": 0, - "36": 0, - "37": 0, - "38": 0, - "39": 0, - "40": 0, - "41": 0, - "42": 0, - "43": 0, - "44": 0, - "45": 0, - "46": 0, - "47": 0, - "48": 0, - "49": 0, - "50": 0, - "51": 0, - "52": 0, - "53": 0, - "54": 0, - "55": 0, - "56": 0, - "57": 0, - "58": 0, - "59": 0, - "60": 0, - "61": 0, - "62": 0, - "63": 0, - "64": 0, - "65": 0, - "66": 0, - "67": 0, - "68": 0, - "69": 0, - "70": 0, - "71": 0, - "72": 0, - "73": 0, - "74": 0, - "75": 0, - "76": 0, - "77": 0, - "78": 0, - "79": 0, - "80": 0, - "81": 0, - "82": 0, - "83": 0, - "84": 0, - "85": 0, - "86": 0, - "87": 0, - "88": 0, - "89": 0, - "90": 0, - "91": 0, - "92": 0, - "93": 0, - "94": 0, - "95": 0, - "96": 0, - "97": 0, - "98": 0, - "99": 0, - "100": 0, - "101": 0, - "102": 0, - "103": 0, - "104": 0, - "105": 0, - "106": 0, - "107": 0, - "108": 0, - "109": 0, - "110": 0, - "111": 0, - "112": 0, - "113": 0, - "114": 0, - "115": 0, - "116": 0, - "117": 0, - "118": 0, - "119": 0, - "120": 0, - "121": 0, - "122": 0, - "123": 0, - "124": 0, - "125": 0, - "126": 0, - "127": 0, - "128": 0, - "129": 0, - "130": 0, - "131": 0, - "132": 0, - "133": 0, - "134": 0, - "135": 0, - "136": 0, - "137": 0, - "138": 0, - "139": 0, - "140": 0, - "141": 0, - "142": 0, - "143": 0, - "144": 0, - "145": 0, - "146": 0, - "147": 0, - "148": 0, - "149": 0, - "150": 0, - "151": 0, - "152": 0, - "153": 0, - "154": 0, - "155": 0, - "156": 0, - "157": 0, - "158": 0, - "159": 0, - "160": 0, - "161": 0, - "162": 0, - "163": 0, - "164": 0, - "165": 0, - "166": 0, - "167": 0, - "168": 0, - "169": 0, - "170": 0, - "171": 0, - "172": 0, - "173": 0, - "174": 0, - "175": 0, - "176": 0, - "177": 0, - "178": 0, - "179": 0, - "180": 0, - "181": 0, - "182": 0, - "183": 0, - "184": 0, - "185": 0, - "186": 0, - "187": 0, - "188": 0, - "189": 0, - "190": 0, - "191": 0, - "192": 0, - "193": 0, - "194": 0, - "195": 0, - "196": 0, - "197": 0, - "198": 0, - "199": 0, - "200": 0, - "201": 0, - "202": 0, - "203": 0, - "204": 0, - "205": 0, - "206": 0, - "207": 0, - "208": 0, - "209": 0, - "210": 0, - "211": 0, - "212": 0, - "213": 0, - "214": 0, - "215": 0, - "216": 0, - "217": 0, - "218": 0, - "219": 0, - "220": 0, - "221": 0, - "222": 0, - "223": 0, - "224": 0, - "225": 0, - "226": 0, - "227": 0, - "228": 0, - "229": 0, - "230": 0, - "231": 0, - "232": 0, - "233": 0, - "234": 0, - "235": 0, - "236": 0, - "237": 0, - "238": 0, - "239": 0, - "240": 0, - "241": 0, - "242": 0, - "243": 0, - "244": 0, - "245": 0, - "246": 0, - "247": 0, - "248": 0, - "249": 0, - "250": 0, - "251": 0, - "252": 0, - "253": 0, - "254": 0, - "255": 0, - "256": 0, - "257": 0, - "258": 0, - "259": 0, - "260": 0, - "261": 0, - "262": 0, - "263": 0, - "264": 0, - "265": 0, - "266": 0, - "267": 0, - "268": 0, - "269": 0, - "270": 0, - "271": 0, - "272": 0, - "273": 0, - "274": 0, - "275": 0, - "276": 0, - "277": 0, - "278": 0, - "279": 0, - "280": 0, - "281": 0, - "282": 0, - "283": 0, - "284": 0, - "285": 0, - "286": 0, - "287": 0, - "288": 0, - "289": 0, - "290": 0, - "291": 0, - "292": 0, - "293": 0, - "294": 0, - "295": 0, - "296": 0, - "297": 0, - "298": 0, - "299": 0, - "300": 0, - "301": 0, - "302": 0, - "303": 0, - "304": 0, - "305": 0, - "306": 0, - "307": 0, - "308": 0, - "309": 0, - "310": 0, - "311": 0, - "312": 0, - "313": 0, - "314": 0, - "315": 0, - "316": 0, - "317": 0, - "318": 0, - "319": 0, - "320": 0, - "321": 0, - "322": 0, - "323": 0, - "324": 0, - "325": 0, - "326": 0, - "327": 0, - "328": 0, - "329": 0, - "330": 0, - "331": 0, - "332": 0, - "333": 0, - "334": 0, - "335": 0, - "336": 0, - "337": 0, - "338": 0, - "339": 0, - "340": 0, - "341": 0, - "342": 0, - "343": 0, - "344": 0, - "345": 0, - "346": 0, - "347": 0, - "348": 0, - "349": 0, - "350": 0, - "351": 0, - "352": 0, - "353": 0, - "354": 0, - "355": 0, - "356": 0, - "357": 0, - "358": 0, - "359": 0, - "360": 0, - "361": 0, - "362": 0, - "363": 0, - "364": 0, - "365": 0, - "366": 0, - "367": 0, - "368": 0, - "369": 0, - "370": 0, - "371": 0, - "372": 0, - "373": 0, - "374": 0, - "375": 0, - "376": 0, - "377": 0, - "378": 0, - "379": 0, - "380": 0, - "381": 0, - "382": 0, - "383": 0, - "384": 0, - "385": 0, - "386": 0, - "387": 0, - "388": 0, - "389": 0, - "390": 0, - "391": 0, - "392": 0, - "393": 0, - "394": 0, - "395": 0, - "396": 0, - "397": 0, - "398": 0, - "399": 0, - "400": 0, - "401": 0, - "402": 0, - "403": 0, - "404": 0, - "405": 0, - "406": 0, - "407": 0, - "408": 0, - "409": 0, - "410": 0, - "411": 0, - "412": 0, - "413": 0, - "414": 0, - "415": 0, - "416": 0, - "417": 0, - "418": 0, - "419": 0, - "420": 0, - "421": 0, - "422": 0, - "423": 0, - "424": 0, - "425": 0, - "426": 0, - "427": 0, - "428": 0, - "429": 0, - "430": 0, - "431": 0, - "432": 0, - "433": 0, - "434": 0, - "435": 0, - "436": 0, - "437": 0, - "438": 0, - "439": 0, - "440": 0, - "441": 0, - "442": 0, - "443": 0, - "444": 0, - "445": 0, - "446": 0, - "447": 0, - "448": 0, - "449": 0, - "450": 0, - "451": 0, - "452": 0, - "453": 0, - "454": 0, - "455": 0, - "456": 0, - "457": 0, - "458": 0, - "459": 0, - "460": 0, - "461": 0, - "462": 0, - "463": 0, - "464": 0, - "465": 0, - "466": 0, - "467": 0, - "468": 0, - "469": 0, - "470": 0, - "471": 0, - "472": 0, - "473": 0, - "474": 0, - "475": 0, - "476": 0, - "477": 0, - "478": 0, - "479": 0, - "480": 0, - "481": 0, - "482": 0, - "483": 0, - "484": 0, - "485": 0, - "486": 0, - "487": 0, - "488": 0, - "489": 0, - "490": 0, - "491": 0, - "492": 0, - "493": 0, - "494": 0, - "495": 0, - "496": 0, - "497": 0, - "498": 0, - "499": 0, - "500": 0, - "501": 0, - "502": 0, - "503": 0, - "504": 0, - "505": 0, - "506": 0, - "507": 0, - "508": 0, - "509": 0, - "510": 0, - "511": 0, - "512": 0, - "513": 0, - "514": 0, - "515": 0, - "516": 0, - "517": 0, - "518": 0, - "519": 0, - "520": 0, - "521": 0, - "522": 0, - "523": 0, - "524": 0, - "525": 0, - "526": 0, - "527": 0, - "528": 0, - "529": 0, - "530": 0, - "531": 0, - "532": 0, - "533": 0, - "534": 0, - "535": 0, - "536": 0, - "537": 0, - "538": 0, - "539": 0, - "540": 0, - "541": 0, - "542": 0, - "543": 0, - "544": 0, - "545": 0, - "546": 0, - "547": 0, - "548": 0, - "549": 0, - "550": 0, - "551": 0, - "552": 0, - "553": 0, - "554": 0, - "555": 0, - "556": 0, - "557": 0, - "558": 0, - "559": 0, - "560": 0, - "561": 0, - "562": 0, - "563": 0, - "564": 0, - "565": 0, - "566": 0, - "567": 0, - "568": 0, - "569": 0, - "570": 0, - "571": 0, - "572": 0, - "573": 0, - "574": 0, - "575": 0, - "576": 0, - "577": 0, - "578": 0, - "579": 0, - "580": 0, - "581": 0, - "582": 0, - "583": 0, - "584": 0, - "585": 0, - "586": 0, - "587": 0, - "588": 0, - "589": 0, - "590": 0, - "591": 0, - "592": 0, - "593": 0, - "594": 0, - "595": 0, - "596": 0, - "597": 0, - "598": 0, - "599": 0, - "600": 0, - "601": 0, - "602": 0, - "603": 0, - "604": 0, - "605": 0, - "606": 0, - "607": 0, - "608": 0, - "609": 0, - "610": 0, - "611": 0, - "612": 0, - "613": 0, - "614": 0, - "615": 0, - "616": 0, - "617": 0, - "618": 0, - "619": 0, - "620": 0, - "621": 0, - "622": 0, - "623": 0, - "624": 0, - "625": 0, - "626": 0, - "627": 0, - "628": 0, - "629": 0, - "630": 0, - "631": 0, - "632": 0, - "633": 0, - "634": 0, - "635": 0, - "636": 0, - "637": 0, - "638": 0, - "639": 0, - "640": 0, - "641": 0, - "642": 0, - "643": 0, - "644": 0, - "645": 0, - "646": 0, - "647": 0, - "648": 0, - "649": 0, - "650": 0, - "651": 0, - "652": 0, - "653": 0, - "654": 0, - "655": 0, - "656": 0, - "657": 0, - "658": 0, - "659": 0, - "660": 0, - "661": 0, - "662": 0, - "663": 0, - "664": 0, - "665": 0, - "666": 0, - "667": 0, - "668": 0, - "669": 0, - "670": 0, - "671": 0, - "672": 0, - "673": 0, - "674": 0, - "675": 0, - "676": 0, - "677": 0, - "678": 0, - "679": 0, - "680": 0, - "681": 0, - "682": 0, - "683": 0, - "684": 0, - "685": 0, - "686": 0, - "687": 0, - "688": 0, - "689": 0, - "690": 0, - "691": 0, - "692": 0, - "693": 0, - "694": 0, - "695": 0, - "696": 0, - "697": 0, - "698": 0, - "699": 0, - "700": 0, - "701": 0, - "702": 0, - "703": 0, - "704": 0, - "705": 0, - "706": 0, - "707": 0, - "708": 0, - "709": 0, - "710": 0, - "711": 0, - "712": 0, - "713": 0, - "714": 0, - "715": 0, - "716": 0, - "717": 0, - "718": 0, - "719": 0, - "720": 0, - "721": 0, - "722": 0, - "723": 0, - "724": 0, - "725": 0, - "726": 0, - "727": 0, - "728": 0, - "729": 0, - "730": 0, - "731": 0, - "732": 0, - "733": 0, - "734": 0, - "735": 0, - "736": 0, - "737": 0, - "738": 0, - "739": 0, - "740": 0, - "741": 0, - "742": 0, - "743": 0, - "744": 0, - "745": 0, - "746": 0, - "747": 0, - "748": 0, - "749": 0, - "750": 0, - "751": 0, - "752": 0, - "753": 0, - "754": 0, - "755": 0, - "756": 0, - "757": 0, - "758": 0, - "759": 0, - "760": 0, - "761": 0, - "762": 0, - "763": 0, - "764": 0, - "765": 0, - "766": 0, - "767": 0, - "768": 0, - "769": 0, - "770": 0, - "771": 0, - "772": 0, - "773": 0, - "774": 0, - "775": 0, - "776": 0, - "777": 0, - "778": 0, - "779": 0, - "780": 0, - "781": 0, - "782": 0, - "783": 0, - "784": 0, - "785": 0, - "786": 0, - "787": 0, - "788": 0, - "789": 0, - "790": 0, - "791": 0, - "792": 0, - "793": 0, - "794": 0, - "795": 0, - "796": 0, - "797": 0, - "798": 0, - "799": 0, - "800": 0, - "801": 0, - "802": 0, - "803": 0, - "804": 0, - "805": 0, - "806": 0, - "807": 0, - "808": 0, - "809": 0, - "810": 0, - "811": 0, - "812": 0, - "813": 0, - "814": 0, - "815": 0, - "816": 0, - "817": 0, - "818": 0, - "819": 0, - "820": 0, - "821": 0, - "822": 0, - "823": 0, - "824": 0, - "825": 0, - "826": 0, - "827": 0, - "828": 0, - "829": 0, - "830": 0, - "831": 0, - "832": 0, - "833": 0, - "834": 0, - "835": 0, - "836": 0, - "837": 0, - "838": 0, - "839": 0, - "840": 0, - "841": 0, - "842": 0, - "843": 0, - "844": 0, - "845": 0, - "846": 0, - "847": 0, - "848": 0, - "849": 0, - "850": 0, - "851": 0, - "852": 0, - "853": 0, - "854": 0, - "855": 0, - "856": 0, - "857": 0, - "858": 0, - "859": 0, - "860": 0, - "861": 0, - "862": 0, - "863": 0, - "864": 0, - "865": 0, - "866": 0, - "867": 0, - "868": 0, - "869": 0, - "870": 0, - "871": 0, - "872": 0, - "873": 0, - "874": 0, - "875": 0, - "876": 0, - "877": 0, - "878": 0, - "879": 0, - "880": 0, - "881": 0, - "882": 0, - "883": 0, - "884": 0, - "885": 0, - "886": 0, - "887": 0, - "888": 0, - "889": 0, - "890": 0, - "891": 0, - "892": 0, - "893": 0, - "894": 0, - "895": 0, - "896": 0, - "897": 0, - "898": 0, - "899": 0, - "900": 0, - "901": 0, - "902": 0, - "903": 0, - "904": 0, - "905": 0, - "906": 0, - "907": 0, - "908": 0, - "909": 0, - "910": 0, - "911": 0, - "912": 0, - "913": 0, - "914": 0, - "915": 0, - "916": 0, - "917": 0, - "918": 0, - "919": 0, - "920": 0, - "921": 0, - "922": 0, - "923": 0, - "924": 0, - "925": 0, - "926": 0, - "927": 0, - "928": 0, - "929": 0, - "930": 0, - "931": 0, - "932": 0, - "933": 0, - "934": 0, - "935": 0, - "936": 0, - "937": 0, - "938": 0, - "939": 0, - "940": 0, - "941": 0, - "942": 0, - "943": 0, - "944": 0, - "945": 0, - "946": 0, - "947": 0, - "948": 0, - "949": 0, - "950": 0, - "951": 0, - "952": 0, - "953": 0, - "954": 0, - "955": 0, - "956": 0, - "957": 0, - "958": 0, - "959": 0, - "960": 0, - "961": 0, - "962": 0, - "963": 0, - "964": 0, - "965": 0, - "966": 0, - "967": 0, - "968": 0, - "969": 0, - "970": 0, - "971": 0, - "972": 0, - "973": 0, - "974": 0, - "975": 0, - "976": 0, - "977": 0, - "978": 0, - "979": 0, - "980": 0, - "981": 0, - "982": 0, - "983": 0, - "984": 0, - "985": 0, - "986": 0, - "987": 0, - "988": 0, - "989": 0, - "990": 0, - "991": 0, - "992": 0, - "993": 0, - "994": 0, - "995": 0, - "996": 0, - "997": 0, - "998": 0, - "999": 0, - "1000": 0, - "1001": 0, - "1002": 0, - "1003": 0, - "1004": 0, - "1005": 0, - "1006": 0, - "1007": 0, - "1008": 0, - "1009": 0, - "1010": 0, - "1011": 0, - "1012": 0, - "1013": 0, - "1014": 0, - "1015": 0, - "1016": 0, - "1017": 0, - "1018": 0, - "1019": 0, - "1020": 0, - "1021": 0, - "1022": 0, - "1023": 0, - "1024": 0, - "1025": 0, - "1026": 0, - "1027": 0, - "1028": 0, - "1029": 0, - "1030": 0, - "1031": 0, - "1032": 0, - "1033": 0, - "1034": 0, - "1035": 0, - "1036": 0, - "1037": 0, - "1038": 0, - "1039": 0, - "1040": 0, - "1041": 0, - "1042": 0, - "1043": 0, - "1044": 0, - "1045": 0, - "1046": 0, - "1047": 0, - "1048": 0, - "1049": 0, - "1050": 0, - "1051": 0, - "1052": 0, - "1053": 0, - "1054": 0, - "1055": 0, - "1056": 0, - "1057": 0, - "1058": 0, - "1059": 0, - "1060": 0, - "1061": 0, - "1062": 0, - "1063": 0, - "1064": 0, - "1065": 0, - "1066": 0, - "1067": 0, - "1068": 0, - "1069": 0, - "1070": 0, - "1071": 0, - "1072": 0, - "1073": 0, - "1074": 0, - "1075": 0, - "1076": 0, - "1077": 0, - "1078": 0, - "1079": 0, - "1080": 0, - "1081": 0, - "1082": 0, - "1083": 0, - "1084": 0, - "1085": 0, - "1086": 0, - "1087": 0, - "1088": 0, - "1089": 0, - "1090": 0, - "1091": 0, - "1092": 0, - "1093": 0, - "1094": 0, - "1095": 0, - "1096": 0, - "1097": 0, - "1098": 0, - "1099": 0, - "1100": 0, - "1101": 0, - "1102": 0, - "1103": 0, - "1104": 0, - "1105": 0, - "1106": 0, - "1107": 0, - "1108": 0, - "1109": 0, - "1110": 0, - "1111": 0, - "1112": 0, - "1113": 0, - "1114": 0, - "1115": 0, - "1116": 0, - "1117": 0, - "1118": 0, - "1119": 0, - "1120": 0, - "1121": 0, - "1122": 0, - "1123": 0, - "1124": 0, - "1125": 0, - "1126": 0, - "1127": 0, - "1128": 0, - "1129": 0, - "1130": 0, - "1131": 0, - "1132": 0, - "1133": 0, - "1134": 0, - "1135": 0, - "1136": 0, - "1137": 0, - "1138": 0, - "1139": 0, - "1140": 0, - "1141": 0, - "1142": 0, - "1143": 0, - "1144": 0, - "1145": 0, - "1146": 0, - "1147": 0, - "1148": 0, - "1149": 0, - "1150": 0, - "1151": 0, - "1152": 0, - "1153": 0, - "1154": 0, - "1155": 0, - "1156": 0, - "1157": 0, - "1158": 0, - "1159": 0, - "1160": 0, - "1161": 0, - "1162": 0, - "1163": 0, - "1164": 0, - "1165": 0, - "1166": 0, - "1167": 0, - "1168": 0, - "1169": 0, - "1170": 0, - "1171": 0, - "1172": 0, - "1173": 0, - "1174": 0, - "1175": 0, - "1176": 0, - "1177": 0, - "1178": 0, - "1179": 0, - "1180": 0, - "1181": 0, - "1182": 0, - "1183": 0, - "1184": 0, - "1185": 0, - "1186": 0, - "1187": 0, - "1188": 0, - "1189": 0, - "1190": 0, - "1191": 0, - "1192": 0, - "1193": 0, - "1194": 0, - "1195": 0, - "1196": 0, - "1197": 0, - "1198": 0, - "1199": 0, - "1200": 0, - "1201": 0, - "1202": 0, - "1203": 0, - "1204": 0, - "1205": 0, - "1206": 0, - "1207": 0, - "1208": 0, - "1209": 0, - "1210": 0, - "1211": 0, - "1212": 0, - "1213": 0, - "1214": 0, - "1215": 0, - "1216": 0, - "1217": 0, - "1218": 0, - "1219": 0, - "1220": 0, - "1221": 0, - "1222": 0, - "1223": 0, - "1224": 0, - "1225": 0, - "1226": 0, - "1227": 0, - "1228": 0, - "1229": 0, - "1230": 0, - "1231": 0, - "1232": 0, - "1233": 0, - "1234": 0, - "1235": 0, - "1236": 0, - "1237": 0, - "1238": 0, - "1239": 0, - "1240": 0, - "1241": 0, - "1242": 0, - "1243": 0, - "1244": 0, - "1245": 0, - "1246": 0, - "1247": 0, - "1248": 0, - "1249": 0, - "1250": 0, - "1251": 0, - "1252": 0, - "1253": 0, - "1254": 0, - "1255": 0, - "1256": 0, - "1257": 0, - "1258": 0, - "1259": 0, - "1260": 0, - "1261": 0, - "1262": 0, - "1263": 0, - "1264": 0, - "1265": 0, - "1266": 0, - "1267": 0, - "1268": 0, - "1269": 0, - "1270": 0, - "1271": 0, - "1272": 0, - "1273": 0, - "1274": 0, - "1275": 0, - "1276": 0, - "1277": 0, - "1278": 0, - "1279": 0, - "1280": 0, - "1281": 0, - "1282": 0, - "1283": 0, - "1284": 0, - "1285": 0, - "1286": 0, - "1287": 0, - "1288": 0, - "1289": 0, - "1290": 0, - "1291": 0, - "1292": 0, - "1293": 0, - "1294": 0, - "1295": 0, - "1296": 0, - "1297": 0, - "1298": 0, - "1299": 0, - "1300": 0, - "1301": 0, - "1302": 0, - "1303": 0, - "1304": 0, - "1305": 0, - "1306": 0, - "1307": 0, - "1308": 0, - "1309": 0, - "1310": 0, - "1311": 0, - "1312": 0, - "1313": 0, - "1314": 0, - "1315": 0, - "1316": 0, - "1317": 0, - "1318": 0, - "1319": 0, - "1320": 0, - "1321": 0, - "1322": 0, - "1323": 0, - "1324": 0, - "1325": 0, - "1326": 0, - "1327": 0, - "1328": 0, - "1329": 0, - "1330": 0, - "1331": 0, - "1332": 0, - "1333": 0, - "1334": 0, - "1335": 0, - "1336": 0, - "1337": 0, - "1338": 0, - "1339": 0, - "1340": 0, - "1341": 0, - "1342": 0, - "1343": 0, - "1344": 0, - "1345": 0, - "1346": 0, - "1347": 0, - "1348": 0, - "1349": 0, - "1350": 0, - "1351": 0, - "1352": 0, - "1353": 0, - "1354": 0, - "1355": 0, - "1356": 0, - "1357": 0, - "1358": 0, - "1359": 0, - "1360": 0, - "1361": 0, - "1362": 0, - "1363": 0, - "1364": 0, - "1365": 0, - "1366": 0, - "1367": 0, - "1368": 0, - "1369": 0, - "1370": 0, - "1371": 0, - "1372": 0, - "1373": 0, - "1374": 0, - "1375": 0, - "1376": 0, - "1377": 0, - "1378": 0, - "1379": 0, - "1380": 0, - "1381": 0, - "1382": 0, - "1383": 0, - "1384": 0, - "1385": 0, - "1386": 0, - "1387": 0, - "1388": 0, - "1389": 0, - "1390": 0, - "1391": 0, - "1392": 0, - "1393": 0, - "1394": 0, - "1395": 0, - "1396": 0, - "1397": 0, - "1398": 0, - "1399": 0, - "1400": 0, - "1401": 0, - "1402": 0, - "1403": 0, - "1404": 0, - "1405": 0, - "1406": 0, - "1407": 0, - "1408": 0, - "1409": 0, - "1410": 0, - "1411": 0, - "1412": 0, - "1413": 0, - "1414": 0, - "1415": 0, - "1416": 0, - "1417": 0, - "1418": 0, - "1419": 0, - "1420": 0, - "1421": 0, - "1422": 0, - "1423": 0, - "1424": 0, - "1425": 0, - "1426": 0, - "1427": 0, - "1428": 0, - "1429": 0, - "1430": 0, - "1431": 0, - "1432": 0, - "1433": 0, - "1434": 0, - "1435": 0, - "1436": 0, - "1437": 0, - "1438": 0, - "1439": 0, - "1440": 0, - "1441": 0, - "1442": 0, - "1443": 0, - "1444": 0, - "1445": 0, - "1446": 0, - "1447": 0, - "1448": 0, - "1449": 0, - "1450": 0, - "1451": 0, - "1452": 0, - "1453": 0, - "1454": 0, - "1455": 0, - "1456": 0, - "1457": 0, - "1458": 0, - "1459": 0, - "1460": 0, - "1461": 0, - "1462": 0, - "1463": 0, - "1464": 0, - "1465": 0, - "1466": 0, - "1467": 0, - "1468": 0, - "1469": 0, - "1470": 0, - "1471": 0, - "1472": 0, - "1473": 0, - "1474": 0, - "1475": 0, - "1476": 0, - "1477": 0, - "1478": 0, - "1479": 0, - "1480": 0, - "1481": 0, - "1482": 0, - "1483": 0, - "1484": 0, - "1485": 0, - "1486": 0, - "1487": 0, - "1488": 0, - "1489": 0, - "1490": 0, - "1491": 0, - "1492": 0, - "1493": 0, - "1494": 0, - "1495": 0, - "1496": 0, - "1497": 0, - "1498": 0, - "1499": 0, - "1500": 0, - "1501": 0, - "1502": 0, - "1503": 0, - "1504": 0, - "1505": 0, - "1506": 0, - "1507": 0, - "1508": 0, - "1509": 0, - "1510": 0, - "1511": 0, - "1512": 0, - "1513": 0, - "1514": 0, - "1515": 0, - "1516": 0, - "1517": 0, - "1518": 0, - "1519": 0, - "1520": 0, - "1521": 0, - "1522": 0, - "1523": 0, - "1524": 0, - "1525": 0, - "1526": 0, - "1527": 0, - "1528": 0, - "1529": 0, - "1530": 0, - "1531": 0, - "1532": 0, - "1533": 0, - "1534": 0, - "1535": 0, - "1536": 0, - "1537": 0, - "1538": 0, - "1539": 0, - "1540": 0, - "1541": 0, - "1542": 0, - "1543": 0, - "1544": 0, - "1545": 0, - "1546": 0, - "1547": 0, - "1548": 0, - "1549": 0, - "1550": 0, - "1551": 0, - "1552": 0, - "1553": 0, - "1554": 0, - "1555": 0, - "1556": 0, - "1557": 0, - "1558": 0, - "1559": 0, - "1560": 0, - "1561": 0, - "1562": 0, - "1563": 0, - "1564": 0, - "1565": 0, - "1566": 0, - "1567": 0, - "1568": 0, - "1569": 0, - "1570": 0, - "1571": 0, - "1572": 0, - "1573": 0, - "1574": 0, - "1575": 0, - "1576": 0, - "1577": 0, - "1578": 0, - "1579": 0, - "1580": 0, - "1581": 0, - "1582": 0, - "1583": 0, - "1584": 0, - "1585": 0, - "1586": 0, - "1587": 0, - "1588": 0, - "1589": 0, - "1590": 0, - "1591": 0, - "1592": 0, - "1593": 0, - "1594": 0, - "1595": 0, - "1596": 0, - "1597": 0, - "1598": 0, - "1599": 0, - "1600": 0, - "1601": 0, - "1602": 0, - "1603": 0, - "1604": 0, - "1605": 0, - "1606": 0, - "1607": 0, - "1608": 0, - "1609": 0, - "1610": 0, - "1611": 0, - "1612": 0, - "1613": 0, - "1614": 0, - "1615": 0, - "1616": 0, - "1617": 0, - "1618": 0, - "1619": 0, - "1620": 0, - "1621": 0, - "1622": 0, - "1623": 0, - "1624": 0, - "1625": 0, - "1626": 0, - "1627": 0, - "1628": 0, - "1629": 0, - "1630": 0, - "1631": 0, - "1632": 0, - "1633": 0, - "1634": 0, - "1635": 0, - "1636": 0, - "1637": 0, - "1638": 0, - "1639": 0, - "1640": 0, - "1641": 0, - "1642": 0, - "1643": 0, - "1644": 0, - "1645": 0, - "1646": 0, - "1647": 0, - "1648": 0, - "1649": 0, - "1650": 0, - "1651": 0, - "1652": 0, - "1653": 0, - "1654": 0, - "1655": 0, - "1656": 0, - "1657": 0, - "1658": 0, - "1659": 0, - "1660": 0, - "1661": 0, - "1662": 0, - "1663": 0, - "1664": 0, - "1665": 0, - "1666": 0, - "1667": 0, - "1668": 0, - "1669": 0, - "1670": 0, - "1671": 0, - "1672": 0, - "1673": 0, - "1674": 0, - "1675": 0, - "1676": 0, - "1677": 0, - "1678": 0, - "1679": 0, - "1680": 0, - "1681": 0, - "1682": 0, - "1683": 0, - "1684": 0, - "1685": 0, - "1686": 0, - "1687": 0, - "1688": 0, - "1689": 0, - "1690": 0, - "1691": 0, - "1692": 0, - "1693": 0, - "1694": 0, - "1695": 0, - "1696": 0, - "1697": 0, - "1698": 0, - "1699": 0, - "1700": 0, - "1701": 0, - "1702": 0, - "1703": 0, - "1704": 0, - "1705": 0, - "1706": 0, - "1707": 0, - "1708": 0, - "1709": 0, - "1710": 0, - "1711": 0, - "1712": 0, - "1713": 0, - "1714": 0, - "1715": 0, - "1716": 0, - "1717": 0, - "1718": 0, - "1719": 0, - "1720": 0, - "1721": 0, - "1722": 0, - "1723": 0, - "1724": 0, - "1725": 0, - "1726": 0, - "1727": 0, - "1728": 0, - "1729": 0, - "1730": 0, - "1731": 0, - "1732": 0, - "1733": 0, - "1734": 0, - "1735": 0, - "1736": 0, - "1737": 0, - "1738": 0, - "1739": 0, - "1740": 0, - "1741": 0, - "1742": 0, - "1743": 0, - "1744": 0, - "1745": 0, - "1746": 0, - "1747": 0, - "1748": 0, - "1749": 0, - "1750": 0, - "1751": 0, - "1752": 0, - "1753": 0, - "1754": 0, - "1755": 0, - "1756": 0, - "1757": 0, - "1758": 0, - "1759": 0, - "1760": 0, - "1761": 0, - "1762": 0, - "1763": 0, - "1764": 0, - "1765": 0, - "1766": 0, - "1767": 0, - "1768": 0, - "1769": 0, - "1770": 0, - "1771": 0, - "1772": 0, - "1773": 0, - "1774": 0, - "1775": 0, - "1776": 0, - "1777": 0, - "1778": 0, - "1779": 0, - "1780": 0, - "1781": 0, - "1782": 0, - "1783": 0, - "1784": 0, - "1785": 0, - "1786": 0, - "1787": 0, - "1788": 0, - "1789": 0, - "1790": 0, - "1791": 0, - "1792": 0, - "1793": 0, - "1794": 0, - "1795": 0, - "1796": 0, - "1797": 0, - "1798": 0, - "1799": 0, - "1800": 0, - "1801": 0, - "1802": 0, - "1803": 0, - "1804": 0, - "1805": 0, - "1806": 0, - "1807": 0, - "1808": 0, - "1809": 0, - "1810": 0, - "1811": 0, - "1812": 0, - "1813": 0, - "1814": 0, - "1815": 0, - "1816": 0, - "1817": 0, - "1818": 0, - "1819": 0, - "1820": 0, - "1821": 0, - "1822": 0, - "1823": 0, - "1824": 0, - "1825": 0, - "1826": 0, - "1827": 0, - "1828": 0, - "1829": 0, - "1830": 0, - "1831": 0, - "1832": 0, - "1833": 0, - "1834": 0, - "1835": 0, - "1836": 0, - "1837": 0, - "1838": 0, - "1839": 0, - "1840": 0, - "1841": 0, - "1842": 0, - "1843": 0, - "1844": 0, - "1845": 0, - "1846": 0, - "1847": 0, - "1848": 0, - "1849": 0, - "1850": 0, - "1851": 0, - "1852": 0, - "1853": 0, - "1854": 0, - "1855": 0, - "1856": 0, - "1857": 0, - "1858": 0, - "1859": 0, - "1860": 0, - "1861": 0, - "1862": 0, - "1863": 0, - "1864": 0, - "1865": 0, - "1866": 0, - "1867": 0, - "1868": 0, - "1869": 0, - "1870": 0, - "1871": 0, - "1872": 0, - "1873": 0, - "1874": 0, - "1875": 0, - "1876": 0, - "1877": 0, - "1878": 0, - "1879": 0, - "1880": 0, - "1881": 0, - "1882": 0, - "1883": 0, - "1884": 0, - "1885": 0, - "1886": 0, - "1887": 0, - "1888": 0, - "1889": 0, - "1890": 0, - "1891": 0, - "1892": 0, - "1893": 0, - "1894": 0, - "1895": 0, - "1896": 0, - "1897": 0, - "1898": 0, - "1899": 0, - "1900": 0, - "1901": 0, - "1902": 0, - "1903": 0, - "1904": 0, - "1905": 0, - "1906": 0, - "1907": 0, - "1908": 0, - "1909": 0, - "1910": 0, - "1911": 0, - "1912": 0, - "1913": 0, - "1914": 0, - "1915": 0, - "1916": 0, - "1917": 0, - "1918": 0, - "1919": 0, - "1920": 0, - "1921": 0, - "1922": 0, - "1923": 0, - "1924": 0, - "1925": 0, - "1926": 0, - "1927": 0, - "1928": 0, - "1929": 0, - "1930": 0, - "1931": 0, - "1932": 0, - "1933": 0, - "1934": 0, - "1935": 0, - "1936": 0, - "1937": 0, - "1938": 0, - "1939": 0, - "1940": 0, - "1941": 0, - "1942": 0, - "1943": 0, - "1944": 0, - "1945": 0, - "1946": 0, - "1947": 0, - "1948": 0, - "1949": 0, - "1950": 0, - "1951": 0, - "1952": 0, - "1953": 0, - "1954": 0, - "1955": 0, - "1956": 0, - "1957": 0, - "1958": 0, - "1959": 0, - "1960": 0, - "1961": 0, - "1962": 0, - "1963": 0, - "1964": 0, - "1965": 0, - "1966": 0, - "1967": 0, - "1968": 0, - "1969": 0, - "1970": 0, - "1971": 0, - "1972": 0, - "1973": 0, - "1974": 0, - "1975": 0, - "1976": 0, - "1977": 0, - "1978": 0, - "1979": 0, - "1980": 0, - "1981": 0, - "1982": 0, - "1983": 0, - "1984": 0, - "1985": 0, - "1986": 0, - "1987": 0, - "1988": 0, - "1989": 0, - "1990": 0, - "1991": 0, - "1992": 0, - "1993": 0, - "1994": 0, - "1995": 0, - "1996": 0, - "1997": 0, - "1998": 0, - "1999": 0, - "2000": 0, - "2001": 0, - "2002": 0, - "2003": 0, - "2004": 0, - "2005": 0, - "2006": 0, - "2007": 0, - "2008": 0, - "2009": 0, - "2010": 0, - "2011": 0, - "2012": 0, - "2013": 0, - "2014": 0, - "2015": 0, - "2016": 0, - "2017": 0, - "2018": 0, - "2019": 0, - "2020": 0, - "2021": 0, - "2022": 0, - "2023": 0, - "2024": 0, - "2025": 0, - "2026": 0, - "2027": 0, - "2028": 0, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0, - "2051": 0, - "2052": 0, - "2053": 0, - "2054": 0, - "2055": 0, - "2056": 0, - "2057": 0, - "2058": 0, - "2059": 0 - }, - "ProcessingSoftware": "Windows Photo Editor 10.0.10011.16384", - "Orientation": "Horizontal (normal)", - "Software": "Windows Photo Editor 10.0.10011.16384", - "ModifyDate": "2022-01-13T21:46:25.000Z" - }, - "ifd1": { - "Compression": 6, - "XResolution": 96, - "YResolution": 96, - "ResolutionUnit": "inches", - "ThumbnailOffset": 4516, - "ThumbnailLength": 13453 - }, - "exif": { - "DateTimeOriginal": "2022-01-13T21:44:29.000Z", - "CreateDate": "2022-01-13T21:44:29.000Z", - "SubSecTimeOriginal": "90", - "SubSecTimeDigitized": "90", - "ColorSpace": 1, - "Padding": { - "0": 28, - "1": 234, - "2": 0, - "3": 0, - "4": 0, - "5": 8, - "6": 0, - "7": 0, - "8": 0, - "9": 0, - "10": 0, - "11": 0, - "12": 0, - "13": 0, - "14": 0, - "15": 0, - "16": 0, - "17": 0, - "18": 0, - "19": 0, - "20": 0, - "21": 0, - "22": 0, - "23": 0, - "24": 0, - "25": 0, - "26": 0, - "27": 0, - "28": 0, - "29": 0, - "30": 0, - "31": 0, - "32": 0, - "33": 0, - "34": 0, - "35": 0, - "36": 0, - "37": 0, - "38": 0, - "39": 0, - "40": 0, - "41": 0, - "42": 0, - "43": 0, - "44": 0, - "45": 0, - "46": 0, - "47": 0, - "48": 0, - "49": 0, - "50": 0, - "51": 0, - "52": 0, - "53": 0, - "54": 0, - "55": 0, - "56": 0, - "57": 0, - "58": 0, - "59": 0, - "60": 0, - "61": 0, - "62": 0, - "63": 0, - "64": 0, - "65": 0, - "66": 0, - "67": 0, - "68": 0, - "69": 0, - "70": 0, - "71": 0, - "72": 0, - "73": 0, - "74": 0, - "75": 0, - "76": 0, - "77": 0, - "78": 0, - "79": 0, - "80": 0, - "81": 0, - "82": 0, - "83": 0, - "84": 0, - "85": 0, - "86": 0, - "87": 0, - "88": 0, - "89": 0, - "90": 0, - "91": 0, - "92": 0, - "93": 0, - "94": 0, - "95": 0, - "96": 0, - "97": 0, - "98": 0, - "99": 0, - "100": 0, - "101": 0, - "102": 0, - "103": 0, - "104": 0, - "105": 0, - "106": 0, - "107": 0, - "108": 0, - "109": 0, - "110": 0, - "111": 0, - "112": 0, - "113": 0, - "114": 0, - "115": 0, - "116": 0, - "117": 0, - "118": 0, - "119": 0, - "120": 0, - "121": 0, - "122": 0, - "123": 0, - "124": 0, - "125": 0, - "126": 0, - "127": 0, - "128": 0, - "129": 0, - "130": 0, - "131": 0, - "132": 0, - "133": 0, - "134": 0, - "135": 0, - "136": 0, - "137": 0, - "138": 0, - "139": 0, - "140": 0, - "141": 0, - "142": 0, - "143": 0, - "144": 0, - "145": 0, - "146": 0, - "147": 0, - "148": 0, - "149": 0, - "150": 0, - "151": 0, - "152": 0, - "153": 0, - "154": 0, - "155": 0, - "156": 0, - "157": 0, - "158": 0, - "159": 0, - "160": 0, - "161": 0, - "162": 0, - "163": 0, - "164": 0, - "165": 0, - "166": 0, - "167": 0, - "168": 0, - "169": 0, - "170": 0, - "171": 0, - "172": 0, - "173": 0, - "174": 0, - "175": 0, - "176": 0, - "177": 0, - "178": 0, - "179": 0, - "180": 0, - "181": 0, - "182": 0, - "183": 0, - "184": 0, - "185": 0, - "186": 0, - "187": 0, - "188": 0, - "189": 0, - "190": 0, - "191": 0, - "192": 0, - "193": 0, - "194": 0, - "195": 0, - "196": 0, - "197": 0, - "198": 0, - "199": 0, - "200": 0, - "201": 0, - "202": 0, - "203": 0, - "204": 0, - "205": 0, - "206": 0, - "207": 0, - "208": 0, - "209": 0, - "210": 0, - "211": 0, - "212": 0, - "213": 0, - "214": 0, - "215": 0, - "216": 0, - "217": 0, - "218": 0, - "219": 0, - "220": 0, - "221": 0, - "222": 0, - "223": 0, - "224": 0, - "225": 0, - "226": 0, - "227": 0, - "228": 0, - "229": 0, - "230": 0, - "231": 0, - "232": 0, - "233": 0, - "234": 0, - "235": 0, - "236": 0, - "237": 0, - "238": 0, - "239": 0, - "240": 0, - "241": 0, - "242": 0, - "243": 0, - "244": 0, - "245": 0, - "246": 0, - "247": 0, - "248": 0, - "249": 0, - "250": 0, - "251": 0, - "252": 0, - "253": 0, - "254": 0, - "255": 0, - "256": 0, - "257": 0, - "258": 0, - "259": 0, - "260": 0, - "261": 0, - "262": 0, - "263": 0, - "264": 0, - "265": 0, - "266": 0, - "267": 0, - "268": 0, - "269": 0, - "270": 0, - "271": 0, - "272": 0, - "273": 0, - "274": 0, - "275": 0, - "276": 0, - "277": 0, - "278": 0, - "279": 0, - "280": 0, - "281": 0, - "282": 0, - "283": 0, - "284": 0, - "285": 0, - "286": 0, - "287": 0, - "288": 0, - "289": 0, - "290": 0, - "291": 0, - "292": 0, - "293": 0, - "294": 0, - "295": 0, - "296": 0, - "297": 0, - "298": 0, - "299": 0, - "300": 0, - "301": 0, - "302": 0, - "303": 0, - "304": 0, - "305": 0, - "306": 0, - "307": 0, - "308": 0, - "309": 0, - "310": 0, - "311": 0, - "312": 0, - "313": 0, - "314": 0, - "315": 0, - "316": 0, - "317": 0, - "318": 0, - "319": 0, - "320": 0, - "321": 0, - "322": 0, - "323": 0, - "324": 0, - "325": 0, - "326": 0, - "327": 0, - "328": 0, - "329": 0, - "330": 0, - "331": 0, - "332": 0, - "333": 0, - "334": 0, - "335": 0, - "336": 0, - "337": 0, - "338": 0, - "339": 0, - "340": 0, - "341": 0, - "342": 0, - "343": 0, - "344": 0, - "345": 0, - "346": 0, - "347": 0, - "348": 0, - "349": 0, - "350": 0, - "351": 0, - "352": 0, - "353": 0, - "354": 0, - "355": 0, - "356": 0, - "357": 0, - "358": 0, - "359": 0, - "360": 0, - "361": 0, - "362": 0, - "363": 0, - "364": 0, - "365": 0, - "366": 0, - "367": 0, - "368": 0, - "369": 0, - "370": 0, - "371": 0, - "372": 0, - "373": 0, - "374": 0, - "375": 0, - "376": 0, - "377": 0, - "378": 0, - "379": 0, - "380": 0, - "381": 0, - "382": 0, - "383": 0, - "384": 0, - "385": 0, - "386": 0, - "387": 0, - "388": 0, - "389": 0, - "390": 0, - "391": 0, - "392": 0, - "393": 0, - "394": 0, - "395": 0, - "396": 0, - "397": 0, - "398": 0, - "399": 0, - "400": 0, - "401": 0, - "402": 0, - "403": 0, - "404": 0, - "405": 0, - "406": 0, - "407": 0, - "408": 0, - "409": 0, - "410": 0, - "411": 0, - "412": 0, - "413": 0, - "414": 0, - "415": 0, - "416": 0, - "417": 0, - "418": 0, - "419": 0, - "420": 0, - "421": 0, - "422": 0, - "423": 0, - "424": 0, - "425": 0, - "426": 0, - "427": 0, - "428": 0, - "429": 0, - "430": 0, - "431": 0, - "432": 0, - "433": 0, - "434": 0, - "435": 0, - "436": 0, - "437": 0, - "438": 0, - "439": 0, - "440": 0, - "441": 0, - "442": 0, - "443": 0, - "444": 0, - "445": 0, - "446": 0, - "447": 0, - "448": 0, - "449": 0, - "450": 0, - "451": 0, - "452": 0, - "453": 0, - "454": 0, - "455": 0, - "456": 0, - "457": 0, - "458": 0, - "459": 0, - "460": 0, - "461": 0, - "462": 0, - "463": 0, - "464": 0, - "465": 0, - "466": 0, - "467": 0, - "468": 0, - "469": 0, - "470": 0, - "471": 0, - "472": 0, - "473": 0, - "474": 0, - "475": 0, - "476": 0, - "477": 0, - "478": 0, - "479": 0, - "480": 0, - "481": 0, - "482": 0, - "483": 0, - "484": 0, - "485": 0, - "486": 0, - "487": 0, - "488": 0, - "489": 0, - "490": 0, - "491": 0, - "492": 0, - "493": 0, - "494": 0, - "495": 0, - "496": 0, - "497": 0, - "498": 0, - "499": 0, - "500": 0, - "501": 0, - "502": 0, - "503": 0, - "504": 0, - "505": 0, - "506": 0, - "507": 0, - "508": 0, - "509": 0, - "510": 0, - "511": 0, - "512": 0, - "513": 0, - "514": 0, - "515": 0, - "516": 0, - "517": 0, - "518": 0, - "519": 0, - "520": 0, - "521": 0, - "522": 0, - "523": 0, - "524": 0, - "525": 0, - "526": 0, - "527": 0, - "528": 0, - "529": 0, - "530": 0, - "531": 0, - "532": 0, - "533": 0, - "534": 0, - "535": 0, - "536": 0, - "537": 0, - "538": 0, - "539": 0, - "540": 0, - "541": 0, - "542": 0, - "543": 0, - "544": 0, - "545": 0, - "546": 0, - "547": 0, - "548": 0, - "549": 0, - "550": 0, - "551": 0, - "552": 0, - "553": 0, - "554": 0, - "555": 0, - "556": 0, - "557": 0, - "558": 0, - "559": 0, - "560": 0, - "561": 0, - "562": 0, - "563": 0, - "564": 0, - "565": 0, - "566": 0, - "567": 0, - "568": 0, - "569": 0, - "570": 0, - "571": 0, - "572": 0, - "573": 0, - "574": 0, - "575": 0, - "576": 0, - "577": 0, - "578": 0, - "579": 0, - "580": 0, - "581": 0, - "582": 0, - "583": 0, - "584": 0, - "585": 0, - "586": 0, - "587": 0, - "588": 0, - "589": 0, - "590": 0, - "591": 0, - "592": 0, - "593": 0, - "594": 0, - "595": 0, - "596": 0, - "597": 0, - "598": 0, - "599": 0, - "600": 0, - "601": 0, - "602": 0, - "603": 0, - "604": 0, - "605": 0, - "606": 0, - "607": 0, - "608": 0, - "609": 0, - "610": 0, - "611": 0, - "612": 0, - "613": 0, - "614": 0, - "615": 0, - "616": 0, - "617": 0, - "618": 0, - "619": 0, - "620": 0, - "621": 0, - "622": 0, - "623": 0, - "624": 0, - "625": 0, - "626": 0, - "627": 0, - "628": 0, - "629": 0, - "630": 0, - "631": 0, - "632": 0, - "633": 0, - "634": 0, - "635": 0, - "636": 0, - "637": 0, - "638": 0, - "639": 0, - "640": 0, - "641": 0, - "642": 0, - "643": 0, - "644": 0, - "645": 0, - "646": 0, - "647": 0, - "648": 0, - "649": 0, - "650": 0, - "651": 0, - "652": 0, - "653": 0, - "654": 0, - "655": 0, - "656": 0, - "657": 0, - "658": 0, - "659": 0, - "660": 0, - "661": 0, - "662": 0, - "663": 0, - "664": 0, - "665": 0, - "666": 0, - "667": 0, - "668": 0, - "669": 0, - "670": 0, - "671": 0, - "672": 0, - "673": 0, - "674": 0, - "675": 0, - "676": 0, - "677": 0, - "678": 0, - "679": 0, - "680": 0, - "681": 0, - "682": 0, - "683": 0, - "684": 0, - "685": 0, - "686": 0, - "687": 0, - "688": 0, - "689": 0, - "690": 0, - "691": 0, - "692": 0, - "693": 0, - "694": 0, - "695": 0, - "696": 0, - "697": 0, - "698": 0, - "699": 0, - "700": 0, - "701": 0, - "702": 0, - "703": 0, - "704": 0, - "705": 0, - "706": 0, - "707": 0, - "708": 0, - "709": 0, - "710": 0, - "711": 0, - "712": 0, - "713": 0, - "714": 0, - "715": 0, - "716": 0, - "717": 0, - "718": 0, - "719": 0, - "720": 0, - "721": 0, - "722": 0, - "723": 0, - "724": 0, - "725": 0, - "726": 0, - "727": 0, - "728": 0, - "729": 0, - "730": 0, - "731": 0, - "732": 0, - "733": 0, - "734": 0, - "735": 0, - "736": 0, - "737": 0, - "738": 0, - "739": 0, - "740": 0, - "741": 0, - "742": 0, - "743": 0, - "744": 0, - "745": 0, - "746": 0, - "747": 0, - "748": 0, - "749": 0, - "750": 0, - "751": 0, - "752": 0, - "753": 0, - "754": 0, - "755": 0, - "756": 0, - "757": 0, - "758": 0, - "759": 0, - "760": 0, - "761": 0, - "762": 0, - "763": 0, - "764": 0, - "765": 0, - "766": 0, - "767": 0, - "768": 0, - "769": 0, - "770": 0, - "771": 0, - "772": 0, - "773": 0, - "774": 0, - "775": 0, - "776": 0, - "777": 0, - "778": 0, - "779": 0, - "780": 0, - "781": 0, - "782": 0, - "783": 0, - "784": 0, - "785": 0, - "786": 0, - "787": 0, - "788": 0, - "789": 0, - "790": 0, - "791": 0, - "792": 0, - "793": 0, - "794": 0, - "795": 0, - "796": 0, - "797": 0, - "798": 0, - "799": 0, - "800": 0, - "801": 0, - "802": 0, - "803": 0, - "804": 0, - "805": 0, - "806": 0, - "807": 0, - "808": 0, - "809": 0, - "810": 0, - "811": 0, - "812": 0, - "813": 0, - "814": 0, - "815": 0, - "816": 0, - "817": 0, - "818": 0, - "819": 0, - "820": 0, - "821": 0, - "822": 0, - "823": 0, - "824": 0, - "825": 0, - "826": 0, - "827": 0, - "828": 0, - "829": 0, - "830": 0, - "831": 0, - "832": 0, - "833": 0, - "834": 0, - "835": 0, - "836": 0, - "837": 0, - "838": 0, - "839": 0, - "840": 0, - "841": 0, - "842": 0, - "843": 0, - "844": 0, - "845": 0, - "846": 0, - "847": 0, - "848": 0, - "849": 0, - "850": 0, - "851": 0, - "852": 0, - "853": 0, - "854": 0, - "855": 0, - "856": 0, - "857": 0, - "858": 0, - "859": 0, - "860": 0, - "861": 0, - "862": 0, - "863": 0, - "864": 0, - "865": 0, - "866": 0, - "867": 0, - "868": 0, - "869": 0, - "870": 0, - "871": 0, - "872": 0, - "873": 0, - "874": 0, - "875": 0, - "876": 0, - "877": 0, - "878": 0, - "879": 0, - "880": 0, - "881": 0, - "882": 0, - "883": 0, - "884": 0, - "885": 0, - "886": 0, - "887": 0, - "888": 0, - "889": 0, - "890": 0, - "891": 0, - "892": 0, - "893": 0, - "894": 0, - "895": 0, - "896": 0, - "897": 0, - "898": 0, - "899": 0, - "900": 0, - "901": 0, - "902": 0, - "903": 0, - "904": 0, - "905": 0, - "906": 0, - "907": 0, - "908": 0, - "909": 0, - "910": 0, - "911": 0, - "912": 0, - "913": 0, - "914": 0, - "915": 0, - "916": 0, - "917": 0, - "918": 0, - "919": 0, - "920": 0, - "921": 0, - "922": 0, - "923": 0, - "924": 0, - "925": 0, - "926": 0, - "927": 0, - "928": 0, - "929": 0, - "930": 0, - "931": 0, - "932": 0, - "933": 0, - "934": 0, - "935": 0, - "936": 0, - "937": 0, - "938": 0, - "939": 0, - "940": 0, - "941": 0, - "942": 0, - "943": 0, - "944": 0, - "945": 0, - "946": 0, - "947": 0, - "948": 0, - "949": 0, - "950": 0, - "951": 0, - "952": 0, - "953": 0, - "954": 0, - "955": 0, - "956": 0, - "957": 0, - "958": 0, - "959": 0, - "960": 0, - "961": 0, - "962": 0, - "963": 0, - "964": 0, - "965": 0, - "966": 0, - "967": 0, - "968": 0, - "969": 0, - "970": 0, - "971": 0, - "972": 0, - "973": 0, - "974": 0, - "975": 0, - "976": 0, - "977": 0, - "978": 0, - "979": 0, - "980": 0, - "981": 0, - "982": 0, - "983": 0, - "984": 0, - "985": 0, - "986": 0, - "987": 0, - "988": 0, - "989": 0, - "990": 0, - "991": 0, - "992": 0, - "993": 0, - "994": 0, - "995": 0, - "996": 0, - "997": 0, - "998": 0, - "999": 0, - "1000": 0, - "1001": 0, - "1002": 0, - "1003": 0, - "1004": 0, - "1005": 0, - "1006": 0, - "1007": 0, - "1008": 0, - "1009": 0, - "1010": 0, - "1011": 0, - "1012": 0, - "1013": 0, - "1014": 0, - "1015": 0, - "1016": 0, - "1017": 0, - "1018": 0, - "1019": 0, - "1020": 0, - "1021": 0, - "1022": 0, - "1023": 0, - "1024": 0, - "1025": 0, - "1026": 0, - "1027": 0, - "1028": 0, - "1029": 0, - "1030": 0, - "1031": 0, - "1032": 0, - "1033": 0, - "1034": 0, - "1035": 0, - "1036": 0, - "1037": 0, - "1038": 0, - "1039": 0, - "1040": 0, - "1041": 0, - "1042": 0, - "1043": 0, - "1044": 0, - "1045": 0, - "1046": 0, - "1047": 0, - "1048": 0, - "1049": 0, - "1050": 0, - "1051": 0, - "1052": 0, - "1053": 0, - "1054": 0, - "1055": 0, - "1056": 0, - "1057": 0, - "1058": 0, - "1059": 0, - "1060": 0, - "1061": 0, - "1062": 0, - "1063": 0, - "1064": 0, - "1065": 0, - "1066": 0, - "1067": 0, - "1068": 0, - "1069": 0, - "1070": 0, - "1071": 0, - "1072": 0, - "1073": 0, - "1074": 0, - "1075": 0, - "1076": 0, - "1077": 0, - "1078": 0, - "1079": 0, - "1080": 0, - "1081": 0, - "1082": 0, - "1083": 0, - "1084": 0, - "1085": 0, - "1086": 0, - "1087": 0, - "1088": 0, - "1089": 0, - "1090": 0, - "1091": 0, - "1092": 0, - "1093": 0, - "1094": 0, - "1095": 0, - "1096": 0, - "1097": 0, - "1098": 0, - "1099": 0, - "1100": 0, - "1101": 0, - "1102": 0, - "1103": 0, - "1104": 0, - "1105": 0, - "1106": 0, - "1107": 0, - "1108": 0, - "1109": 0, - "1110": 0, - "1111": 0, - "1112": 0, - "1113": 0, - "1114": 0, - "1115": 0, - "1116": 0, - "1117": 0, - "1118": 0, - "1119": 0, - "1120": 0, - "1121": 0, - "1122": 0, - "1123": 0, - "1124": 0, - "1125": 0, - "1126": 0, - "1127": 0, - "1128": 0, - "1129": 0, - "1130": 0, - "1131": 0, - "1132": 0, - "1133": 0, - "1134": 0, - "1135": 0, - "1136": 0, - "1137": 0, - "1138": 0, - "1139": 0, - "1140": 0, - "1141": 0, - "1142": 0, - "1143": 0, - "1144": 0, - "1145": 0, - "1146": 0, - "1147": 0, - "1148": 0, - "1149": 0, - "1150": 0, - "1151": 0, - "1152": 0, - "1153": 0, - "1154": 0, - "1155": 0, - "1156": 0, - "1157": 0, - "1158": 0, - "1159": 0, - "1160": 0, - "1161": 0, - "1162": 0, - "1163": 0, - "1164": 0, - "1165": 0, - "1166": 0, - "1167": 0, - "1168": 0, - "1169": 0, - "1170": 0, - "1171": 0, - "1172": 0, - "1173": 0, - "1174": 0, - "1175": 0, - "1176": 0, - "1177": 0, - "1178": 0, - "1179": 0, - "1180": 0, - "1181": 0, - "1182": 0, - "1183": 0, - "1184": 0, - "1185": 0, - "1186": 0, - "1187": 0, - "1188": 0, - "1189": 0, - "1190": 0, - "1191": 0, - "1192": 0, - "1193": 0, - "1194": 0, - "1195": 0, - "1196": 0, - "1197": 0, - "1198": 0, - "1199": 0, - "1200": 0, - "1201": 0, - "1202": 0, - "1203": 0, - "1204": 0, - "1205": 0, - "1206": 0, - "1207": 0, - "1208": 0, - "1209": 0, - "1210": 0, - "1211": 0, - "1212": 0, - "1213": 0, - "1214": 0, - "1215": 0, - "1216": 0, - "1217": 0, - "1218": 0, - "1219": 0, - "1220": 0, - "1221": 0, - "1222": 0, - "1223": 0, - "1224": 0, - "1225": 0, - "1226": 0, - "1227": 0, - "1228": 0, - "1229": 0, - "1230": 0, - "1231": 0, - "1232": 0, - "1233": 0, - "1234": 0, - "1235": 0, - "1236": 0, - "1237": 0, - "1238": 0, - "1239": 0, - "1240": 0, - "1241": 0, - "1242": 0, - "1243": 0, - "1244": 0, - "1245": 0, - "1246": 0, - "1247": 0, - "1248": 0, - "1249": 0, - "1250": 0, - "1251": 0, - "1252": 0, - "1253": 0, - "1254": 0, - "1255": 0, - "1256": 0, - "1257": 0, - "1258": 0, - "1259": 0, - "1260": 0, - "1261": 0, - "1262": 0, - "1263": 0, - "1264": 0, - "1265": 0, - "1266": 0, - "1267": 0, - "1268": 0, - "1269": 0, - "1270": 0, - "1271": 0, - "1272": 0, - "1273": 0, - "1274": 0, - "1275": 0, - "1276": 0, - "1277": 0, - "1278": 0, - "1279": 0, - "1280": 0, - "1281": 0, - "1282": 0, - "1283": 0, - "1284": 0, - "1285": 0, - "1286": 0, - "1287": 0, - "1288": 0, - "1289": 0, - "1290": 0, - "1291": 0, - "1292": 0, - "1293": 0, - "1294": 0, - "1295": 0, - "1296": 0, - "1297": 0, - "1298": 0, - "1299": 0, - "1300": 0, - "1301": 0, - "1302": 0, - "1303": 0, - "1304": 0, - "1305": 0, - "1306": 0, - "1307": 0, - "1308": 0, - "1309": 0, - "1310": 0, - "1311": 0, - "1312": 0, - "1313": 0, - "1314": 0, - "1315": 0, - "1316": 0, - "1317": 0, - "1318": 0, - "1319": 0, - "1320": 0, - "1321": 0, - "1322": 0, - "1323": 0, - "1324": 0, - "1325": 0, - "1326": 0, - "1327": 0, - "1328": 0, - "1329": 0, - "1330": 0, - "1331": 0, - "1332": 0, - "1333": 0, - "1334": 0, - "1335": 0, - "1336": 0, - "1337": 0, - "1338": 0, - "1339": 0, - "1340": 0, - "1341": 0, - "1342": 0, - "1343": 0, - "1344": 0, - "1345": 0, - "1346": 0, - "1347": 0, - "1348": 0, - "1349": 0, - "1350": 0, - "1351": 0, - "1352": 0, - "1353": 0, - "1354": 0, - "1355": 0, - "1356": 0, - "1357": 0, - "1358": 0, - "1359": 0, - "1360": 0, - "1361": 0, - "1362": 0, - "1363": 0, - "1364": 0, - "1365": 0, - "1366": 0, - "1367": 0, - "1368": 0, - "1369": 0, - "1370": 0, - "1371": 0, - "1372": 0, - "1373": 0, - "1374": 0, - "1375": 0, - "1376": 0, - "1377": 0, - "1378": 0, - "1379": 0, - "1380": 0, - "1381": 0, - "1382": 0, - "1383": 0, - "1384": 0, - "1385": 0, - "1386": 0, - "1387": 0, - "1388": 0, - "1389": 0, - "1390": 0, - "1391": 0, - "1392": 0, - "1393": 0, - "1394": 0, - "1395": 0, - "1396": 0, - "1397": 0, - "1398": 0, - "1399": 0, - "1400": 0, - "1401": 0, - "1402": 0, - "1403": 0, - "1404": 0, - "1405": 0, - "1406": 0, - "1407": 0, - "1408": 0, - "1409": 0, - "1410": 0, - "1411": 0, - "1412": 0, - "1413": 0, - "1414": 0, - "1415": 0, - "1416": 0, - "1417": 0, - "1418": 0, - "1419": 0, - "1420": 0, - "1421": 0, - "1422": 0, - "1423": 0, - "1424": 0, - "1425": 0, - "1426": 0, - "1427": 0, - "1428": 0, - "1429": 0, - "1430": 0, - "1431": 0, - "1432": 0, - "1433": 0, - "1434": 0, - "1435": 0, - "1436": 0, - "1437": 0, - "1438": 0, - "1439": 0, - "1440": 0, - "1441": 0, - "1442": 0, - "1443": 0, - "1444": 0, - "1445": 0, - "1446": 0, - "1447": 0, - "1448": 0, - "1449": 0, - "1450": 0, - "1451": 0, - "1452": 0, - "1453": 0, - "1454": 0, - "1455": 0, - "1456": 0, - "1457": 0, - "1458": 0, - "1459": 0, - "1460": 0, - "1461": 0, - "1462": 0, - "1463": 0, - "1464": 0, - "1465": 0, - "1466": 0, - "1467": 0, - "1468": 0, - "1469": 0, - "1470": 0, - "1471": 0, - "1472": 0, - "1473": 0, - "1474": 0, - "1475": 0, - "1476": 0, - "1477": 0, - "1478": 0, - "1479": 0, - "1480": 0, - "1481": 0, - "1482": 0, - "1483": 0, - "1484": 0, - "1485": 0, - "1486": 0, - "1487": 0, - "1488": 0, - "1489": 0, - "1490": 0, - "1491": 0, - "1492": 0, - "1493": 0, - "1494": 0, - "1495": 0, - "1496": 0, - "1497": 0, - "1498": 0, - "1499": 0, - "1500": 0, - "1501": 0, - "1502": 0, - "1503": 0, - "1504": 0, - "1505": 0, - "1506": 0, - "1507": 0, - "1508": 0, - "1509": 0, - "1510": 0, - "1511": 0, - "1512": 0, - "1513": 0, - "1514": 0, - "1515": 0, - "1516": 0, - "1517": 0, - "1518": 0, - "1519": 0, - "1520": 0, - "1521": 0, - "1522": 0, - "1523": 0, - "1524": 0, - "1525": 0, - "1526": 0, - "1527": 0, - "1528": 0, - "1529": 0, - "1530": 0, - "1531": 0, - "1532": 0, - "1533": 0, - "1534": 0, - "1535": 0, - "1536": 0, - "1537": 0, - "1538": 0, - "1539": 0, - "1540": 0, - "1541": 0, - "1542": 0, - "1543": 0, - "1544": 0, - "1545": 0, - "1546": 0, - "1547": 0, - "1548": 0, - "1549": 0, - "1550": 0, - "1551": 0, - "1552": 0, - "1553": 0, - "1554": 0, - "1555": 0, - "1556": 0, - "1557": 0, - "1558": 0, - "1559": 0, - "1560": 0, - "1561": 0, - "1562": 0, - "1563": 0, - "1564": 0, - "1565": 0, - "1566": 0, - "1567": 0, - "1568": 0, - "1569": 0, - "1570": 0, - "1571": 0, - "1572": 0, - "1573": 0, - "1574": 0, - "1575": 0, - "1576": 0, - "1577": 0, - "1578": 0, - "1579": 0, - "1580": 0, - "1581": 0, - "1582": 0, - "1583": 0, - "1584": 0, - "1585": 0, - "1586": 0, - "1587": 0, - "1588": 0, - "1589": 0, - "1590": 0, - "1591": 0, - "1592": 0, - "1593": 0, - "1594": 0, - "1595": 0, - "1596": 0, - "1597": 0, - "1598": 0, - "1599": 0, - "1600": 0, - "1601": 0, - "1602": 0, - "1603": 0, - "1604": 0, - "1605": 0, - "1606": 0, - "1607": 0, - "1608": 0, - "1609": 0, - "1610": 0, - "1611": 0, - "1612": 0, - "1613": 0, - "1614": 0, - "1615": 0, - "1616": 0, - "1617": 0, - "1618": 0, - "1619": 0, - "1620": 0, - "1621": 0, - "1622": 0, - "1623": 0, - "1624": 0, - "1625": 0, - "1626": 0, - "1627": 0, - "1628": 0, - "1629": 0, - "1630": 0, - "1631": 0, - "1632": 0, - "1633": 0, - "1634": 0, - "1635": 0, - "1636": 0, - "1637": 0, - "1638": 0, - "1639": 0, - "1640": 0, - "1641": 0, - "1642": 0, - "1643": 0, - "1644": 0, - "1645": 0, - "1646": 0, - "1647": 0, - "1648": 0, - "1649": 0, - "1650": 0, - "1651": 0, - "1652": 0, - "1653": 0, - "1654": 0, - "1655": 0, - "1656": 0, - "1657": 0, - "1658": 0, - "1659": 0, - "1660": 0, - "1661": 0, - "1662": 0, - "1663": 0, - "1664": 0, - "1665": 0, - "1666": 0, - "1667": 0, - "1668": 0, - "1669": 0, - "1670": 0, - "1671": 0, - "1672": 0, - "1673": 0, - "1674": 0, - "1675": 0, - "1676": 0, - "1677": 0, - "1678": 0, - "1679": 0, - "1680": 0, - "1681": 0, - "1682": 0, - "1683": 0, - "1684": 0, - "1685": 0, - "1686": 0, - "1687": 0, - "1688": 0, - "1689": 0, - "1690": 0, - "1691": 0, - "1692": 0, - "1693": 0, - "1694": 0, - "1695": 0, - "1696": 0, - "1697": 0, - "1698": 0, - "1699": 0, - "1700": 0, - "1701": 0, - "1702": 0, - "1703": 0, - "1704": 0, - "1705": 0, - "1706": 0, - "1707": 0, - "1708": 0, - "1709": 0, - "1710": 0, - "1711": 0, - "1712": 0, - "1713": 0, - "1714": 0, - "1715": 0, - "1716": 0, - "1717": 0, - "1718": 0, - "1719": 0, - "1720": 0, - "1721": 0, - "1722": 0, - "1723": 0, - "1724": 0, - "1725": 0, - "1726": 0, - "1727": 0, - "1728": 0, - "1729": 0, - "1730": 0, - "1731": 0, - "1732": 0, - "1733": 0, - "1734": 0, - "1735": 0, - "1736": 0, - "1737": 0, - "1738": 0, - "1739": 0, - "1740": 0, - "1741": 0, - "1742": 0, - "1743": 0, - "1744": 0, - "1745": 0, - "1746": 0, - "1747": 0, - "1748": 0, - "1749": 0, - "1750": 0, - "1751": 0, - "1752": 0, - "1753": 0, - "1754": 0, - "1755": 0, - "1756": 0, - "1757": 0, - "1758": 0, - "1759": 0, - "1760": 0, - "1761": 0, - "1762": 0, - "1763": 0, - "1764": 0, - "1765": 0, - "1766": 0, - "1767": 0, - "1768": 0, - "1769": 0, - "1770": 0, - "1771": 0, - "1772": 0, - "1773": 0, - "1774": 0, - "1775": 0, - "1776": 0, - "1777": 0, - "1778": 0, - "1779": 0, - "1780": 0, - "1781": 0, - "1782": 0, - "1783": 0, - "1784": 0, - "1785": 0, - "1786": 0, - "1787": 0, - "1788": 0, - "1789": 0, - "1790": 0, - "1791": 0, - "1792": 0, - "1793": 0, - "1794": 0, - "1795": 0, - "1796": 0, - "1797": 0, - "1798": 0, - "1799": 0, - "1800": 0, - "1801": 0, - "1802": 0, - "1803": 0, - "1804": 0, - "1805": 0, - "1806": 0, - "1807": 0, - "1808": 0, - "1809": 0, - "1810": 0, - "1811": 0, - "1812": 0, - "1813": 0, - "1814": 0, - "1815": 0, - "1816": 0, - "1817": 0, - "1818": 0, - "1819": 0, - "1820": 0, - "1821": 0, - "1822": 0, - "1823": 0, - "1824": 0, - "1825": 0, - "1826": 0, - "1827": 0, - "1828": 0, - "1829": 0, - "1830": 0, - "1831": 0, - "1832": 0, - "1833": 0, - "1834": 0, - "1835": 0, - "1836": 0, - "1837": 0, - "1838": 0, - "1839": 0, - "1840": 0, - "1841": 0, - "1842": 0, - "1843": 0, - "1844": 0, - "1845": 0, - "1846": 0, - "1847": 0, - "1848": 0, - "1849": 0, - "1850": 0, - "1851": 0, - "1852": 0, - "1853": 0, - "1854": 0, - "1855": 0, - "1856": 0, - "1857": 0, - "1858": 0, - "1859": 0, - "1860": 0, - "1861": 0, - "1862": 0, - "1863": 0, - "1864": 0, - "1865": 0, - "1866": 0, - "1867": 0, - "1868": 0, - "1869": 0, - "1870": 0, - "1871": 0, - "1872": 0, - "1873": 0, - "1874": 0, - "1875": 0, - "1876": 0, - "1877": 0, - "1878": 0, - "1879": 0, - "1880": 0, - "1881": 0, - "1882": 0, - "1883": 0, - "1884": 0, - "1885": 0, - "1886": 0, - "1887": 0, - "1888": 0, - "1889": 0, - "1890": 0, - "1891": 0, - "1892": 0, - "1893": 0, - "1894": 0, - "1895": 0, - "1896": 0, - "1897": 0, - "1898": 0, - "1899": 0, - "1900": 0, - "1901": 0, - "1902": 0, - "1903": 0, - "1904": 0, - "1905": 0, - "1906": 0, - "1907": 0, - "1908": 0, - "1909": 0, - "1910": 0, - "1911": 0, - "1912": 0, - "1913": 0, - "1914": 0, - "1915": 0, - "1916": 0, - "1917": 0, - "1918": 0, - "1919": 0, - "1920": 0, - "1921": 0, - "1922": 0, - "1923": 0, - "1924": 0, - "1925": 0, - "1926": 0, - "1927": 0, - "1928": 0, - "1929": 0, - "1930": 0, - "1931": 0, - "1932": 0, - "1933": 0, - "1934": 0, - "1935": 0, - "1936": 0, - "1937": 0, - "1938": 0, - "1939": 0, - "1940": 0, - "1941": 0, - "1942": 0, - "1943": 0, - "1944": 0, - "1945": 0, - "1946": 0, - "1947": 0, - "1948": 0, - "1949": 0, - "1950": 0, - "1951": 0, - "1952": 0, - "1953": 0, - "1954": 0, - "1955": 0, - "1956": 0, - "1957": 0, - "1958": 0, - "1959": 0, - "1960": 0, - "1961": 0, - "1962": 0, - "1963": 0, - "1964": 0, - "1965": 0, - "1966": 0, - "1967": 0, - "1968": 0, - "1969": 0, - "1970": 0, - "1971": 0, - "1972": 0, - "1973": 0, - "1974": 0, - "1975": 0, - "1976": 0, - "1977": 0, - "1978": 0, - "1979": 0, - "1980": 0, - "1981": 0, - "1982": 0, - "1983": 0, - "1984": 0, - "1985": 0, - "1986": 0, - "1987": 0, - "1988": 0, - "1989": 0, - "1990": 0, - "1991": 0, - "1992": 0, - "1993": 0, - "1994": 0, - "1995": 0, - "1996": 0, - "1997": 0, - "1998": 0, - "1999": 0, - "2000": 0, - "2001": 0, - "2002": 0, - "2003": 0, - "2004": 0, - "2005": 0, - "2006": 0, - "2007": 0, - "2008": 0, - "2009": 0, - "2010": 0, - "2011": 0, - "2012": 0, - "2013": 0, - "2014": 0, - "2015": 0, - "2016": 0, - "2017": 0, - "2018": 0, - "2019": 0, - "2020": 0, - "2021": 0, - "2022": 0, - "2023": 0, - "2024": 0, - "2025": 0, - "2026": 0, - "2027": 0, - "2028": 0, - "2029": 0, - "2030": 0, - "2031": 0, - "2032": 0, - "2033": 0, - "2034": 0, - "2035": 0, - "2036": 0, - "2037": 0, - "2038": 0, - "2039": 0, - "2040": 0, - "2041": 0, - "2042": 0, - "2043": 0, - "2044": 0, - "2045": 0, - "2046": 0, - "2047": 0, - "2048": 0, - "2049": 0, - "2050": 0, - "2051": 0, - "2052": 0, - "2053": 0, - "2054": 0, - "2055": 0, - "2056": 0, - "2057": 0, - "2058": 0, - "2059": 0 - } - } - } - }, - "image_two": null, - "content_for_project": { - "id": 1, - "status": "draft", - "created_by": "9a6fbcfc-0bc7-4766-835d-93df7874cb42", - "created_on": "2022-04-12T20:39:09.308Z", - "name": "Test Project", - "location_country": "South Africa", - "main_image": "db02b54d-e11d-448d-921d-c93f9703987c", - "pillar": "joy", - "slug": "test-project", - "hero_background_color": "#E35169", - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 1, - 2, - 3, - 12, - 63, - 64, - 65, - 66 - ] - } - } - ] - }, - { - "id": 2, - "name": "WASH Project Bihar", - "pillar": "water", - "slug": "wash-project-bihar", - "location_country": "India", - "hero_background_color": null, - "main_image": { - "id": "d27a0109-9b85-4e74-a547-638a782b7dfd", - "storage": "minio", - "filename_disk": "d27a0109-9b85-4e74-a547-638a782b7dfd.jpg", - "filename_download": "image26.jpg", - "title": "Image26", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "uploaded_on": "2021-09-15T20:10:57.086Z", - "modified_by": null, - "modified_on": "2021-09-15T20:10:57.264Z", - "charset": null, - "filesize": "2091897", - "width": 2000, - "height": 1335, - "duration": null, - "embed": null, - "description": "", - "location": null, - "tags": null, - "metadata": { - "iptc": { - "ApplicationRecordVersion": "\u0000\u0004", - "DateCreated": "20150314", - "TimeCreated": "111512", - "DigitalCreationDate": "20150314", - "DigitalCreationTime": "111512" - }, - "ifd0": { - "Make": "NIKON CORPORATION", - "Model": "NIKON D3300", - "XResolution": 240, - "YResolution": 240, - "ResolutionUnit": "inches", - "Software": "Adobe Photoshop Lightroom 6.3 (Macintosh)", - "ModifyDate": "2015-11-22T15:00:36.000Z" - }, - "ifd1": { - "Compression": 6, - "XResolution": 72, - "YResolution": 72, - "ResolutionUnit": "inches", - "ThumbnailOffset": 938, - "ThumbnailLength": 18231 - }, - "exif": { - "ExposureTime": 0.01, - "FNumber": 4.8, - "ExposureProgram": "Not defined", - "ISO": 400, - "SensitivityType": 2, - "ExifVersion": "2.3", - "DateTimeOriginal": "2015-03-14T11:15:12.000Z", - "CreateDate": "2015-03-14T11:15:12.000Z", - "ShutterSpeedValue": 6.643856, - "ApertureValue": 4.526069, - "ExposureCompensation": 0, - "MaxApertureValue": 4.5, - "MeteringMode": "Pattern", - "LightSource": "Unknown", - "Flash": "Flash did not fire, auto mode", - "FocalLength": 40, - "SubSecTimeOriginal": "20", - "SubSecTimeDigitized": "20", - "ColorSpace": 1, - "SensingMethod": "One-chip color area sensor", - "FileSource": "Digital Camera", - "SceneType": "Directly photographed", - "CFAPattern": { - "0": 2, - "1": 0, - "2": 2, - "3": 0, - "4": 0, - "5": 1, - "6": 1, - "7": 2 - }, - "CustomRendered": "Normal", - "ExposureMode": "Auto", - "WhiteBalance": "Auto", - "DigitalZoomRatio": 1, - "FocalLengthIn35mmFormat": 60, - "SceneCaptureType": "Standard", - "GainControl": "Low gain up", - "Contrast": "Normal", - "Saturation": "Normal", - "Sharpness": "Normal", - "SubjectDistanceRange": "Unknown", - "SerialNumber": "8628114", - "LensInfo": [ - 18, - 55, - 3.5, - 5.6 - ], - "LensModel": "18.0-55.0 mm f/3.5-5.6" - } - } - }, - "content": [ - { - "id": 13, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.294Z", - "text": "Project Visit Report Bihar, India November 2015
\nBy Philippe Birker & David Caspers
\nWe will start this journey from the point where we are writing it from, the lovely capital of Nepal, Kathmandu. The three founders of the Love Foundation (Marius, David and Philippe) gathered here on the 8th of November 2015, and after a few days here we embarked towards our project in Bihar, India close to the Nepalese border. Due to the Nepalese fuel crisis sparked by an Indian-imposed fuel import blockade this was a bigger task than expected. Long story short we ended up in a Jeep with 7 other Nepalese and Chinese people trying to make it towards the border. Due to the current political turbulences on the Indian/Nepalese border, the main crossing in Raxaul was closed and we had to head further south to Biratnagar.
\nThe journey started with crossing the Nepalese mountains (serious mountains) in order to reach the valley where the Indian border was. Soon after we embarked, it became clear that safe driving in Nepal has a different meaning than in Europe and the three of us had a fair share of bonding moments when we went with screaming tires into another curve downwards the hills.
\n\n
Once at the bottom a military convoy welcomed us, being so kind escorting us and hundreds of other cars, busses and vans through the occupied militants zone in the south east of Nepal - through the dark of the middle of the night. Tensions between Nepal and India are at a height right now, given the blockade of fuel and oil imports from India to Nepal. With the sunrise in our backs, we finally believed to have reached our destination, and we walked over the border to India.
\n\n
However, a crucial exit stamp from Nepal was needed, which could only be gotten roughly 300 km east from where we were. Thus, we headed further to the border of Nepal and the Indian state of Bengal, in order to enter the country where our project is carried out. After another 8 hours and a total journey of 2.5 days, we finally reached our project area, and met with our colleagues Sanjib and Francesca from the Welthungerhilfe in Darbhanga, India.
\n\n
After a good night of rest, we left the hotel at 8am to drive to our project area. We were warmly welcomed by the Indian partner organization of the Welthungerhilfe, called GPSVS, which is operating from its head office in the middle of the project area, which we have been supporting over the last three years.
\n\n
There, we got a first overview and personal introduction to the work that has been carried out over the last few years, and we got an overview of what has been achieved. Before showing you the facts, we should explain that the main approach of GPSVS is to empower the local community and to initiate a behaviour change in the local population. The idea is that it does not help if you as an external actor build toilets that no one uses afterwards and that it is much more important to educate people about the importance of hygiene, the difference between clean water and pure water and other information related to WASH.
\n\n
The method that the GPSVS chose for this is the establishment of WASH committees in all of the project villages under its supervision. WASH committees are largely consisting of women (usually more than 80%) from the local villages. This serves the double purpose of giving empowering women in a male dominated society, as well as giving voice and decision making power to the community, as the WASH committee decides together with the GPSVS what should be done in order to increase the cleanliness as well as the access to safe drinking water, sanitation and hygienic practices in the specific village.
Our partner organisation GPSVS was established in 1977. Since then it is working on community-based mechanisms for self reliance and sustainability and cultivate e.g. an administrative unit as the focal point for promoting an inclusive model of self reliance, development and organization. Their focus is village self-reliance based on principles of Equity, Justice, Tolerance and ‘Ahimsa’ (= non violence). Key objectives of the organisation contain e.g. the formation of people’s organization for women and youths to strengthen the capacity of marginalized communities for sustainable development, influencing policies to create enabling environments for community led programmes. For GPSVS, all objectives should be achieved with gender sensitivity. GPSVS tries to work on a grassroots level with creative people’s involvement throughout the last 35 years in Bihar, and is since the past decade geographically widening their activities to other districts.
Concerning WASH, mass awareness campaigns on the issue of water-crisis at local and global level were created together with multi stakeholder initiatives on WASH practices. Concrete measures such as water testing and water treatment to monitor the water quality within a project area are taken in this framework. Next to the water component, our partner organisation work in contexts of SARL – Sustainable Agriculture and Rural Livelihood. Another of the nine programmes of GPSVS (what we explain here is just a brief selected overview) is a programme where they spread the word about the Right to Information, e.g. in the context of legal and social rights awareness camps for the disabled, minorities and women. GPSVS has more than 25 partners worldwide that it collaborates with, amongst other the Welthungerhilfe, European Union, UNDP, UNICEF and others.
\nOverall achievements:
\n
34 WASH committees have been established in order to manage WASH related issues in their villages
\n
\n
On a general note it has to be said, that full coverage of all households with individual toilets is not feasible. Public toilets have been installed in all villages, allowing all villagers to go the toilet in dignity, safety and in a clean environment. Also, from what we have seen hygienic awareness has been extremely increased, as the local women meet every month to discuss this issue and how to improve it specifically. One committee told us that they are, upon request, intending to go to villages of friends and family that have not been part of the program, in order to set up the same community-driven structures for development. Hence, even without GPSVS carrying out their work, development is taking place, as capacities and knowledge for self-reliance are being transferred, and not just technologies.
\n\n
Overall impact:
\n\n
1) Environment induced risk due to open defecation, open sewage, water logging, poor quality water, contamination of water at source and use storage of water has been reduced.
\n2) After this project social position of women/marginalised community has improved.
\n3) Awareness regarding safe water use practices and use of toilets has reduced the risks to water borne diseases.
\n4) Its impact is seen on improved earnings through the reduced expenditure on water borne diseases caused by contaminated water has caused 30% decrease in health expenditure.
\n\n
Even though these numbers are still far from perfect, Welthungerhilfe and GPSVS believe that the community is capable of taking things from here themselves and that they will further improve the WASH situation in their and the surrounding villages under guidance from the WASH committees established by us. Naturally, GPSVS and the Welthungerhilfe will keep on monitoring the situation on the ground, and a follow up report for 2016 will be provided by the end of the year.
", - "type": "text_only", - "sort": null, - "text_layout": "full_width", - "content_label": "Bihar 02", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 2, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:25.994Z", - "name": "WASH Project Bihar", - "location_country": "India", - "main_image": "d27a0109-9b85-4e74-a547-638a782b7dfd", - "pillar": "water", - "slug": "wash-project-bihar", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 13, - 61 - ] - } - } - ] - }, - { - "id": 3, - "name": "Simavi Project in Kenya", - "pillar": "water", - "slug": "simavi-project-in-kenya", - "location_country": "Kenya", - "hero_background_color": null, - "main_image": { - "id": "e2af1162-cdb4-4e65-b045-2500ba449b00", - "storage": "minio", - "filename_disk": "e2af1162-cdb4-4e65-b045-2500ba449b00.jpg", - "filename_download": "Save-Water-Chain-1024x576.jpg", - "title": "Save Water Chain 1024x576", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "uploaded_on": "2021-09-15T20:11:02.284Z", - "modified_by": null, - "modified_on": "2021-09-15T20:11:02.328Z", - "charset": null, - "filesize": "126971", - "width": 1024, - "height": 576, - "duration": null, - "embed": null, - "description": "", - "location": null, - "tags": null, - "metadata": null - }, - "content": [ - { - "id": 48, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.510Z", - "text": "Without having proper access and use of WASH facilities at schools and at households the health situation of the community will not improve adequately, and either the school based or the community / household WASH facilities will be overused and overburdened resulting in a reduced lifespan of the facilities. By paying only attention to school WASH while children at home do not have access to for example a latrine or the other way around, having access at home but not at school, only part of the problem has been solved. Specific attention to schools has proven advantages; children- early adopters- learn more easily than adults and they are quicker in adjusting their behaviour. Once children have accepted certain positive behaviour like hand washing or using a hygienic latrine they easily maintain that behaviour when they are adults.
\nBased on the above Simavi presents the ‘WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme. By integrating community and school WASH projects in three adjacent countries in East Africa, implemented by three local NGO partners which each have specific features and challenges, Simavi would like to ensure they learn from each other. Different approaches will be followed. By pooling three countries and three partners, Simavi can offer specific learning sessions and sharing for example on the results of pilots on small business development that will be assessed, improved and scaled out. One of the methods to share the learnings also with a broader public will be to add specific pages to the www.washinschools.info website. This website is being managed by the IRC since 2009 and the IRC can arrange to add pages / information on the WvW financed activities to facilitate the internal programme learning and sharing as well as the external sharing of information and experiences. Witteveen & Bos will provide specific technical training to the local NGOs to improve the technical component of the programme. Thereby increasing each their effectiveness at their respective local areas. In the meantime Simavi and A4A can present learning from this programme to improve the Community and School WASH projects of other stakeholders like Rotary Clubs.
\n\n
WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme
\nKenya : Nambale and Teso South Sub-Counties, Busia County, Western Kenya
\nKenya : CABDA (NGO, partner of Simavi since 2006), Maji Milele (business partner, prepaid water services), Davis&Shirtlif (private partner, pump supplier)
\nBrazil Tour 2018
", - "type": "text_only", - "sort": 1, - "text_layout": "full_width", - "content_label": "Brazil Tour", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 4, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.007Z", - "name": "Brazil Tour 2018", - "location_country": "Brazil", - "main_image": "2ab1b5bc-d4c8-44f0-b345-173fc26d844c", - "pillar": "community", - "slug": "brazil-tour-2018", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42 - ] - } - }, - { - "id": 29, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.222Z", - "text": "A Love Foundation é uma rede internacional de artistas e ativistas. Através de nossos eventos de esporte e cultura geramos recursos para projetos sociais, em especial aos relativos ao acesso a água potável e estrutura sanitária em regiões de pobreza, como os que já vem sendo realizados nos países africanos do Quênia e Etiópia através das nossas ONG's parceiras Viva con Agua e Simavi.
", - "type": "text_only", - "sort": null, - "text_layout": "full_width", - "content_label": "LF", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 4, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.007Z", - "name": "Brazil Tour 2018", - "location_country": "Brazil", - "main_image": "2ab1b5bc-d4c8-44f0-b345-173fc26d844c", - "pillar": "community", - "slug": "brazil-tour-2018", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42 - ] - } - }, - { - "id": 32, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.405Z", - "text": "Buscamos levar através dos nossos eventos a idéia do Amor Universal e do poder da comunidade em criar as mudanças necessárias para um mundo melhor e sustentável feito por tod@s e para tod@s. Acreditamos na Alegria como fator motivacional e de transformação, mas também acreditamos que tudo deve ter um propósito superior ao prazer individual. O acesso a água potável e estrutura sanitária para todas as pessoas do planeta é a missão principal de nossas atividades como premissa básica para a vida humana, assim como é o Amor.
A Love Foundation foi criada em 2013 por um designer e dois estudantes da Universidade de Maastricht na Holanda e já se espalhou pelo mundo realizando eventos em diversas partes do globo como EUA, Inglaterra e Israel e com atividade constante na Alemanha, Holanda, Espanha, Itália, Portugal, Finlândia e Austrália. Temos unidades ativas nas cidades de Berlin, Amsterdam, Milão, Dresden, Maastricht, Helsinki e Perth.
", - "type": "text_only", - "sort": null, - "text_layout": null, - "content_label": "founding", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 4, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.007Z", - "name": "Brazil Tour 2018", - "location_country": "Brazil", - "main_image": "2ab1b5bc-d4c8-44f0-b345-173fc26d844c", - "pillar": "community", - "slug": "brazil-tour-2018", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42 - ] - } - }, - { - "id": 35, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.421Z", - "text": "Nossos eventos vão de esportes a moda, arte e principalmente música feitos e decididos de maneira livre e espontânea por cada unidade do globo. Todos nós envolvidos doamos nosso trabalho e do lucro líquido revertemos 80% para os projetos sociais administrados por ONG's parceiras que realizam diretamente os projetos apoiados por nós, e 20% retorna para a unidade da Love Foundation custear sua estrutura básica e reinvestir em novas ações.
", - "type": "text_only", - "sort": null, - "text_layout": "full_width", - "content_label": "NGOs", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 4, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.007Z", - "name": "Brazil Tour 2018", - "location_country": "Brazil", - "main_image": "2ab1b5bc-d4c8-44f0-b345-173fc26d844c", - "pillar": "community", - "slug": "brazil-tour-2018", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 28, - 29, - 30, - 31, - 32, - 33, - 34, - 35, - 36, - 37, - 38, - 39, - 40, - 41, - 42 - ] - } - }, - { - "id": 36, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.426Z", - "text": "Viva con Agua de Sankt Pauli is a charitable organisation based in St. Pauli, Hamburg (Germany), campaigning for clean drinking water worldwide. It is also the recipient of all fundraising activities carried out by the Love Foundation.
", - "type": "text_only", - "sort": null, - "text_layout": "full_width", - "content_label": "VcA", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 5, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.012Z", - "name": "Viva con Agua de Sankt Pauli e.V.", - "location_country": "Germany", - "main_image": "ffbf9730-584b-4123-a995-85e0946de62d", - "pillar": "water", - "slug": "viva-con-agua-de-sankt-pauli-e-v", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 43, - 44, - 45, - 46, - 47 - ] - } - }, - { - "id": 44, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.481Z", - "text": "What is Viva con Agua?
\nBesides the air we breathe, water is the most fundamental source of life.
Water creates life, water is life. Water means healthy living, happy living. For Viva con Agua de Sankt Pauli this is the primary motivation for our activities - the funding and implementation of water projects around the world and thus enabling people to access clean water.
Viva con Agua sees itself as an open network! Everyone can get involved with Viva con Agua! Women and men of all ages, professions and backgrounds have access to the network, enabling everyone to bring in their own skills.
\nViva con Agua is a platform for personal initiative and engagement! - put your ideas for a more social world into action and we will support you.
", - "type": "image_right", - "sort": null, - "text_layout": null, - "content_label": "what is vca?", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 5, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.012Z", - "name": "Viva con Agua de Sankt Pauli e.V.", - "location_country": "Germany", - "main_image": "ffbf9730-584b-4123-a995-85e0946de62d", - "pillar": "water", - "slug": "viva-con-agua-de-sankt-pauli-e-v", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 43, - 44, - 45, - 46, - 47 - ] - } - }, - { - "id": 45, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.487Z", - "text": "Viva con Agua is the world's first All-Profit-Organisation!
Everyone benefits from our actions: the artists, organizers and visitors of events for and with Viva con Agua, the initiative itself and in particular the people in the specific project areas. In particular cross-cultural events form the basis for our fundraising.
We believe helping can be great fun while following respectable aims!
\nViva con Agua unites development cooperation, climate protection and sport.
\nThe main part of our funds is used for the realisation of drinking water projects using individually adapted solutions. Viva con Agua off-sets it's emissions of events and other fundraising activities by funding projects working on climate change. Viva con Agua has a primary connection to sport, especially football.
\nOur drinking water initiative has its roots in St. Pauli of Hamburg, the cosmopolitan borough of the city, situated along the waterside with the harbour as gateway to the world and FC. St. Pauli in its heart which by the way is also in the right place!
\nViva con Agua's aim is to bring about positive change through social engagement and through triggering developments in the right direction.
\nTo realise our drinking water projects we need resources. Most of Viva con Agua's funds are raised through various cultural and sporting events.
", - "type": "image_right", - "sort": null, - "text_layout": null, - "content_label": "full profit", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "de409449-9343-4777-944a-e55f8203c587", - "storage": "minio", - "filename_disk": "de409449-9343-4777-944a-e55f8203c587.png", - "filename_download": "11d55c9600a2431ce28fa483730005a7_f138.png", - "title": "11d55c9600a2431ce28fa483730005a7 F138", - "type": "image/png", - "folder": null, - "uploaded_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "uploaded_on": "2021-09-15T20:11:02.004Z", - "modified_by": null, - "modified_on": "2021-09-15T20:11:02.069Z", - "charset": null, - "filesize": "952148", - "width": 580, - "height": 820, - "duration": null, - "embed": null, - "description": "", - "location": null, - "tags": null, - "metadata": { - "ihdr": { - "ImageWidth": 580, - "ImageHeight": 820, - "BitDepth": 8, - "ColorType": "RGB with Alpha", - "Compression": "Deflate/Inflate", - "Filter": "Adaptive", - "Interlace": "Noninterlaced" - } - } - }, - "image_two": null, - "content_for_project": { - "id": 5, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.012Z", - "name": "Viva con Agua de Sankt Pauli e.V.", - "location_country": "Germany", - "main_image": "ffbf9730-584b-4123-a995-85e0946de62d", - "pillar": "water", - "slug": "viva-con-agua-de-sankt-pauli-e-v", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 43, - 44, - 45, - 46, - 47 - ] - } - }, - { - "id": 46, - "status": "published", - "created_by": "5d1b77de-5d89-446a-9ce4-1c0a28c0d74b", - "created_on": "2021-09-15T20:23:26.496Z", - "text": "Viva con Agua raises awareness on the issues surrounding access to clean drinking water by organising fundraising events such as concerts, parties, readings, exhibitions and fundraising walks as well as football benefit games and much more.
\nFurthermore, Viva con Agua wants to get young people interested in the topic of access to water and development in general. In order to push this idea, we organise events in schools, such as Water-Workshops, in which the youngest generation gets involved and actively engaged in the topic.
\nThe funds raised by the various events go entirely to Welthungerhilfe who guarantee a professional realisation of the projects. Welthungerhilfe is a private, politically independent, non-denominational relief non-profit-organisation which works under a voluntary Board of Directors and the patronage of the German President.
\nWe monitor and evaluate the way our funds are generation and then used for the projects in country.
\nAt Viva con Agua, football stands for the notion of fair play, transferred to the fair and respectful treatment of the people around us and our environment. For us, football symbolises sportive effort, which is needed to bring about change.
Football is to be understood as a sportive Esperanto, a language lifting borders and differences between people.
Viva con Agua - because water is life!
Text taken from www.vivaconagua.co.uk
Greetings! My name is Valentina Bellina and I started an internship at Love Foundation as social media manager in March 2022. I started remotely due to the pandemic, but finally I had the chance to meet some Love Foundation members in Brandenburg during the Love Captains’ meeting in April 2022.
\nLove Captains are the coordinators of the various hubs located in different cities. Monthly virtual meetings take place where we update each other on the activities and events organized by each hub as well as exchange and elaborate on our different ideas. Along with these online meetings, the Love Captains meet in person annually, such as the Brandeburg meeting I was a part of.
\nThe three days in the countryside of Brandenburg were crucial for me to learn more about the dynamics of Love Foundation. Additionally, the people I met, the food I ate, and the music I enjoyed were phenomenal during these days. All of this promotes the idea of community spirit as one of the main pillars that upholds Love Foundation.
\nThe coordination meeting of the German hubs was held in a wonderful and peaceful place, which was the right choice to develop new ideas together.
\n\n
", - "type": "text_only", - "sort": 0, - "text_layout": "full_width", - "content_label": "Love Captains Meeting 01 ", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 7, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-15T08:59:04.235Z", - "name": "Hub Coordinators' Meeting", - "location_country": "Germany", - "main_image": "bdf1f4dc-b4c6-4535-baa3-d5fa97781267", - "pillar": "community", - "slug": "love-captains-meeting-2022", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 67, - 68, - 69, - 70, - 71, - 72 - ] - } - }, - { - "id": 68, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-16T09:39:40.370Z", - "text": "
My trip to the countryside of Brandenburg was accompanied by Lucas, my supervisor, and Mitch, a member of the Munich hub. We left Berlin to reach a house, totally lost in nature and surrounded only by silence. When we arrived, it was already late, but we spent some time together with other members and started writing down a list of the main topics we would like to discuss the next day.
\nThe second day was the busiest one. We woke up in the early morning and had breakfast together that someone was kind enough to prepare. While we were drinking coffee, my shy gaze crossed with that of others - I was very curious about how the meeting would take place.
\nDue to the warm weather, we decided to start outside in the garden. First, we talked about how the pandemic decreased the interest of members of some hubs, mainly due to the overwhelming difficulty of organizing events in the last two years. The next topic was related to how to use and improve visibility through social media channels. I had talked about this with Franze, who manages the Love Foundation Berlin Instagram profile, before, so I was able to get to know some of the ideas and challenges that had come up over recent years.
\n", - "type": "image_left", - "sort": 1, - "text_layout": "full_width", - "content_label": "Love Captains' Meeting 02", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "5be1c061-ff7c-4eca-80d9-d114bd39f901", - "storage": "minio", - "filename_disk": "5be1c061-ff7c-4eca-80d9-d114bd39f901.jpeg", - "filename_download": "Pic 2.jpeg", - "title": "Pic 2", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "uploaded_on": "2022-07-17T09:13:50.107Z", - "modified_by": null, - "modified_on": "2022-07-17T09:13:50.325Z", - "charset": null, - "filesize": "453997", - "width": 1125, - "height": 2000, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "image_two": null, - "content_for_project": { - "id": 7, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-15T08:59:04.235Z", - "name": "Hub Coordinators' Meeting", - "location_country": "Germany", - "main_image": "bdf1f4dc-b4c6-4535-baa3-d5fa97781267", - "pillar": "community", - "slug": "love-captains-meeting-2022", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 67, - 68, - 69, - 70, - 71, - 72 - ] - } - }, - { - "id": 69, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-17T09:19:13.257Z", - "text": "
On the third and last day, we spent an amazing time together at the Seftenberg lake where we enjoyed the fabulous landscape. Then, we organized the rides home, hugged, and went our separate ways, all with very big smiles on our faces.
", - "type": "image_right", - "sort": 2, - "text_layout": "full_width", - "content_label": "Love Captains Meeting 03", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "e5d5faf0-7a2d-4b55-acf4-5840de5885b2", - "storage": "minio", - "filename_disk": "e5d5faf0-7a2d-4b55-acf4-5840de5885b2.jpeg", - "filename_download": "Pic 4.jpeg", - "title": "Pic 4", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "uploaded_on": "2022-07-17T09:26:03.954Z", - "modified_by": null, - "modified_on": "2022-07-17T09:26:05.319Z", - "charset": null, - "filesize": "522112", - "width": 2000, - "height": 1125, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "image_two": null, - "content_for_project": { - "id": 7, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-15T08:59:04.235Z", - "name": "Hub Coordinators' Meeting", - "location_country": "Germany", - "main_image": "bdf1f4dc-b4c6-4535-baa3-d5fa97781267", - "pillar": "community", - "slug": "love-captains-meeting-2022", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 67, - 68, - 69, - 70, - 71, - 72 - ] - } - }, - { - "id": 70, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-17T09:32:59.541Z", - "text": "The friendly atmosphere during these two and a half days was essential to understanding how the community functions and especially how important it is to attend these meetings: not only to keep raising awareness for diversity, gender equality, and change, but it also serves as a reminder to why and how we volunteer for Love Foundation in the first place. This is why I loved asking for and listening to the stories of community members and how they came to become part of Love Foundation.
", - "type": "image_left", - "sort": 3, - "text_layout": "full_width", - "content_label": "Love Captains' Meeting 04", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "60ca72f9-b75f-458e-a8d4-9c250c323d94", - "storage": "minio", - "filename_disk": "60ca72f9-b75f-458e-a8d4-9c250c323d94.jpeg", - "filename_download": "Pic 5.jpeg", - "title": "Pic 5", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "uploaded_on": "2022-07-17T09:32:25.817Z", - "modified_by": null, - "modified_on": "2022-07-17T09:32:28.514Z", - "charset": null, - "filesize": "178400", - "width": 2000, - "height": 1125, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "image_two": null, - "content_for_project": { - "id": 7, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-15T08:59:04.235Z", - "name": "Hub Coordinators' Meeting", - "location_country": "Germany", - "main_image": "bdf1f4dc-b4c6-4535-baa3-d5fa97781267", - "pillar": "community", - "slug": "love-captains-meeting-2022", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 67, - 68, - 69, - 70, - 71, - 72 - ] - } - }, - { - "id": 71, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-17T09:38:55.593Z", - "text": "The amazing thing about this community is not only the different personalities but also how the pillars of the organization are mirrored in each of us, from those who are more connected to environmental protection issues, to those who are more interested in political dynamics. I strongly believe that this diversity of interests makes this community unique and meeting all these amazing people reminded me of why I decided to become part of this project originally.
", - "type": "image_right", - "sort": 4, - "text_layout": "full_width", - "content_label": "Love Captains' Meeting 05", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "4208c4f7-9b79-4381-8787-dbbf07f45f4f", - "storage": "minio", - "filename_disk": "4208c4f7-9b79-4381-8787-dbbf07f45f4f.jpeg", - "filename_download": "pic 6.jpeg", - "title": "Pic 6", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "uploaded_on": "2022-07-17T09:37:08.968Z", - "modified_by": null, - "modified_on": "2022-07-17T09:37:09.265Z", - "charset": null, - "filesize": "162572", - "width": 1125, - "height": 2000, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "image_two": null, - "content_for_project": { - "id": 7, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-15T08:59:04.235Z", - "name": "Hub Coordinators' Meeting", - "location_country": "Germany", - "main_image": "bdf1f4dc-b4c6-4535-baa3-d5fa97781267", - "pillar": "community", - "slug": "love-captains-meeting-2022", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 67, - 68, - 69, - 70, - 71, - 72 - ] - } - }, - { - "id": 72, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-17T09:41:31.363Z", - "text": "In the beginning, when I decided to move to Berlin, without speaking the language properly and without any acquaintances, everything seemed to be very complicated and tough; but through my involvement in Love Foundation and the power of its community, I realized the importance of collectivity.
\nWhile I still have to learn a lot from this experience, I have already realized that by doing an internship in social media and my presence at events, such as the Love Captains’ meeting are crucial first steps. Since I am interested in photography, documenting such events with pictures will be one of my main goals.
\n", - "type": "image_left", - "sort": 5, - "text_layout": "full_width", - "content_label": "Love Captains' Meeting 06", - "distance_to_next": "small", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "fef4c8ce-91bd-46ba-a4b6-a11779d60bb1", - "storage": "minio", - "filename_disk": "fef4c8ce-91bd-46ba-a4b6-a11779d60bb1.jpeg", - "filename_download": "pic 7.jpeg", - "title": "Pic 7", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "uploaded_on": "2022-07-17T09:41:05.284Z", - "modified_by": null, - "modified_on": "2022-07-17T09:41:07.973Z", - "charset": null, - "filesize": "187362", - "width": 1125, - "height": 2000, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "image_two": null, - "content_for_project": { - "id": 7, - "status": "published", - "created_by": "4909fb5a-a05c-4c2e-be3a-cf80f93f5808", - "created_on": "2022-07-15T08:59:04.235Z", - "name": "Hub Coordinators' Meeting", - "location_country": "Germany", - "main_image": "bdf1f4dc-b4c6-4535-baa3-d5fa97781267", - "pillar": "community", - "slug": "love-captains-meeting-2022", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 67, - 68, - 69, - 70, - 71, - 72 - ] - } - } - ] - }, - { - "id": 14, - "name": "Nina Manzi- Cape Town WASH Bus Project", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "location_country": "South Africa ", - "hero_background_color": null, - "main_image": { - "id": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "storage": "minio", - "filename_disk": "300547cb-0adc-4f72-b4dc-0528f06704fd.jpeg", - "filename_download": "SA Cape Town Report (1) .jpeg", - "title": "Sa Cape Town Report (1) ", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "uploaded_on": "2022-12-02T14:04:12.639Z", - "modified_by": null, - "modified_on": "2022-12-02T14:04:12.840Z", - "charset": null, - "filesize": "58364", - "width": 800, - "height": 450, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": {} - }, - "content": [ - { - "id": 74, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.842Z", - "text": "
\n
South Africa, especially Cape Town, has faced a myriad of issues, both stemming from historical injustices to current socioeconomic instability. Cape Town, like many Southern African cities was facing a major drought in 2018, leading extreme water insecurity. A looming Day Zero in which there would be no water for consumption within the city seemed to be on the horizon for Cape Town. In this situation, the gap between the impoverished and the wealthy were prevalent with the building of private wells, purchasing of inflated-priced water bottles, and even paying water-usage fines being undertaken by those who could afford to while those who could not were left in the hands of the government.
", - "type": "image_right", - "sort": 2, - "text_layout": "one_column", - "content_label": "Background", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "6117cf54-9ef9-46e2-98be-cd9f5eb897e9", - "storage": "minio", - "filename_disk": "6117cf54-9ef9-46e2-98be-cd9f5eb897e9.webp", - "filename_download": "SA Cape Town Report.webp", - "title": "Sa Cape Town Report", - "type": "image/webp", - "folder": null, - "uploaded_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "uploaded_on": "2022-12-02T17:06:36.983Z", - "modified_by": null, - "modified_on": "2022-12-02T17:06:37.143Z", - "charset": null, - "filesize": "30770", - "width": 865, - "height": 431, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": null - }, - "image_two": null, - "content_for_project": { - "id": 14, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.832Z", - "name": "Nina Manzi- Cape Town WASH Bus Project", - "location_country": "South Africa ", - "main_image": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 74, - 89, - 90, - 103, - 104, - 106, - 107, - 108, - 109 - ] - } - }, - { - "id": 90, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:38:33.297Z", - "text": "It is then no surprise that Love Foundation had a hub born out of this water crisis with the Cape Town hub being founded in 2019. The four founding members hit the ground running, organizing beautiful parties and yoga sessions, but hit a wall with the pandemic. However, our main partner, Viva con Aqua turned its sights to Cape Town and founded a branch in 2020. Along with this branch, Viva con Aqua opened Villa Viva, a multi-purpose guest house, networking platform and creative hub to be utilized by both Viva con Aqua team and the Love Foundation hubs. Thankfully by then, sufficient rain fall had provided the Cape Town region with plenty of water, avoiding the Day Zero catastrophe.
\n", - "type": "image_left", - "sort": 3, - "text_layout": "one_column", - "content_label": "Background (2)", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "6d960db9-482d-417c-9754-bc46729e2614", - "storage": "minio", - "filename_disk": "6d960db9-482d-417c-9754-bc46729e2614.png", - "filename_download": "SA Cape Town (4).png", - "title": "Sa Cape Town (4)", - "type": "image/png", - "folder": null, - "uploaded_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "uploaded_on": "2022-12-02T17:09:23.162Z", - "modified_by": null, - "modified_on": "2022-12-02T17:09:23.334Z", - "charset": null, - "filesize": "323496", - "width": 512, - "height": 323, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": {} - }, - "image_two": null, - "content_for_project": { - "id": 14, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.832Z", - "name": "Nina Manzi- Cape Town WASH Bus Project", - "location_country": "South Africa ", - "main_image": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 74, - 89, - 90, - 103, - 104, - 106, - 107, - 108, - 109 - ] - } - }, - { - "id": 103, - "status": "draft", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T16:59:35.324Z", - "text": "
While water security is something to be celebrated, it was not the end to the issues facing Cape Town. From the start of the pandemic in 2020, homelessness has been rising with some local estimations of 300 percent increases. Similar to the water insecurity situation and many of the issues faced in South Africa, it comes down to the have’s and the have-not’s, whether that be political power seen in deeply racist history or the current wide gap between socioeconomic groups.
\n", - "type": "text_only", - "sort": 4, - "text_layout": "full_width", - "content_label": "Background (3)", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 14, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.832Z", - "name": "Nina Manzi- Cape Town WASH Bus Project", - "location_country": "South Africa ", - "main_image": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 74, - 89, - 90, - 103, - 104, - 106, - 107, - 108, - 109 - ] - } - }, - { - "id": 104, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T17:00:12.124Z", - "text": "
While there are a few names for this idea, Soapbox bus, WASH bus, etc, the idea is very straightforward: provide those experiencing homelessness with access to fully working bathrooms. This simple, yet crucial part of every day life cannot always be accessed by those living on the streets and can widen the barrier to re-enter into society. In providing this service, this project aims to restore dignity and eradicate preventable diseases experienced from a lack of hygiene. It can also display a better way of approaching homelessness; 45 percent of the city’s homelessness budget is used to incarcerate and harass the homeless population.
\nTo get an initial design for the WASH bus, Absolute Ablutions was the first organization to consult. With a specialized focus on mobile sanitation trailers, they designed the perfect bus for our project, complete with four showers and four bathrooms. Additionally, the paint job on the bus was designed by an urban art organization, Baz-Art to reflect the day-to-day lives of those experiencing homelessness.
\nThe final key partner in this project is U-Turn, an NGO focused on shaping a path back into society for the homeless population of Cape Town. U-Turn developed a voucher program that allow those in need to earn vouchers by cleaning up trash which they are able to use on food and clothing. With this system, those with these vouchers can use them for the WASH bus. This way it avoids the feeling of receiving a “hand out”, rather someone experiencing homelessness could feel a sense of accomplishment that may be missing from their day to day life.
", - "type": "image_right", - "sort": 6, - "text_layout": "full_width", - "content_label": "WASH Bus (1)", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "95426940-71e1-4fae-b53b-0ac6f3b7e6b9", - "storage": "minio", - "filename_disk": "95426940-71e1-4fae-b53b-0ac6f3b7e6b9.jpeg", - "filename_download": "SA Cape Town Report (2) .jpeg", - "title": "Sa Cape Town Report (2) ", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "uploaded_on": "2022-12-02T17:26:32.665Z", - "modified_by": null, - "modified_on": "2022-12-02T17:26:32.816Z", - "charset": null, - "filesize": "130792", - "width": 700, - "height": 1050, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": {} - }, - "image_two": null, - "content_for_project": { - "id": 14, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.832Z", - "name": "Nina Manzi- Cape Town WASH Bus Project", - "location_country": "South Africa ", - "main_image": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 74, - 89, - 90, - 103, - 104, - 106, - 107, - 108, - 109 - ] - } - }, - { - "id": 106, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T17:01:53.363Z", - "text": "This WASH Bus was initiated at the end of 2021. However, a major roadblock was hit with the city government as this project required access to city water. Although this hindered the project, it did not stop there and the first WASH bus rolled out on July 2022. Appropriately named, “Nina Manzi”, meaning mother of water, the bus served those in the Claremont neighborhood for the pilot program. Since then, it has expanded to two other neighborhoods, Muizenberg and Michelles Plain. During the first months, there was a noticeable disparity between the amount of men versus women using the services. To welcome more women to use the facilities, there are separate entrances for both men and women.
\nThis project has received a great deal of local media coverage, interviewing those using this bus. Some users have very expected responses, with many using the shower facilities before a job interviews and one user reporting “feeling fresh and ready to go,” after a fresh shower. However, this can be an emotional experience for some. One women who has lived on the streets for 30 years said, “I just cried underneath the water”. These reports show the social benefits of this project by providing the opportunity to restore confidence before job interviews. However, it also displays the mental anguish and anxiety homelessness can bring and how powerful providing the services of the WASH bus may be in relieving those mental conditions.
", - "type": "image_left", - "sort": 8, - "text_layout": "full_width", - "content_label": "WASH Bus (3) ", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "b45c51e0-c689-43ce-bdb1-ed3417fae0a2", - "storage": "minio", - "filename_disk": "b45c51e0-c689-43ce-bdb1-ed3417fae0a2.jpeg", - "filename_download": "SA Cape Town Report (3) .jpeg", - "title": "Sa Cape Town Report (3) ", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "uploaded_on": "2022-12-02T17:31:21.060Z", - "modified_by": null, - "modified_on": "2022-12-02T17:31:21.171Z", - "charset": null, - "filesize": "12381", - "width": 275, - "height": 183, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": {} - }, - "image_two": null, - "content_for_project": { - "id": 14, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.832Z", - "name": "Nina Manzi- Cape Town WASH Bus Project", - "location_country": "South Africa ", - "main_image": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 74, - 89, - 90, - 103, - 104, - 106, - 107, - 108, - 109 - ] - } - }, - { - "id": 107, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T17:02:30.417Z", - "text": "With the success of the pilot program, the WASH bus has revealed a new tool to improve conditions for those on the streets of Cape Town. While homelessness has a myriad of interconnecting issues and potential solutions, this seemingly simple initiative of providing washrooms could prove to change the existing views on how to proactively help people out of homelessness. Rather than the traditional punitive measures taken by the city, this process strives to welcome back those isolated from society with a hot shower as well as the job training offered by U-Turn. In line with past Love Foundation WASH projects, the realities of water inaccessibility and lack of hygienic resources are met with practical, community-oriented solutions. We expect to see the continued success of the WASH bus in helping to pave the path back into society for those experiencing homelessness. Additionally, we hope that that this project’s success can be a factor in reshaping the perception of homelessness and the city government’s policies to combat it to a certain degree, Who knows? Maybe this paradigm shift even travels beyond the cultural and administrative borders of Cape town? It is certainly desirable and necessary.
", - "type": "text_only", - "sort": 9, - "text_layout": "full_width", - "content_label": "Outro ", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": null, - "image_two": null, - "content_for_project": { - "id": 14, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.832Z", - "name": "Nina Manzi- Cape Town WASH Bus Project", - "location_country": "South Africa ", - "main_image": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 74, - 89, - 90, - 103, - 104, - 106, - 107, - 108, - 109 - ] - } - }, - { - "id": 108, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T17:03:25.555Z", - "text": "Our Main Partner:
\nhttps://vivaconagua.org.za/wash-bus/
\nLocal News Articles:
\nhttps://headtopics.com/za/mobile-showers-for-homeless-people-launched-in-cape-town-29379622
https://www.dailymaverick.co.za/article/2022-08-26-launch-of-mobile-showers-provides-splash-of-dignity-for-homeless-people/?=
https://www.sapeople.com/2022/08/26/mobile-showers-for-homeless-people-mother-of-water-bus-launched/
https://www.citizen.co.za/news/south-africa/3183921/mobile-showers-for-homeless-people-mother-of-water-bus-launched/
https://kby.za.net/2022/08/26/mobiele-storte-vir-hawelose-mense-in-kaapstad-van-stapel-gestuur/
https://www.goodthingsguy.com/people/mobile-showers-for-homeless-people-mother-of-water-bus-launched/
https://www.capetalk.co.za/articles/452941/mobile-wash-bus-to-bring-dignity-to-cape-town-s-homeless-communities
While Viva con Aqua and Love Foundation carried out a WASH project known as WINS (WASH in Schools) in the 2020, the homelessness epidemic facing Cape Town was something that could no longer be ignored. The main objective identified was the re-socialization of people experiencing homelessness who deal with the immense anxiety of street noise, insecure housing, and potential financial debt. From this, the idea of the WASH bus was founded.
", - "type": "image_left", - "sort": 5, - "text_layout": null, - "content_label": "CAPE TOWN (WINS) ", - "distance_to_next": "", - "captions": null, - "hero_background_color": null, - "on_page": null, - "image": { - "id": "3d538034-465f-437c-8d02-d32da4fa7873", - "storage": "minio", - "filename_disk": "3d538034-465f-437c-8d02-d32da4fa7873.jpeg", - "filename_download": "SA Report (WINS).jpeg", - "title": "Sa Report (wins)", - "type": "image/jpeg", - "folder": null, - "uploaded_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "uploaded_on": "2022-12-02T17:12:29.007Z", - "modified_by": null, - "modified_on": "2022-12-02T17:12:29.127Z", - "charset": null, - "filesize": "68486", - "width": 479, - "height": 320, - "duration": null, - "embed": null, - "description": null, - "location": null, - "tags": null, - "metadata": { - "ifd0": { - "Make": "NIKON CORPORATION", - "Model": "NIKON D600" - }, - "exif": { - "FNumber": 11, - "ExposureTime": 0.004, - "FocalLength": 40, - "ISO": 320 - } - } - }, - "image_two": null, - "content_for_project": { - "id": 14, - "status": "published", - "created_by": "d4d3d420-7bde-4afd-9295-683e6bd414bd", - "created_on": "2022-12-02T14:07:52.832Z", - "name": "Nina Manzi- Cape Town WASH Bus Project", - "location_country": "South Africa ", - "main_image": "300547cb-0adc-4f72-b4dc-0528f06704fd", - "pillar": "water", - "slug": "nina-manzi-cape-town-wash-bus-project", - "hero_background_color": null, - "contact_main_partner_organisation": null, - "link_main_partner_organisation": null, - "location_city": null, - "partner_organisations": null, - "project_info": null, - "short_description": null, - "events_that_donated": [], - "content": [ - 74, - 89, - 90, - 103, - 104, - 106, - 107, - 108, - 109 - ] - } - } - ] - } - ] -} + data: [ + { + id: 1, + name: 'Test Project', + pillar: 'joy', + slug: 'test-project', + location_country: 'South Africa', + hero_background_color: '#E35169', + content: [ + { + id: 1, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.228Z', + text: 'Meow all night leave dead animals as gifts when owners are asleep, cry for no apparent reason. Run outside as soon as door open twitch tail in permanent irritation and give me some of your food give me some of your food give me some of your food meh, i don\'t want it but flex claws on the human\'s belly and purr like a lawnmower if human is on laptop sit on the keyboard meow meow mama. Somehow manage to catch a bird but have no idea what to do next, so play with it until it dies of shock kitty kitty for jump launch to pounce upon little yarn mouse, bare fangs at toy run hide in litter box until treats are fed. Meow meow meow mama cat meoooow i iz master of hoomaan, not hoomaan master of i, oooh damn dat dog so have my breakfast spaghetti yarn if it fits i sits attack the child. Catto munch salmono white cat sleeps on a black shirt play riveting piece on synthesizer keyboard but sleep in the bathroom sink. Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
', + type: 'image_left', + sort: 7, + text_layout: null, + content_label: 'test Project 102', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: { + id: 4, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:25.771Z', + modified_by: '129a7a19-43ca-427a-aa76-8e331677c56c', + name: 'test', + slug: 'test', + hero_background_color: null, + content: [1, 2, 4, 5, 6, 7, 8, 9, 10, 14, 40, 49, 50, 51, 52, 54] + }, + image: { + id: '7b67dfad-2323-4f38-8464-37161617af1c', + storage: 'minio', + filename_disk: '7b67dfad-2323-4f38-8464-37161617af1c.jpeg', + filename_download: '14316778_689987071153334_4575082444412855580_n.jpeg', + title: '14316778 689987071153334 4575082444412855580 N', + type: 'image/jpeg', + folder: null, + uploaded_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + uploaded_on: '2021-09-15T20:07:53.604Z', + modified_by: null, + modified_on: '2021-09-15T20:07:54.009Z', + charset: null, + filesize: '127776', + width: 960, + height: 960, + duration: null, + embed: null, + description: '', + location: null, + tags: null, + metadata: { + iptc: { + OriginalTransmissionReference: '1dry5Gz-HzhRucXl1LIO' + } + } + }, + image_two: null, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + }, + { + id: 2, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.233Z', + text: 'Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
', + type: 'image_right', + sort: 5, + text_layout: null, + content_label: 'test project 103', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: { + id: 4, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:25.771Z', + modified_by: '129a7a19-43ca-427a-aa76-8e331677c56c', + name: 'test', + slug: 'test', + hero_background_color: null, + content: [1, 2, 4, 5, 6, 7, 8, 9, 10, 14, 40, 49, 50, 51, 52, 54] + }, + image: { + id: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128', + storage: 'minio', + filename_disk: '4ac6ee8b-9088-47e7-97f8-cef7aa9ad128.jpeg', + filename_download: '14712920_698139953671785_1736708767633790136_o.jpeg', + title: '14712920 698139953671785 1736708767633790136 O', + type: 'image/jpeg', + folder: null, + uploaded_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + uploaded_on: '2021-09-15T20:07:55.314Z', + modified_by: null, + modified_on: '2021-09-15T20:07:55.389Z', + charset: null, + filesize: '414099', + width: 1532, + height: 1532, + duration: null, + embed: null, + description: '', + location: null, + tags: null, + metadata: { + iptc: { + OriginalTransmissionReference: '6Sp4gfVhM6zIbrOg35WF', + SpecialInstructions: + 'FBMD01000a9d0d00009e7a0000d4010100b20e010008180100e8890100572503008b4003000c5c03000271030093510600' + } + } + }, + image_two: null, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + }, + { + id: 3, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.238Z', + text: 'Meow all night leave dead animals as gifts when owners are asleep, cry for no apparent reason. Run outside as soon as door open twitch tail in permanent irritation and give me some of your food give me some of your food give me some of your food meh, i don\'t want it but flex claws on the human\'s belly and purr like a lawnmower if human is on laptop sit on the keyboard meow meow mama. Somehow manage to catch a bird but have no idea what to do next, so play with it until it dies of shock kitty kitty for jump launch to pounce upon little yarn mouse, bare fangs at toy run hide in litter box until treats are fed. Meow meow meow mama cat meoooow i iz master of hoomaan, not hoomaan master of i, oooh damn dat dog so have my breakfast spaghetti yarn if it fits i sits attack the child. Catto munch salmono white cat sleeps on a black shirt play riveting piece on synthesizer keyboard but sleep in the bathroom sink. Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
\nMeow all night leave dead animals as gifts when owners are asleep, cry for no apparent reason. Run outside as soon as door open twitch tail in permanent irritation and give me some of your food give me some of your food give me some of your food meh, i don\'t want it but flex claws on the human\'s belly and purr like a lawnmower if human is on laptop sit on the keyboard meow meow mama. Somehow manage to catch a bird but have no idea what to do next, so play with it until it dies of shock kitty kitty for jump launch to pounce upon little yarn mouse, bare fangs at toy run hide in litter box until treats are fed. Meow meow meow mama cat meoooow i iz master of hoomaan, not hoomaan master of i, oooh damn dat dog so have my breakfast spaghetti yarn if it fits i sits attack the child. Catto munch salmono white cat sleeps on a black shirt play riveting piece on synthesizer keyboard but sleep in the bathroom sink. Demand to be let outside at once, and expect owner to wait for me as i think about it licks paws but munch, munch, chomp, chomp that box? i can fit in that box sleep all day whilst slave is at work, play all night whilst slave is sleeping, cat not kitten around see owner, run in terror
', + type: 'text_only', + sort: 0, + text_layout: null, + content_label: 'test project 104', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + }, + { + id: 12, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.318Z', + text: 'Great Text that is Amazing
', + type: 'image_left', + sort: 1, + text_layout: null, + content_label: 'Test Project 101', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '19732a7e-0486-4f2b-aabf-691ab786237f', + storage: 'minio', + filename_disk: '19732a7e-0486-4f2b-aabf-691ab786237f.png', + filename_download: 'Plakat_KB_schwarz_KombiLogoBunt_A1.png', + title: 'Plakat Kb Schwarz Kombi Logo Bunt A1', + type: 'image/png', + folder: null, + uploaded_by: '9ae0d8fb-1015-405d-bcef-6040c3ee1c03', + uploaded_on: '2022-01-13T20:34:28.225Z', + modified_by: null, + modified_on: '2022-01-13T20:34:28.626Z', + charset: null, + filesize: '556572', + width: 2268, + height: 3201, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: { + ihdr: { + ImageWidth: 2268, + ImageHeight: 3201, + BitDepth: 8, + ColorType: 'RGB with Alpha', + Compression: 'Deflate/Inflate', + Filter: 'Adaptive', + Interlace: 'Noninterlaced', + Software: 'www.inkscape.org' + } + } + }, + image_two: null, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + }, + { + id: 63, + status: 'published', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-06-03T08:09:12.171Z', + text: null, + type: 'image_only', + sort: 2, + text_layout: null, + content_label: 'test project 105', + distance_to_next: 'large', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '27e12940-8abe-42bd-8571-098d4ec3c0cb', + storage: 'minio', + filename_disk: '27e12940-8abe-42bd-8571-098d4ec3c0cb.jpg', + filename_download: 'kerria.jpg', + title: 'Kerria', + type: 'image/jpeg', + folder: null, + uploaded_by: '392835b4-5bff-4f9f-8ffe-46f7e61f8222', + uploaded_on: '2022-05-31T20:53:48.151Z', + modified_by: null, + modified_on: '2022-05-31T20:53:48.245Z', + charset: null, + filesize: '88814', + width: 640, + height: 1138, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: { + iptc: { + SpecialInstructions: + 'FBMD0a000a70010000d92a00009962000029690000a7720000569300009cd300004adc00008ee6000021f20000ee5a0100' + } + } + }, + image_two: null, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + }, + { + id: 64, + status: 'published', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-06-03T08:10:28.709Z', + text: 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet. Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam erat, sed diam voluptua. At vero eos et accusam et justo duo dolores et ea rebum. Stet clita kasd gubergren, no sea takimata sanctus est Lorem ipsum dolor sit amet.
\nDuis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.
\nUt wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.
\nNam liber tempor cum soluta nobis eleifend option congue nihil imperdiet doming id quod mazim placerat facer possim assum. Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
\nDuis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis.
', + type: 'text_only', + sort: 3, + text_layout: 'two_columns', + content_label: 'test project 106', + distance_to_next: 'medium', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + }, + { + id: 65, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-06-03T08:11:42.277Z', + text: null, + type: 'double_image', + sort: 4, + text_layout: null, + content_label: 'test project 106', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '0ec6b96b-1621-457b-8c45-8928328beba0', + storage: 'minio', + filename_disk: '0ec6b96b-1621-457b-8c45-8928328beba0.jpeg', + filename_download: 'ladybug.jpeg', + title: 'Ladybug', + type: 'image/jpeg', + folder: null, + uploaded_by: '392835b4-5bff-4f9f-8ffe-46f7e61f8222', + uploaded_on: '2022-05-31T20:53:12.548Z', + modified_by: null, + modified_on: '2022-05-31T20:53:12.698Z', + charset: null, + filesize: '168992', + width: 960, + height: 1280, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + image_two: { + id: 'b5d03a03-8db6-4ff1-8c0a-2247a8b6d412', + storage: 'minio', + filename_disk: 'b5d03a03-8db6-4ff1-8c0a-2247a8b6d412.jpg', + filename_download: 'artworks-SePLomPxxhTVbzaf-EkAzOw-t500x500.jpg', + title: 'Artworks Se P Lom Pxxh T Vbzaf Ek Az Ow T500x500', + type: 'image/jpeg', + folder: null, + uploaded_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + uploaded_on: '2022-05-11T15:55:13.697Z', + modified_by: null, + modified_on: '2022-05-11T15:55:13.910Z', + charset: null, + filesize: '30489', + width: 500, + height: 500, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + }, + { + id: 66, + status: 'published', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-06-03T08:30:35.756Z', + text: null, + type: 'full_width', + sort: 6, + text_layout: null, + content_label: 'test project 107', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: 'df776a4a-10ed-48bf-b566-4cb8f78d4c1a', + storage: 'minio', + filename_disk: 'df776a4a-10ed-48bf-b566-4cb8f78d4c1a.jpeg', + filename_download: 'Marcelito.jpeg', + title: 'Marcelito', + type: 'image/jpeg', + folder: null, + uploaded_by: '9ae0d8fb-1015-405d-bcef-6040c3ee1c03', + uploaded_on: '2022-01-13T20:46:29.517Z', + modified_by: null, + modified_on: '2022-01-13T20:46:29.717Z', + charset: null, + filesize: '159939', + width: 1020, + height: 836, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: { + ifd0: { + '59932': { + '0': 28, + '1': 234, + '2': 0, + '3': 0, + '4': 0, + '5': 8, + '6': 0, + '7': 0, + '8': 0, + '9': 0, + '10': 0, + '11': 0, + '12': 0, + '13': 0, + '14': 0, + '15': 0, + '16': 0, + '17': 0, + '18': 0, + '19': 0, + '20': 0, + '21': 0, + '22': 0, + '23': 0, + '24': 0, + '25': 0, + '26': 0, + '27': 0, + '28': 0, + '29': 0, + '30': 0, + '31': 0, + '32': 0, + '33': 0, + '34': 0, + '35': 0, + '36': 0, + '37': 0, + '38': 0, + '39': 0, + '40': 0, + '41': 0, + '42': 0, + '43': 0, + '44': 0, + '45': 0, + '46': 0, + '47': 0, + '48': 0, + '49': 0, + '50': 0, + '51': 0, + '52': 0, + '53': 0, + '54': 0, + '55': 0, + '56': 0, + '57': 0, + '58': 0, + '59': 0, + '60': 0, + '61': 0, + '62': 0, + '63': 0, + '64': 0, + '65': 0, + '66': 0, + '67': 0, + '68': 0, + '69': 0, + '70': 0, + '71': 0, + '72': 0, + '73': 0, + '74': 0, + '75': 0, + '76': 0, + '77': 0, + '78': 0, + '79': 0, + '80': 0, + '81': 0, + '82': 0, + '83': 0, + '84': 0, + '85': 0, + '86': 0, + '87': 0, + '88': 0, + '89': 0, + '90': 0, + '91': 0, + '92': 0, + '93': 0, + '94': 0, + '95': 0, + '96': 0, + '97': 0, + '98': 0, + '99': 0, + '100': 0, + '101': 0, + '102': 0, + '103': 0, + '104': 0, + '105': 0, + '106': 0, + '107': 0, + '108': 0, + '109': 0, + '110': 0, + '111': 0, + '112': 0, + '113': 0, + '114': 0, + '115': 0, + '116': 0, + '117': 0, + '118': 0, + '119': 0, + '120': 0, + '121': 0, + '122': 0, + '123': 0, + '124': 0, + '125': 0, + '126': 0, + '127': 0, + '128': 0, + '129': 0, + '130': 0, + '131': 0, + '132': 0, + '133': 0, + '134': 0, + '135': 0, + '136': 0, + '137': 0, + '138': 0, + '139': 0, + '140': 0, + '141': 0, + '142': 0, + '143': 0, + '144': 0, + '145': 0, + '146': 0, + '147': 0, + '148': 0, + '149': 0, + '150': 0, + '151': 0, + '152': 0, + '153': 0, + '154': 0, + '155': 0, + '156': 0, + '157': 0, + '158': 0, + '159': 0, + '160': 0, + '161': 0, + '162': 0, + '163': 0, + '164': 0, + '165': 0, + '166': 0, + '167': 0, + '168': 0, + '169': 0, + '170': 0, + '171': 0, + '172': 0, + '173': 0, + '174': 0, + '175': 0, + '176': 0, + '177': 0, + '178': 0, + '179': 0, + '180': 0, + '181': 0, + '182': 0, + '183': 0, + '184': 0, + '185': 0, + '186': 0, + '187': 0, + '188': 0, + '189': 0, + '190': 0, + '191': 0, + '192': 0, + '193': 0, + '194': 0, + '195': 0, + '196': 0, + '197': 0, + '198': 0, + '199': 0, + '200': 0, + '201': 0, + '202': 0, + '203': 0, + '204': 0, + '205': 0, + '206': 0, + '207': 0, + '208': 0, + '209': 0, + '210': 0, + '211': 0, + '212': 0, + '213': 0, + '214': 0, + '215': 0, + '216': 0, + '217': 0, + '218': 0, + '219': 0, + '220': 0, + '221': 0, + '222': 0, + '223': 0, + '224': 0, + '225': 0, + '226': 0, + '227': 0, + '228': 0, + '229': 0, + '230': 0, + '231': 0, + '232': 0, + '233': 0, + '234': 0, + '235': 0, + '236': 0, + '237': 0, + '238': 0, + '239': 0, + '240': 0, + '241': 0, + '242': 0, + '243': 0, + '244': 0, + '245': 0, + '246': 0, + '247': 0, + '248': 0, + '249': 0, + '250': 0, + '251': 0, + '252': 0, + '253': 0, + '254': 0, + '255': 0, + '256': 0, + '257': 0, + '258': 0, + '259': 0, + '260': 0, + '261': 0, + '262': 0, + '263': 0, + '264': 0, + '265': 0, + '266': 0, + '267': 0, + '268': 0, + '269': 0, + '270': 0, + '271': 0, + '272': 0, + '273': 0, + '274': 0, + '275': 0, + '276': 0, + '277': 0, + '278': 0, + '279': 0, + '280': 0, + '281': 0, + '282': 0, + '283': 0, + '284': 0, + '285': 0, + '286': 0, + '287': 0, + '288': 0, + '289': 0, + '290': 0, + '291': 0, + '292': 0, + '293': 0, + '294': 0, + '295': 0, + '296': 0, + '297': 0, + '298': 0, + '299': 0, + '300': 0, + '301': 0, + '302': 0, + '303': 0, + '304': 0, + '305': 0, + '306': 0, + '307': 0, + '308': 0, + '309': 0, + '310': 0, + '311': 0, + '312': 0, + '313': 0, + '314': 0, + '315': 0, + '316': 0, + '317': 0, + '318': 0, + '319': 0, + '320': 0, + '321': 0, + '322': 0, + '323': 0, + '324': 0, + '325': 0, + '326': 0, + '327': 0, + '328': 0, + '329': 0, + '330': 0, + '331': 0, + '332': 0, + '333': 0, + '334': 0, + '335': 0, + '336': 0, + '337': 0, + '338': 0, + '339': 0, + '340': 0, + '341': 0, + '342': 0, + '343': 0, + '344': 0, + '345': 0, + '346': 0, + '347': 0, + '348': 0, + '349': 0, + '350': 0, + '351': 0, + '352': 0, + '353': 0, + '354': 0, + '355': 0, + '356': 0, + '357': 0, + '358': 0, + '359': 0, + '360': 0, + '361': 0, + '362': 0, + '363': 0, + '364': 0, + '365': 0, + '366': 0, + '367': 0, + '368': 0, + '369': 0, + '370': 0, + '371': 0, + '372': 0, + '373': 0, + '374': 0, + '375': 0, + '376': 0, + '377': 0, + '378': 0, + '379': 0, + '380': 0, + '381': 0, + '382': 0, + '383': 0, + '384': 0, + '385': 0, + '386': 0, + '387': 0, + '388': 0, + '389': 0, + '390': 0, + '391': 0, + '392': 0, + '393': 0, + '394': 0, + '395': 0, + '396': 0, + '397': 0, + '398': 0, + '399': 0, + '400': 0, + '401': 0, + '402': 0, + '403': 0, + '404': 0, + '405': 0, + '406': 0, + '407': 0, + '408': 0, + '409': 0, + '410': 0, + '411': 0, + '412': 0, + '413': 0, + '414': 0, + '415': 0, + '416': 0, + '417': 0, + '418': 0, + '419': 0, + '420': 0, + '421': 0, + '422': 0, + '423': 0, + '424': 0, + '425': 0, + '426': 0, + '427': 0, + '428': 0, + '429': 0, + '430': 0, + '431': 0, + '432': 0, + '433': 0, + '434': 0, + '435': 0, + '436': 0, + '437': 0, + '438': 0, + '439': 0, + '440': 0, + '441': 0, + '442': 0, + '443': 0, + '444': 0, + '445': 0, + '446': 0, + '447': 0, + '448': 0, + '449': 0, + '450': 0, + '451': 0, + '452': 0, + '453': 0, + '454': 0, + '455': 0, + '456': 0, + '457': 0, + '458': 0, + '459': 0, + '460': 0, + '461': 0, + '462': 0, + '463': 0, + '464': 0, + '465': 0, + '466': 0, + '467': 0, + '468': 0, + '469': 0, + '470': 0, + '471': 0, + '472': 0, + '473': 0, + '474': 0, + '475': 0, + '476': 0, + '477': 0, + '478': 0, + '479': 0, + '480': 0, + '481': 0, + '482': 0, + '483': 0, + '484': 0, + '485': 0, + '486': 0, + '487': 0, + '488': 0, + '489': 0, + '490': 0, + '491': 0, + '492': 0, + '493': 0, + '494': 0, + '495': 0, + '496': 0, + '497': 0, + '498': 0, + '499': 0, + '500': 0, + '501': 0, + '502': 0, + '503': 0, + '504': 0, + '505': 0, + '506': 0, + '507': 0, + '508': 0, + '509': 0, + '510': 0, + '511': 0, + '512': 0, + '513': 0, + '514': 0, + '515': 0, + '516': 0, + '517': 0, + '518': 0, + '519': 0, + '520': 0, + '521': 0, + '522': 0, + '523': 0, + '524': 0, + '525': 0, + '526': 0, + '527': 0, + '528': 0, + '529': 0, + '530': 0, + '531': 0, + '532': 0, + '533': 0, + '534': 0, + '535': 0, + '536': 0, + '537': 0, + '538': 0, + '539': 0, + '540': 0, + '541': 0, + '542': 0, + '543': 0, + '544': 0, + '545': 0, + '546': 0, + '547': 0, + '548': 0, + '549': 0, + '550': 0, + '551': 0, + '552': 0, + '553': 0, + '554': 0, + '555': 0, + '556': 0, + '557': 0, + '558': 0, + '559': 0, + '560': 0, + '561': 0, + '562': 0, + '563': 0, + '564': 0, + '565': 0, + '566': 0, + '567': 0, + '568': 0, + '569': 0, + '570': 0, + '571': 0, + '572': 0, + '573': 0, + '574': 0, + '575': 0, + '576': 0, + '577': 0, + '578': 0, + '579': 0, + '580': 0, + '581': 0, + '582': 0, + '583': 0, + '584': 0, + '585': 0, + '586': 0, + '587': 0, + '588': 0, + '589': 0, + '590': 0, + '591': 0, + '592': 0, + '593': 0, + '594': 0, + '595': 0, + '596': 0, + '597': 0, + '598': 0, + '599': 0, + '600': 0, + '601': 0, + '602': 0, + '603': 0, + '604': 0, + '605': 0, + '606': 0, + '607': 0, + '608': 0, + '609': 0, + '610': 0, + '611': 0, + '612': 0, + '613': 0, + '614': 0, + '615': 0, + '616': 0, + '617': 0, + '618': 0, + '619': 0, + '620': 0, + '621': 0, + '622': 0, + '623': 0, + '624': 0, + '625': 0, + '626': 0, + '627': 0, + '628': 0, + '629': 0, + '630': 0, + '631': 0, + '632': 0, + '633': 0, + '634': 0, + '635': 0, + '636': 0, + '637': 0, + '638': 0, + '639': 0, + '640': 0, + '641': 0, + '642': 0, + '643': 0, + '644': 0, + '645': 0, + '646': 0, + '647': 0, + '648': 0, + '649': 0, + '650': 0, + '651': 0, + '652': 0, + '653': 0, + '654': 0, + '655': 0, + '656': 0, + '657': 0, + '658': 0, + '659': 0, + '660': 0, + '661': 0, + '662': 0, + '663': 0, + '664': 0, + '665': 0, + '666': 0, + '667': 0, + '668': 0, + '669': 0, + '670': 0, + '671': 0, + '672': 0, + '673': 0, + '674': 0, + '675': 0, + '676': 0, + '677': 0, + '678': 0, + '679': 0, + '680': 0, + '681': 0, + '682': 0, + '683': 0, + '684': 0, + '685': 0, + '686': 0, + '687': 0, + '688': 0, + '689': 0, + '690': 0, + '691': 0, + '692': 0, + '693': 0, + '694': 0, + '695': 0, + '696': 0, + '697': 0, + '698': 0, + '699': 0, + '700': 0, + '701': 0, + '702': 0, + '703': 0, + '704': 0, + '705': 0, + '706': 0, + '707': 0, + '708': 0, + '709': 0, + '710': 0, + '711': 0, + '712': 0, + '713': 0, + '714': 0, + '715': 0, + '716': 0, + '717': 0, + '718': 0, + '719': 0, + '720': 0, + '721': 0, + '722': 0, + '723': 0, + '724': 0, + '725': 0, + '726': 0, + '727': 0, + '728': 0, + '729': 0, + '730': 0, + '731': 0, + '732': 0, + '733': 0, + '734': 0, + '735': 0, + '736': 0, + '737': 0, + '738': 0, + '739': 0, + '740': 0, + '741': 0, + '742': 0, + '743': 0, + '744': 0, + '745': 0, + '746': 0, + '747': 0, + '748': 0, + '749': 0, + '750': 0, + '751': 0, + '752': 0, + '753': 0, + '754': 0, + '755': 0, + '756': 0, + '757': 0, + '758': 0, + '759': 0, + '760': 0, + '761': 0, + '762': 0, + '763': 0, + '764': 0, + '765': 0, + '766': 0, + '767': 0, + '768': 0, + '769': 0, + '770': 0, + '771': 0, + '772': 0, + '773': 0, + '774': 0, + '775': 0, + '776': 0, + '777': 0, + '778': 0, + '779': 0, + '780': 0, + '781': 0, + '782': 0, + '783': 0, + '784': 0, + '785': 0, + '786': 0, + '787': 0, + '788': 0, + '789': 0, + '790': 0, + '791': 0, + '792': 0, + '793': 0, + '794': 0, + '795': 0, + '796': 0, + '797': 0, + '798': 0, + '799': 0, + '800': 0, + '801': 0, + '802': 0, + '803': 0, + '804': 0, + '805': 0, + '806': 0, + '807': 0, + '808': 0, + '809': 0, + '810': 0, + '811': 0, + '812': 0, + '813': 0, + '814': 0, + '815': 0, + '816': 0, + '817': 0, + '818': 0, + '819': 0, + '820': 0, + '821': 0, + '822': 0, + '823': 0, + '824': 0, + '825': 0, + '826': 0, + '827': 0, + '828': 0, + '829': 0, + '830': 0, + '831': 0, + '832': 0, + '833': 0, + '834': 0, + '835': 0, + '836': 0, + '837': 0, + '838': 0, + '839': 0, + '840': 0, + '841': 0, + '842': 0, + '843': 0, + '844': 0, + '845': 0, + '846': 0, + '847': 0, + '848': 0, + '849': 0, + '850': 0, + '851': 0, + '852': 0, + '853': 0, + '854': 0, + '855': 0, + '856': 0, + '857': 0, + '858': 0, + '859': 0, + '860': 0, + '861': 0, + '862': 0, + '863': 0, + '864': 0, + '865': 0, + '866': 0, + '867': 0, + '868': 0, + '869': 0, + '870': 0, + '871': 0, + '872': 0, + '873': 0, + '874': 0, + '875': 0, + '876': 0, + '877': 0, + '878': 0, + '879': 0, + '880': 0, + '881': 0, + '882': 0, + '883': 0, + '884': 0, + '885': 0, + '886': 0, + '887': 0, + '888': 0, + '889': 0, + '890': 0, + '891': 0, + '892': 0, + '893': 0, + '894': 0, + '895': 0, + '896': 0, + '897': 0, + '898': 0, + '899': 0, + '900': 0, + '901': 0, + '902': 0, + '903': 0, + '904': 0, + '905': 0, + '906': 0, + '907': 0, + '908': 0, + '909': 0, + '910': 0, + '911': 0, + '912': 0, + '913': 0, + '914': 0, + '915': 0, + '916': 0, + '917': 0, + '918': 0, + '919': 0, + '920': 0, + '921': 0, + '922': 0, + '923': 0, + '924': 0, + '925': 0, + '926': 0, + '927': 0, + '928': 0, + '929': 0, + '930': 0, + '931': 0, + '932': 0, + '933': 0, + '934': 0, + '935': 0, + '936': 0, + '937': 0, + '938': 0, + '939': 0, + '940': 0, + '941': 0, + '942': 0, + '943': 0, + '944': 0, + '945': 0, + '946': 0, + '947': 0, + '948': 0, + '949': 0, + '950': 0, + '951': 0, + '952': 0, + '953': 0, + '954': 0, + '955': 0, + '956': 0, + '957': 0, + '958': 0, + '959': 0, + '960': 0, + '961': 0, + '962': 0, + '963': 0, + '964': 0, + '965': 0, + '966': 0, + '967': 0, + '968': 0, + '969': 0, + '970': 0, + '971': 0, + '972': 0, + '973': 0, + '974': 0, + '975': 0, + '976': 0, + '977': 0, + '978': 0, + '979': 0, + '980': 0, + '981': 0, + '982': 0, + '983': 0, + '984': 0, + '985': 0, + '986': 0, + '987': 0, + '988': 0, + '989': 0, + '990': 0, + '991': 0, + '992': 0, + '993': 0, + '994': 0, + '995': 0, + '996': 0, + '997': 0, + '998': 0, + '999': 0, + '1000': 0, + '1001': 0, + '1002': 0, + '1003': 0, + '1004': 0, + '1005': 0, + '1006': 0, + '1007': 0, + '1008': 0, + '1009': 0, + '1010': 0, + '1011': 0, + '1012': 0, + '1013': 0, + '1014': 0, + '1015': 0, + '1016': 0, + '1017': 0, + '1018': 0, + '1019': 0, + '1020': 0, + '1021': 0, + '1022': 0, + '1023': 0, + '1024': 0, + '1025': 0, + '1026': 0, + '1027': 0, + '1028': 0, + '1029': 0, + '1030': 0, + '1031': 0, + '1032': 0, + '1033': 0, + '1034': 0, + '1035': 0, + '1036': 0, + '1037': 0, + '1038': 0, + '1039': 0, + '1040': 0, + '1041': 0, + '1042': 0, + '1043': 0, + '1044': 0, + '1045': 0, + '1046': 0, + '1047': 0, + '1048': 0, + '1049': 0, + '1050': 0, + '1051': 0, + '1052': 0, + '1053': 0, + '1054': 0, + '1055': 0, + '1056': 0, + '1057': 0, + '1058': 0, + '1059': 0, + '1060': 0, + '1061': 0, + '1062': 0, + '1063': 0, + '1064': 0, + '1065': 0, + '1066': 0, + '1067': 0, + '1068': 0, + '1069': 0, + '1070': 0, + '1071': 0, + '1072': 0, + '1073': 0, + '1074': 0, + '1075': 0, + '1076': 0, + '1077': 0, + '1078': 0, + '1079': 0, + '1080': 0, + '1081': 0, + '1082': 0, + '1083': 0, + '1084': 0, + '1085': 0, + '1086': 0, + '1087': 0, + '1088': 0, + '1089': 0, + '1090': 0, + '1091': 0, + '1092': 0, + '1093': 0, + '1094': 0, + '1095': 0, + '1096': 0, + '1097': 0, + '1098': 0, + '1099': 0, + '1100': 0, + '1101': 0, + '1102': 0, + '1103': 0, + '1104': 0, + '1105': 0, + '1106': 0, + '1107': 0, + '1108': 0, + '1109': 0, + '1110': 0, + '1111': 0, + '1112': 0, + '1113': 0, + '1114': 0, + '1115': 0, + '1116': 0, + '1117': 0, + '1118': 0, + '1119': 0, + '1120': 0, + '1121': 0, + '1122': 0, + '1123': 0, + '1124': 0, + '1125': 0, + '1126': 0, + '1127': 0, + '1128': 0, + '1129': 0, + '1130': 0, + '1131': 0, + '1132': 0, + '1133': 0, + '1134': 0, + '1135': 0, + '1136': 0, + '1137': 0, + '1138': 0, + '1139': 0, + '1140': 0, + '1141': 0, + '1142': 0, + '1143': 0, + '1144': 0, + '1145': 0, + '1146': 0, + '1147': 0, + '1148': 0, + '1149': 0, + '1150': 0, + '1151': 0, + '1152': 0, + '1153': 0, + '1154': 0, + '1155': 0, + '1156': 0, + '1157': 0, + '1158': 0, + '1159': 0, + '1160': 0, + '1161': 0, + '1162': 0, + '1163': 0, + '1164': 0, + '1165': 0, + '1166': 0, + '1167': 0, + '1168': 0, + '1169': 0, + '1170': 0, + '1171': 0, + '1172': 0, + '1173': 0, + '1174': 0, + '1175': 0, + '1176': 0, + '1177': 0, + '1178': 0, + '1179': 0, + '1180': 0, + '1181': 0, + '1182': 0, + '1183': 0, + '1184': 0, + '1185': 0, + '1186': 0, + '1187': 0, + '1188': 0, + '1189': 0, + '1190': 0, + '1191': 0, + '1192': 0, + '1193': 0, + '1194': 0, + '1195': 0, + '1196': 0, + '1197': 0, + '1198': 0, + '1199': 0, + '1200': 0, + '1201': 0, + '1202': 0, + '1203': 0, + '1204': 0, + '1205': 0, + '1206': 0, + '1207': 0, + '1208': 0, + '1209': 0, + '1210': 0, + '1211': 0, + '1212': 0, + '1213': 0, + '1214': 0, + '1215': 0, + '1216': 0, + '1217': 0, + '1218': 0, + '1219': 0, + '1220': 0, + '1221': 0, + '1222': 0, + '1223': 0, + '1224': 0, + '1225': 0, + '1226': 0, + '1227': 0, + '1228': 0, + '1229': 0, + '1230': 0, + '1231': 0, + '1232': 0, + '1233': 0, + '1234': 0, + '1235': 0, + '1236': 0, + '1237': 0, + '1238': 0, + '1239': 0, + '1240': 0, + '1241': 0, + '1242': 0, + '1243': 0, + '1244': 0, + '1245': 0, + '1246': 0, + '1247': 0, + '1248': 0, + '1249': 0, + '1250': 0, + '1251': 0, + '1252': 0, + '1253': 0, + '1254': 0, + '1255': 0, + '1256': 0, + '1257': 0, + '1258': 0, + '1259': 0, + '1260': 0, + '1261': 0, + '1262': 0, + '1263': 0, + '1264': 0, + '1265': 0, + '1266': 0, + '1267': 0, + '1268': 0, + '1269': 0, + '1270': 0, + '1271': 0, + '1272': 0, + '1273': 0, + '1274': 0, + '1275': 0, + '1276': 0, + '1277': 0, + '1278': 0, + '1279': 0, + '1280': 0, + '1281': 0, + '1282': 0, + '1283': 0, + '1284': 0, + '1285': 0, + '1286': 0, + '1287': 0, + '1288': 0, + '1289': 0, + '1290': 0, + '1291': 0, + '1292': 0, + '1293': 0, + '1294': 0, + '1295': 0, + '1296': 0, + '1297': 0, + '1298': 0, + '1299': 0, + '1300': 0, + '1301': 0, + '1302': 0, + '1303': 0, + '1304': 0, + '1305': 0, + '1306': 0, + '1307': 0, + '1308': 0, + '1309': 0, + '1310': 0, + '1311': 0, + '1312': 0, + '1313': 0, + '1314': 0, + '1315': 0, + '1316': 0, + '1317': 0, + '1318': 0, + '1319': 0, + '1320': 0, + '1321': 0, + '1322': 0, + '1323': 0, + '1324': 0, + '1325': 0, + '1326': 0, + '1327': 0, + '1328': 0, + '1329': 0, + '1330': 0, + '1331': 0, + '1332': 0, + '1333': 0, + '1334': 0, + '1335': 0, + '1336': 0, + '1337': 0, + '1338': 0, + '1339': 0, + '1340': 0, + '1341': 0, + '1342': 0, + '1343': 0, + '1344': 0, + '1345': 0, + '1346': 0, + '1347': 0, + '1348': 0, + '1349': 0, + '1350': 0, + '1351': 0, + '1352': 0, + '1353': 0, + '1354': 0, + '1355': 0, + '1356': 0, + '1357': 0, + '1358': 0, + '1359': 0, + '1360': 0, + '1361': 0, + '1362': 0, + '1363': 0, + '1364': 0, + '1365': 0, + '1366': 0, + '1367': 0, + '1368': 0, + '1369': 0, + '1370': 0, + '1371': 0, + '1372': 0, + '1373': 0, + '1374': 0, + '1375': 0, + '1376': 0, + '1377': 0, + '1378': 0, + '1379': 0, + '1380': 0, + '1381': 0, + '1382': 0, + '1383': 0, + '1384': 0, + '1385': 0, + '1386': 0, + '1387': 0, + '1388': 0, + '1389': 0, + '1390': 0, + '1391': 0, + '1392': 0, + '1393': 0, + '1394': 0, + '1395': 0, + '1396': 0, + '1397': 0, + '1398': 0, + '1399': 0, + '1400': 0, + '1401': 0, + '1402': 0, + '1403': 0, + '1404': 0, + '1405': 0, + '1406': 0, + '1407': 0, + '1408': 0, + '1409': 0, + '1410': 0, + '1411': 0, + '1412': 0, + '1413': 0, + '1414': 0, + '1415': 0, + '1416': 0, + '1417': 0, + '1418': 0, + '1419': 0, + '1420': 0, + '1421': 0, + '1422': 0, + '1423': 0, + '1424': 0, + '1425': 0, + '1426': 0, + '1427': 0, + '1428': 0, + '1429': 0, + '1430': 0, + '1431': 0, + '1432': 0, + '1433': 0, + '1434': 0, + '1435': 0, + '1436': 0, + '1437': 0, + '1438': 0, + '1439': 0, + '1440': 0, + '1441': 0, + '1442': 0, + '1443': 0, + '1444': 0, + '1445': 0, + '1446': 0, + '1447': 0, + '1448': 0, + '1449': 0, + '1450': 0, + '1451': 0, + '1452': 0, + '1453': 0, + '1454': 0, + '1455': 0, + '1456': 0, + '1457': 0, + '1458': 0, + '1459': 0, + '1460': 0, + '1461': 0, + '1462': 0, + '1463': 0, + '1464': 0, + '1465': 0, + '1466': 0, + '1467': 0, + '1468': 0, + '1469': 0, + '1470': 0, + '1471': 0, + '1472': 0, + '1473': 0, + '1474': 0, + '1475': 0, + '1476': 0, + '1477': 0, + '1478': 0, + '1479': 0, + '1480': 0, + '1481': 0, + '1482': 0, + '1483': 0, + '1484': 0, + '1485': 0, + '1486': 0, + '1487': 0, + '1488': 0, + '1489': 0, + '1490': 0, + '1491': 0, + '1492': 0, + '1493': 0, + '1494': 0, + '1495': 0, + '1496': 0, + '1497': 0, + '1498': 0, + '1499': 0, + '1500': 0, + '1501': 0, + '1502': 0, + '1503': 0, + '1504': 0, + '1505': 0, + '1506': 0, + '1507': 0, + '1508': 0, + '1509': 0, + '1510': 0, + '1511': 0, + '1512': 0, + '1513': 0, + '1514': 0, + '1515': 0, + '1516': 0, + '1517': 0, + '1518': 0, + '1519': 0, + '1520': 0, + '1521': 0, + '1522': 0, + '1523': 0, + '1524': 0, + '1525': 0, + '1526': 0, + '1527': 0, + '1528': 0, + '1529': 0, + '1530': 0, + '1531': 0, + '1532': 0, + '1533': 0, + '1534': 0, + '1535': 0, + '1536': 0, + '1537': 0, + '1538': 0, + '1539': 0, + '1540': 0, + '1541': 0, + '1542': 0, + '1543': 0, + '1544': 0, + '1545': 0, + '1546': 0, + '1547': 0, + '1548': 0, + '1549': 0, + '1550': 0, + '1551': 0, + '1552': 0, + '1553': 0, + '1554': 0, + '1555': 0, + '1556': 0, + '1557': 0, + '1558': 0, + '1559': 0, + '1560': 0, + '1561': 0, + '1562': 0, + '1563': 0, + '1564': 0, + '1565': 0, + '1566': 0, + '1567': 0, + '1568': 0, + '1569': 0, + '1570': 0, + '1571': 0, + '1572': 0, + '1573': 0, + '1574': 0, + '1575': 0, + '1576': 0, + '1577': 0, + '1578': 0, + '1579': 0, + '1580': 0, + '1581': 0, + '1582': 0, + '1583': 0, + '1584': 0, + '1585': 0, + '1586': 0, + '1587': 0, + '1588': 0, + '1589': 0, + '1590': 0, + '1591': 0, + '1592': 0, + '1593': 0, + '1594': 0, + '1595': 0, + '1596': 0, + '1597': 0, + '1598': 0, + '1599': 0, + '1600': 0, + '1601': 0, + '1602': 0, + '1603': 0, + '1604': 0, + '1605': 0, + '1606': 0, + '1607': 0, + '1608': 0, + '1609': 0, + '1610': 0, + '1611': 0, + '1612': 0, + '1613': 0, + '1614': 0, + '1615': 0, + '1616': 0, + '1617': 0, + '1618': 0, + '1619': 0, + '1620': 0, + '1621': 0, + '1622': 0, + '1623': 0, + '1624': 0, + '1625': 0, + '1626': 0, + '1627': 0, + '1628': 0, + '1629': 0, + '1630': 0, + '1631': 0, + '1632': 0, + '1633': 0, + '1634': 0, + '1635': 0, + '1636': 0, + '1637': 0, + '1638': 0, + '1639': 0, + '1640': 0, + '1641': 0, + '1642': 0, + '1643': 0, + '1644': 0, + '1645': 0, + '1646': 0, + '1647': 0, + '1648': 0, + '1649': 0, + '1650': 0, + '1651': 0, + '1652': 0, + '1653': 0, + '1654': 0, + '1655': 0, + '1656': 0, + '1657': 0, + '1658': 0, + '1659': 0, + '1660': 0, + '1661': 0, + '1662': 0, + '1663': 0, + '1664': 0, + '1665': 0, + '1666': 0, + '1667': 0, + '1668': 0, + '1669': 0, + '1670': 0, + '1671': 0, + '1672': 0, + '1673': 0, + '1674': 0, + '1675': 0, + '1676': 0, + '1677': 0, + '1678': 0, + '1679': 0, + '1680': 0, + '1681': 0, + '1682': 0, + '1683': 0, + '1684': 0, + '1685': 0, + '1686': 0, + '1687': 0, + '1688': 0, + '1689': 0, + '1690': 0, + '1691': 0, + '1692': 0, + '1693': 0, + '1694': 0, + '1695': 0, + '1696': 0, + '1697': 0, + '1698': 0, + '1699': 0, + '1700': 0, + '1701': 0, + '1702': 0, + '1703': 0, + '1704': 0, + '1705': 0, + '1706': 0, + '1707': 0, + '1708': 0, + '1709': 0, + '1710': 0, + '1711': 0, + '1712': 0, + '1713': 0, + '1714': 0, + '1715': 0, + '1716': 0, + '1717': 0, + '1718': 0, + '1719': 0, + '1720': 0, + '1721': 0, + '1722': 0, + '1723': 0, + '1724': 0, + '1725': 0, + '1726': 0, + '1727': 0, + '1728': 0, + '1729': 0, + '1730': 0, + '1731': 0, + '1732': 0, + '1733': 0, + '1734': 0, + '1735': 0, + '1736': 0, + '1737': 0, + '1738': 0, + '1739': 0, + '1740': 0, + '1741': 0, + '1742': 0, + '1743': 0, + '1744': 0, + '1745': 0, + '1746': 0, + '1747': 0, + '1748': 0, + '1749': 0, + '1750': 0, + '1751': 0, + '1752': 0, + '1753': 0, + '1754': 0, + '1755': 0, + '1756': 0, + '1757': 0, + '1758': 0, + '1759': 0, + '1760': 0, + '1761': 0, + '1762': 0, + '1763': 0, + '1764': 0, + '1765': 0, + '1766': 0, + '1767': 0, + '1768': 0, + '1769': 0, + '1770': 0, + '1771': 0, + '1772': 0, + '1773': 0, + '1774': 0, + '1775': 0, + '1776': 0, + '1777': 0, + '1778': 0, + '1779': 0, + '1780': 0, + '1781': 0, + '1782': 0, + '1783': 0, + '1784': 0, + '1785': 0, + '1786': 0, + '1787': 0, + '1788': 0, + '1789': 0, + '1790': 0, + '1791': 0, + '1792': 0, + '1793': 0, + '1794': 0, + '1795': 0, + '1796': 0, + '1797': 0, + '1798': 0, + '1799': 0, + '1800': 0, + '1801': 0, + '1802': 0, + '1803': 0, + '1804': 0, + '1805': 0, + '1806': 0, + '1807': 0, + '1808': 0, + '1809': 0, + '1810': 0, + '1811': 0, + '1812': 0, + '1813': 0, + '1814': 0, + '1815': 0, + '1816': 0, + '1817': 0, + '1818': 0, + '1819': 0, + '1820': 0, + '1821': 0, + '1822': 0, + '1823': 0, + '1824': 0, + '1825': 0, + '1826': 0, + '1827': 0, + '1828': 0, + '1829': 0, + '1830': 0, + '1831': 0, + '1832': 0, + '1833': 0, + '1834': 0, + '1835': 0, + '1836': 0, + '1837': 0, + '1838': 0, + '1839': 0, + '1840': 0, + '1841': 0, + '1842': 0, + '1843': 0, + '1844': 0, + '1845': 0, + '1846': 0, + '1847': 0, + '1848': 0, + '1849': 0, + '1850': 0, + '1851': 0, + '1852': 0, + '1853': 0, + '1854': 0, + '1855': 0, + '1856': 0, + '1857': 0, + '1858': 0, + '1859': 0, + '1860': 0, + '1861': 0, + '1862': 0, + '1863': 0, + '1864': 0, + '1865': 0, + '1866': 0, + '1867': 0, + '1868': 0, + '1869': 0, + '1870': 0, + '1871': 0, + '1872': 0, + '1873': 0, + '1874': 0, + '1875': 0, + '1876': 0, + '1877': 0, + '1878': 0, + '1879': 0, + '1880': 0, + '1881': 0, + '1882': 0, + '1883': 0, + '1884': 0, + '1885': 0, + '1886': 0, + '1887': 0, + '1888': 0, + '1889': 0, + '1890': 0, + '1891': 0, + '1892': 0, + '1893': 0, + '1894': 0, + '1895': 0, + '1896': 0, + '1897': 0, + '1898': 0, + '1899': 0, + '1900': 0, + '1901': 0, + '1902': 0, + '1903': 0, + '1904': 0, + '1905': 0, + '1906': 0, + '1907': 0, + '1908': 0, + '1909': 0, + '1910': 0, + '1911': 0, + '1912': 0, + '1913': 0, + '1914': 0, + '1915': 0, + '1916': 0, + '1917': 0, + '1918': 0, + '1919': 0, + '1920': 0, + '1921': 0, + '1922': 0, + '1923': 0, + '1924': 0, + '1925': 0, + '1926': 0, + '1927': 0, + '1928': 0, + '1929': 0, + '1930': 0, + '1931': 0, + '1932': 0, + '1933': 0, + '1934': 0, + '1935': 0, + '1936': 0, + '1937': 0, + '1938': 0, + '1939': 0, + '1940': 0, + '1941': 0, + '1942': 0, + '1943': 0, + '1944': 0, + '1945': 0, + '1946': 0, + '1947': 0, + '1948': 0, + '1949': 0, + '1950': 0, + '1951': 0, + '1952': 0, + '1953': 0, + '1954': 0, + '1955': 0, + '1956': 0, + '1957': 0, + '1958': 0, + '1959': 0, + '1960': 0, + '1961': 0, + '1962': 0, + '1963': 0, + '1964': 0, + '1965': 0, + '1966': 0, + '1967': 0, + '1968': 0, + '1969': 0, + '1970': 0, + '1971': 0, + '1972': 0, + '1973': 0, + '1974': 0, + '1975': 0, + '1976': 0, + '1977': 0, + '1978': 0, + '1979': 0, + '1980': 0, + '1981': 0, + '1982': 0, + '1983': 0, + '1984': 0, + '1985': 0, + '1986': 0, + '1987': 0, + '1988': 0, + '1989': 0, + '1990': 0, + '1991': 0, + '1992': 0, + '1993': 0, + '1994': 0, + '1995': 0, + '1996': 0, + '1997': 0, + '1998': 0, + '1999': 0, + '2000': 0, + '2001': 0, + '2002': 0, + '2003': 0, + '2004': 0, + '2005': 0, + '2006': 0, + '2007': 0, + '2008': 0, + '2009': 0, + '2010': 0, + '2011': 0, + '2012': 0, + '2013': 0, + '2014': 0, + '2015': 0, + '2016': 0, + '2017': 0, + '2018': 0, + '2019': 0, + '2020': 0, + '2021': 0, + '2022': 0, + '2023': 0, + '2024': 0, + '2025': 0, + '2026': 0, + '2027': 0, + '2028': 0, + '2029': 0, + '2030': 0, + '2031': 0, + '2032': 0, + '2033': 0, + '2034': 0, + '2035': 0, + '2036': 0, + '2037': 0, + '2038': 0, + '2039': 0, + '2040': 0, + '2041': 0, + '2042': 0, + '2043': 0, + '2044': 0, + '2045': 0, + '2046': 0, + '2047': 0, + '2048': 0, + '2049': 0, + '2050': 0, + '2051': 0, + '2052': 0, + '2053': 0, + '2054': 0, + '2055': 0, + '2056': 0, + '2057': 0, + '2058': 0, + '2059': 0 + }, + ProcessingSoftware: 'Windows Photo Editor 10.0.10011.16384', + Orientation: 'Horizontal (normal)', + Software: 'Windows Photo Editor 10.0.10011.16384', + ModifyDate: '2022-01-13T21:46:25.000Z' + }, + ifd1: { + Compression: 6, + XResolution: 96, + YResolution: 96, + ResolutionUnit: 'inches', + ThumbnailOffset: 4516, + ThumbnailLength: 13453 + }, + exif: { + DateTimeOriginal: '2022-01-13T21:44:29.000Z', + CreateDate: '2022-01-13T21:44:29.000Z', + SubSecTimeOriginal: '90', + SubSecTimeDigitized: '90', + ColorSpace: 1, + Padding: { + '0': 28, + '1': 234, + '2': 0, + '3': 0, + '4': 0, + '5': 8, + '6': 0, + '7': 0, + '8': 0, + '9': 0, + '10': 0, + '11': 0, + '12': 0, + '13': 0, + '14': 0, + '15': 0, + '16': 0, + '17': 0, + '18': 0, + '19': 0, + '20': 0, + '21': 0, + '22': 0, + '23': 0, + '24': 0, + '25': 0, + '26': 0, + '27': 0, + '28': 0, + '29': 0, + '30': 0, + '31': 0, + '32': 0, + '33': 0, + '34': 0, + '35': 0, + '36': 0, + '37': 0, + '38': 0, + '39': 0, + '40': 0, + '41': 0, + '42': 0, + '43': 0, + '44': 0, + '45': 0, + '46': 0, + '47': 0, + '48': 0, + '49': 0, + '50': 0, + '51': 0, + '52': 0, + '53': 0, + '54': 0, + '55': 0, + '56': 0, + '57': 0, + '58': 0, + '59': 0, + '60': 0, + '61': 0, + '62': 0, + '63': 0, + '64': 0, + '65': 0, + '66': 0, + '67': 0, + '68': 0, + '69': 0, + '70': 0, + '71': 0, + '72': 0, + '73': 0, + '74': 0, + '75': 0, + '76': 0, + '77': 0, + '78': 0, + '79': 0, + '80': 0, + '81': 0, + '82': 0, + '83': 0, + '84': 0, + '85': 0, + '86': 0, + '87': 0, + '88': 0, + '89': 0, + '90': 0, + '91': 0, + '92': 0, + '93': 0, + '94': 0, + '95': 0, + '96': 0, + '97': 0, + '98': 0, + '99': 0, + '100': 0, + '101': 0, + '102': 0, + '103': 0, + '104': 0, + '105': 0, + '106': 0, + '107': 0, + '108': 0, + '109': 0, + '110': 0, + '111': 0, + '112': 0, + '113': 0, + '114': 0, + '115': 0, + '116': 0, + '117': 0, + '118': 0, + '119': 0, + '120': 0, + '121': 0, + '122': 0, + '123': 0, + '124': 0, + '125': 0, + '126': 0, + '127': 0, + '128': 0, + '129': 0, + '130': 0, + '131': 0, + '132': 0, + '133': 0, + '134': 0, + '135': 0, + '136': 0, + '137': 0, + '138': 0, + '139': 0, + '140': 0, + '141': 0, + '142': 0, + '143': 0, + '144': 0, + '145': 0, + '146': 0, + '147': 0, + '148': 0, + '149': 0, + '150': 0, + '151': 0, + '152': 0, + '153': 0, + '154': 0, + '155': 0, + '156': 0, + '157': 0, + '158': 0, + '159': 0, + '160': 0, + '161': 0, + '162': 0, + '163': 0, + '164': 0, + '165': 0, + '166': 0, + '167': 0, + '168': 0, + '169': 0, + '170': 0, + '171': 0, + '172': 0, + '173': 0, + '174': 0, + '175': 0, + '176': 0, + '177': 0, + '178': 0, + '179': 0, + '180': 0, + '181': 0, + '182': 0, + '183': 0, + '184': 0, + '185': 0, + '186': 0, + '187': 0, + '188': 0, + '189': 0, + '190': 0, + '191': 0, + '192': 0, + '193': 0, + '194': 0, + '195': 0, + '196': 0, + '197': 0, + '198': 0, + '199': 0, + '200': 0, + '201': 0, + '202': 0, + '203': 0, + '204': 0, + '205': 0, + '206': 0, + '207': 0, + '208': 0, + '209': 0, + '210': 0, + '211': 0, + '212': 0, + '213': 0, + '214': 0, + '215': 0, + '216': 0, + '217': 0, + '218': 0, + '219': 0, + '220': 0, + '221': 0, + '222': 0, + '223': 0, + '224': 0, + '225': 0, + '226': 0, + '227': 0, + '228': 0, + '229': 0, + '230': 0, + '231': 0, + '232': 0, + '233': 0, + '234': 0, + '235': 0, + '236': 0, + '237': 0, + '238': 0, + '239': 0, + '240': 0, + '241': 0, + '242': 0, + '243': 0, + '244': 0, + '245': 0, + '246': 0, + '247': 0, + '248': 0, + '249': 0, + '250': 0, + '251': 0, + '252': 0, + '253': 0, + '254': 0, + '255': 0, + '256': 0, + '257': 0, + '258': 0, + '259': 0, + '260': 0, + '261': 0, + '262': 0, + '263': 0, + '264': 0, + '265': 0, + '266': 0, + '267': 0, + '268': 0, + '269': 0, + '270': 0, + '271': 0, + '272': 0, + '273': 0, + '274': 0, + '275': 0, + '276': 0, + '277': 0, + '278': 0, + '279': 0, + '280': 0, + '281': 0, + '282': 0, + '283': 0, + '284': 0, + '285': 0, + '286': 0, + '287': 0, + '288': 0, + '289': 0, + '290': 0, + '291': 0, + '292': 0, + '293': 0, + '294': 0, + '295': 0, + '296': 0, + '297': 0, + '298': 0, + '299': 0, + '300': 0, + '301': 0, + '302': 0, + '303': 0, + '304': 0, + '305': 0, + '306': 0, + '307': 0, + '308': 0, + '309': 0, + '310': 0, + '311': 0, + '312': 0, + '313': 0, + '314': 0, + '315': 0, + '316': 0, + '317': 0, + '318': 0, + '319': 0, + '320': 0, + '321': 0, + '322': 0, + '323': 0, + '324': 0, + '325': 0, + '326': 0, + '327': 0, + '328': 0, + '329': 0, + '330': 0, + '331': 0, + '332': 0, + '333': 0, + '334': 0, + '335': 0, + '336': 0, + '337': 0, + '338': 0, + '339': 0, + '340': 0, + '341': 0, + '342': 0, + '343': 0, + '344': 0, + '345': 0, + '346': 0, + '347': 0, + '348': 0, + '349': 0, + '350': 0, + '351': 0, + '352': 0, + '353': 0, + '354': 0, + '355': 0, + '356': 0, + '357': 0, + '358': 0, + '359': 0, + '360': 0, + '361': 0, + '362': 0, + '363': 0, + '364': 0, + '365': 0, + '366': 0, + '367': 0, + '368': 0, + '369': 0, + '370': 0, + '371': 0, + '372': 0, + '373': 0, + '374': 0, + '375': 0, + '376': 0, + '377': 0, + '378': 0, + '379': 0, + '380': 0, + '381': 0, + '382': 0, + '383': 0, + '384': 0, + '385': 0, + '386': 0, + '387': 0, + '388': 0, + '389': 0, + '390': 0, + '391': 0, + '392': 0, + '393': 0, + '394': 0, + '395': 0, + '396': 0, + '397': 0, + '398': 0, + '399': 0, + '400': 0, + '401': 0, + '402': 0, + '403': 0, + '404': 0, + '405': 0, + '406': 0, + '407': 0, + '408': 0, + '409': 0, + '410': 0, + '411': 0, + '412': 0, + '413': 0, + '414': 0, + '415': 0, + '416': 0, + '417': 0, + '418': 0, + '419': 0, + '420': 0, + '421': 0, + '422': 0, + '423': 0, + '424': 0, + '425': 0, + '426': 0, + '427': 0, + '428': 0, + '429': 0, + '430': 0, + '431': 0, + '432': 0, + '433': 0, + '434': 0, + '435': 0, + '436': 0, + '437': 0, + '438': 0, + '439': 0, + '440': 0, + '441': 0, + '442': 0, + '443': 0, + '444': 0, + '445': 0, + '446': 0, + '447': 0, + '448': 0, + '449': 0, + '450': 0, + '451': 0, + '452': 0, + '453': 0, + '454': 0, + '455': 0, + '456': 0, + '457': 0, + '458': 0, + '459': 0, + '460': 0, + '461': 0, + '462': 0, + '463': 0, + '464': 0, + '465': 0, + '466': 0, + '467': 0, + '468': 0, + '469': 0, + '470': 0, + '471': 0, + '472': 0, + '473': 0, + '474': 0, + '475': 0, + '476': 0, + '477': 0, + '478': 0, + '479': 0, + '480': 0, + '481': 0, + '482': 0, + '483': 0, + '484': 0, + '485': 0, + '486': 0, + '487': 0, + '488': 0, + '489': 0, + '490': 0, + '491': 0, + '492': 0, + '493': 0, + '494': 0, + '495': 0, + '496': 0, + '497': 0, + '498': 0, + '499': 0, + '500': 0, + '501': 0, + '502': 0, + '503': 0, + '504': 0, + '505': 0, + '506': 0, + '507': 0, + '508': 0, + '509': 0, + '510': 0, + '511': 0, + '512': 0, + '513': 0, + '514': 0, + '515': 0, + '516': 0, + '517': 0, + '518': 0, + '519': 0, + '520': 0, + '521': 0, + '522': 0, + '523': 0, + '524': 0, + '525': 0, + '526': 0, + '527': 0, + '528': 0, + '529': 0, + '530': 0, + '531': 0, + '532': 0, + '533': 0, + '534': 0, + '535': 0, + '536': 0, + '537': 0, + '538': 0, + '539': 0, + '540': 0, + '541': 0, + '542': 0, + '543': 0, + '544': 0, + '545': 0, + '546': 0, + '547': 0, + '548': 0, + '549': 0, + '550': 0, + '551': 0, + '552': 0, + '553': 0, + '554': 0, + '555': 0, + '556': 0, + '557': 0, + '558': 0, + '559': 0, + '560': 0, + '561': 0, + '562': 0, + '563': 0, + '564': 0, + '565': 0, + '566': 0, + '567': 0, + '568': 0, + '569': 0, + '570': 0, + '571': 0, + '572': 0, + '573': 0, + '574': 0, + '575': 0, + '576': 0, + '577': 0, + '578': 0, + '579': 0, + '580': 0, + '581': 0, + '582': 0, + '583': 0, + '584': 0, + '585': 0, + '586': 0, + '587': 0, + '588': 0, + '589': 0, + '590': 0, + '591': 0, + '592': 0, + '593': 0, + '594': 0, + '595': 0, + '596': 0, + '597': 0, + '598': 0, + '599': 0, + '600': 0, + '601': 0, + '602': 0, + '603': 0, + '604': 0, + '605': 0, + '606': 0, + '607': 0, + '608': 0, + '609': 0, + '610': 0, + '611': 0, + '612': 0, + '613': 0, + '614': 0, + '615': 0, + '616': 0, + '617': 0, + '618': 0, + '619': 0, + '620': 0, + '621': 0, + '622': 0, + '623': 0, + '624': 0, + '625': 0, + '626': 0, + '627': 0, + '628': 0, + '629': 0, + '630': 0, + '631': 0, + '632': 0, + '633': 0, + '634': 0, + '635': 0, + '636': 0, + '637': 0, + '638': 0, + '639': 0, + '640': 0, + '641': 0, + '642': 0, + '643': 0, + '644': 0, + '645': 0, + '646': 0, + '647': 0, + '648': 0, + '649': 0, + '650': 0, + '651': 0, + '652': 0, + '653': 0, + '654': 0, + '655': 0, + '656': 0, + '657': 0, + '658': 0, + '659': 0, + '660': 0, + '661': 0, + '662': 0, + '663': 0, + '664': 0, + '665': 0, + '666': 0, + '667': 0, + '668': 0, + '669': 0, + '670': 0, + '671': 0, + '672': 0, + '673': 0, + '674': 0, + '675': 0, + '676': 0, + '677': 0, + '678': 0, + '679': 0, + '680': 0, + '681': 0, + '682': 0, + '683': 0, + '684': 0, + '685': 0, + '686': 0, + '687': 0, + '688': 0, + '689': 0, + '690': 0, + '691': 0, + '692': 0, + '693': 0, + '694': 0, + '695': 0, + '696': 0, + '697': 0, + '698': 0, + '699': 0, + '700': 0, + '701': 0, + '702': 0, + '703': 0, + '704': 0, + '705': 0, + '706': 0, + '707': 0, + '708': 0, + '709': 0, + '710': 0, + '711': 0, + '712': 0, + '713': 0, + '714': 0, + '715': 0, + '716': 0, + '717': 0, + '718': 0, + '719': 0, + '720': 0, + '721': 0, + '722': 0, + '723': 0, + '724': 0, + '725': 0, + '726': 0, + '727': 0, + '728': 0, + '729': 0, + '730': 0, + '731': 0, + '732': 0, + '733': 0, + '734': 0, + '735': 0, + '736': 0, + '737': 0, + '738': 0, + '739': 0, + '740': 0, + '741': 0, + '742': 0, + '743': 0, + '744': 0, + '745': 0, + '746': 0, + '747': 0, + '748': 0, + '749': 0, + '750': 0, + '751': 0, + '752': 0, + '753': 0, + '754': 0, + '755': 0, + '756': 0, + '757': 0, + '758': 0, + '759': 0, + '760': 0, + '761': 0, + '762': 0, + '763': 0, + '764': 0, + '765': 0, + '766': 0, + '767': 0, + '768': 0, + '769': 0, + '770': 0, + '771': 0, + '772': 0, + '773': 0, + '774': 0, + '775': 0, + '776': 0, + '777': 0, + '778': 0, + '779': 0, + '780': 0, + '781': 0, + '782': 0, + '783': 0, + '784': 0, + '785': 0, + '786': 0, + '787': 0, + '788': 0, + '789': 0, + '790': 0, + '791': 0, + '792': 0, + '793': 0, + '794': 0, + '795': 0, + '796': 0, + '797': 0, + '798': 0, + '799': 0, + '800': 0, + '801': 0, + '802': 0, + '803': 0, + '804': 0, + '805': 0, + '806': 0, + '807': 0, + '808': 0, + '809': 0, + '810': 0, + '811': 0, + '812': 0, + '813': 0, + '814': 0, + '815': 0, + '816': 0, + '817': 0, + '818': 0, + '819': 0, + '820': 0, + '821': 0, + '822': 0, + '823': 0, + '824': 0, + '825': 0, + '826': 0, + '827': 0, + '828': 0, + '829': 0, + '830': 0, + '831': 0, + '832': 0, + '833': 0, + '834': 0, + '835': 0, + '836': 0, + '837': 0, + '838': 0, + '839': 0, + '840': 0, + '841': 0, + '842': 0, + '843': 0, + '844': 0, + '845': 0, + '846': 0, + '847': 0, + '848': 0, + '849': 0, + '850': 0, + '851': 0, + '852': 0, + '853': 0, + '854': 0, + '855': 0, + '856': 0, + '857': 0, + '858': 0, + '859': 0, + '860': 0, + '861': 0, + '862': 0, + '863': 0, + '864': 0, + '865': 0, + '866': 0, + '867': 0, + '868': 0, + '869': 0, + '870': 0, + '871': 0, + '872': 0, + '873': 0, + '874': 0, + '875': 0, + '876': 0, + '877': 0, + '878': 0, + '879': 0, + '880': 0, + '881': 0, + '882': 0, + '883': 0, + '884': 0, + '885': 0, + '886': 0, + '887': 0, + '888': 0, + '889': 0, + '890': 0, + '891': 0, + '892': 0, + '893': 0, + '894': 0, + '895': 0, + '896': 0, + '897': 0, + '898': 0, + '899': 0, + '900': 0, + '901': 0, + '902': 0, + '903': 0, + '904': 0, + '905': 0, + '906': 0, + '907': 0, + '908': 0, + '909': 0, + '910': 0, + '911': 0, + '912': 0, + '913': 0, + '914': 0, + '915': 0, + '916': 0, + '917': 0, + '918': 0, + '919': 0, + '920': 0, + '921': 0, + '922': 0, + '923': 0, + '924': 0, + '925': 0, + '926': 0, + '927': 0, + '928': 0, + '929': 0, + '930': 0, + '931': 0, + '932': 0, + '933': 0, + '934': 0, + '935': 0, + '936': 0, + '937': 0, + '938': 0, + '939': 0, + '940': 0, + '941': 0, + '942': 0, + '943': 0, + '944': 0, + '945': 0, + '946': 0, + '947': 0, + '948': 0, + '949': 0, + '950': 0, + '951': 0, + '952': 0, + '953': 0, + '954': 0, + '955': 0, + '956': 0, + '957': 0, + '958': 0, + '959': 0, + '960': 0, + '961': 0, + '962': 0, + '963': 0, + '964': 0, + '965': 0, + '966': 0, + '967': 0, + '968': 0, + '969': 0, + '970': 0, + '971': 0, + '972': 0, + '973': 0, + '974': 0, + '975': 0, + '976': 0, + '977': 0, + '978': 0, + '979': 0, + '980': 0, + '981': 0, + '982': 0, + '983': 0, + '984': 0, + '985': 0, + '986': 0, + '987': 0, + '988': 0, + '989': 0, + '990': 0, + '991': 0, + '992': 0, + '993': 0, + '994': 0, + '995': 0, + '996': 0, + '997': 0, + '998': 0, + '999': 0, + '1000': 0, + '1001': 0, + '1002': 0, + '1003': 0, + '1004': 0, + '1005': 0, + '1006': 0, + '1007': 0, + '1008': 0, + '1009': 0, + '1010': 0, + '1011': 0, + '1012': 0, + '1013': 0, + '1014': 0, + '1015': 0, + '1016': 0, + '1017': 0, + '1018': 0, + '1019': 0, + '1020': 0, + '1021': 0, + '1022': 0, + '1023': 0, + '1024': 0, + '1025': 0, + '1026': 0, + '1027': 0, + '1028': 0, + '1029': 0, + '1030': 0, + '1031': 0, + '1032': 0, + '1033': 0, + '1034': 0, + '1035': 0, + '1036': 0, + '1037': 0, + '1038': 0, + '1039': 0, + '1040': 0, + '1041': 0, + '1042': 0, + '1043': 0, + '1044': 0, + '1045': 0, + '1046': 0, + '1047': 0, + '1048': 0, + '1049': 0, + '1050': 0, + '1051': 0, + '1052': 0, + '1053': 0, + '1054': 0, + '1055': 0, + '1056': 0, + '1057': 0, + '1058': 0, + '1059': 0, + '1060': 0, + '1061': 0, + '1062': 0, + '1063': 0, + '1064': 0, + '1065': 0, + '1066': 0, + '1067': 0, + '1068': 0, + '1069': 0, + '1070': 0, + '1071': 0, + '1072': 0, + '1073': 0, + '1074': 0, + '1075': 0, + '1076': 0, + '1077': 0, + '1078': 0, + '1079': 0, + '1080': 0, + '1081': 0, + '1082': 0, + '1083': 0, + '1084': 0, + '1085': 0, + '1086': 0, + '1087': 0, + '1088': 0, + '1089': 0, + '1090': 0, + '1091': 0, + '1092': 0, + '1093': 0, + '1094': 0, + '1095': 0, + '1096': 0, + '1097': 0, + '1098': 0, + '1099': 0, + '1100': 0, + '1101': 0, + '1102': 0, + '1103': 0, + '1104': 0, + '1105': 0, + '1106': 0, + '1107': 0, + '1108': 0, + '1109': 0, + '1110': 0, + '1111': 0, + '1112': 0, + '1113': 0, + '1114': 0, + '1115': 0, + '1116': 0, + '1117': 0, + '1118': 0, + '1119': 0, + '1120': 0, + '1121': 0, + '1122': 0, + '1123': 0, + '1124': 0, + '1125': 0, + '1126': 0, + '1127': 0, + '1128': 0, + '1129': 0, + '1130': 0, + '1131': 0, + '1132': 0, + '1133': 0, + '1134': 0, + '1135': 0, + '1136': 0, + '1137': 0, + '1138': 0, + '1139': 0, + '1140': 0, + '1141': 0, + '1142': 0, + '1143': 0, + '1144': 0, + '1145': 0, + '1146': 0, + '1147': 0, + '1148': 0, + '1149': 0, + '1150': 0, + '1151': 0, + '1152': 0, + '1153': 0, + '1154': 0, + '1155': 0, + '1156': 0, + '1157': 0, + '1158': 0, + '1159': 0, + '1160': 0, + '1161': 0, + '1162': 0, + '1163': 0, + '1164': 0, + '1165': 0, + '1166': 0, + '1167': 0, + '1168': 0, + '1169': 0, + '1170': 0, + '1171': 0, + '1172': 0, + '1173': 0, + '1174': 0, + '1175': 0, + '1176': 0, + '1177': 0, + '1178': 0, + '1179': 0, + '1180': 0, + '1181': 0, + '1182': 0, + '1183': 0, + '1184': 0, + '1185': 0, + '1186': 0, + '1187': 0, + '1188': 0, + '1189': 0, + '1190': 0, + '1191': 0, + '1192': 0, + '1193': 0, + '1194': 0, + '1195': 0, + '1196': 0, + '1197': 0, + '1198': 0, + '1199': 0, + '1200': 0, + '1201': 0, + '1202': 0, + '1203': 0, + '1204': 0, + '1205': 0, + '1206': 0, + '1207': 0, + '1208': 0, + '1209': 0, + '1210': 0, + '1211': 0, + '1212': 0, + '1213': 0, + '1214': 0, + '1215': 0, + '1216': 0, + '1217': 0, + '1218': 0, + '1219': 0, + '1220': 0, + '1221': 0, + '1222': 0, + '1223': 0, + '1224': 0, + '1225': 0, + '1226': 0, + '1227': 0, + '1228': 0, + '1229': 0, + '1230': 0, + '1231': 0, + '1232': 0, + '1233': 0, + '1234': 0, + '1235': 0, + '1236': 0, + '1237': 0, + '1238': 0, + '1239': 0, + '1240': 0, + '1241': 0, + '1242': 0, + '1243': 0, + '1244': 0, + '1245': 0, + '1246': 0, + '1247': 0, + '1248': 0, + '1249': 0, + '1250': 0, + '1251': 0, + '1252': 0, + '1253': 0, + '1254': 0, + '1255': 0, + '1256': 0, + '1257': 0, + '1258': 0, + '1259': 0, + '1260': 0, + '1261': 0, + '1262': 0, + '1263': 0, + '1264': 0, + '1265': 0, + '1266': 0, + '1267': 0, + '1268': 0, + '1269': 0, + '1270': 0, + '1271': 0, + '1272': 0, + '1273': 0, + '1274': 0, + '1275': 0, + '1276': 0, + '1277': 0, + '1278': 0, + '1279': 0, + '1280': 0, + '1281': 0, + '1282': 0, + '1283': 0, + '1284': 0, + '1285': 0, + '1286': 0, + '1287': 0, + '1288': 0, + '1289': 0, + '1290': 0, + '1291': 0, + '1292': 0, + '1293': 0, + '1294': 0, + '1295': 0, + '1296': 0, + '1297': 0, + '1298': 0, + '1299': 0, + '1300': 0, + '1301': 0, + '1302': 0, + '1303': 0, + '1304': 0, + '1305': 0, + '1306': 0, + '1307': 0, + '1308': 0, + '1309': 0, + '1310': 0, + '1311': 0, + '1312': 0, + '1313': 0, + '1314': 0, + '1315': 0, + '1316': 0, + '1317': 0, + '1318': 0, + '1319': 0, + '1320': 0, + '1321': 0, + '1322': 0, + '1323': 0, + '1324': 0, + '1325': 0, + '1326': 0, + '1327': 0, + '1328': 0, + '1329': 0, + '1330': 0, + '1331': 0, + '1332': 0, + '1333': 0, + '1334': 0, + '1335': 0, + '1336': 0, + '1337': 0, + '1338': 0, + '1339': 0, + '1340': 0, + '1341': 0, + '1342': 0, + '1343': 0, + '1344': 0, + '1345': 0, + '1346': 0, + '1347': 0, + '1348': 0, + '1349': 0, + '1350': 0, + '1351': 0, + '1352': 0, + '1353': 0, + '1354': 0, + '1355': 0, + '1356': 0, + '1357': 0, + '1358': 0, + '1359': 0, + '1360': 0, + '1361': 0, + '1362': 0, + '1363': 0, + '1364': 0, + '1365': 0, + '1366': 0, + '1367': 0, + '1368': 0, + '1369': 0, + '1370': 0, + '1371': 0, + '1372': 0, + '1373': 0, + '1374': 0, + '1375': 0, + '1376': 0, + '1377': 0, + '1378': 0, + '1379': 0, + '1380': 0, + '1381': 0, + '1382': 0, + '1383': 0, + '1384': 0, + '1385': 0, + '1386': 0, + '1387': 0, + '1388': 0, + '1389': 0, + '1390': 0, + '1391': 0, + '1392': 0, + '1393': 0, + '1394': 0, + '1395': 0, + '1396': 0, + '1397': 0, + '1398': 0, + '1399': 0, + '1400': 0, + '1401': 0, + '1402': 0, + '1403': 0, + '1404': 0, + '1405': 0, + '1406': 0, + '1407': 0, + '1408': 0, + '1409': 0, + '1410': 0, + '1411': 0, + '1412': 0, + '1413': 0, + '1414': 0, + '1415': 0, + '1416': 0, + '1417': 0, + '1418': 0, + '1419': 0, + '1420': 0, + '1421': 0, + '1422': 0, + '1423': 0, + '1424': 0, + '1425': 0, + '1426': 0, + '1427': 0, + '1428': 0, + '1429': 0, + '1430': 0, + '1431': 0, + '1432': 0, + '1433': 0, + '1434': 0, + '1435': 0, + '1436': 0, + '1437': 0, + '1438': 0, + '1439': 0, + '1440': 0, + '1441': 0, + '1442': 0, + '1443': 0, + '1444': 0, + '1445': 0, + '1446': 0, + '1447': 0, + '1448': 0, + '1449': 0, + '1450': 0, + '1451': 0, + '1452': 0, + '1453': 0, + '1454': 0, + '1455': 0, + '1456': 0, + '1457': 0, + '1458': 0, + '1459': 0, + '1460': 0, + '1461': 0, + '1462': 0, + '1463': 0, + '1464': 0, + '1465': 0, + '1466': 0, + '1467': 0, + '1468': 0, + '1469': 0, + '1470': 0, + '1471': 0, + '1472': 0, + '1473': 0, + '1474': 0, + '1475': 0, + '1476': 0, + '1477': 0, + '1478': 0, + '1479': 0, + '1480': 0, + '1481': 0, + '1482': 0, + '1483': 0, + '1484': 0, + '1485': 0, + '1486': 0, + '1487': 0, + '1488': 0, + '1489': 0, + '1490': 0, + '1491': 0, + '1492': 0, + '1493': 0, + '1494': 0, + '1495': 0, + '1496': 0, + '1497': 0, + '1498': 0, + '1499': 0, + '1500': 0, + '1501': 0, + '1502': 0, + '1503': 0, + '1504': 0, + '1505': 0, + '1506': 0, + '1507': 0, + '1508': 0, + '1509': 0, + '1510': 0, + '1511': 0, + '1512': 0, + '1513': 0, + '1514': 0, + '1515': 0, + '1516': 0, + '1517': 0, + '1518': 0, + '1519': 0, + '1520': 0, + '1521': 0, + '1522': 0, + '1523': 0, + '1524': 0, + '1525': 0, + '1526': 0, + '1527': 0, + '1528': 0, + '1529': 0, + '1530': 0, + '1531': 0, + '1532': 0, + '1533': 0, + '1534': 0, + '1535': 0, + '1536': 0, + '1537': 0, + '1538': 0, + '1539': 0, + '1540': 0, + '1541': 0, + '1542': 0, + '1543': 0, + '1544': 0, + '1545': 0, + '1546': 0, + '1547': 0, + '1548': 0, + '1549': 0, + '1550': 0, + '1551': 0, + '1552': 0, + '1553': 0, + '1554': 0, + '1555': 0, + '1556': 0, + '1557': 0, + '1558': 0, + '1559': 0, + '1560': 0, + '1561': 0, + '1562': 0, + '1563': 0, + '1564': 0, + '1565': 0, + '1566': 0, + '1567': 0, + '1568': 0, + '1569': 0, + '1570': 0, + '1571': 0, + '1572': 0, + '1573': 0, + '1574': 0, + '1575': 0, + '1576': 0, + '1577': 0, + '1578': 0, + '1579': 0, + '1580': 0, + '1581': 0, + '1582': 0, + '1583': 0, + '1584': 0, + '1585': 0, + '1586': 0, + '1587': 0, + '1588': 0, + '1589': 0, + '1590': 0, + '1591': 0, + '1592': 0, + '1593': 0, + '1594': 0, + '1595': 0, + '1596': 0, + '1597': 0, + '1598': 0, + '1599': 0, + '1600': 0, + '1601': 0, + '1602': 0, + '1603': 0, + '1604': 0, + '1605': 0, + '1606': 0, + '1607': 0, + '1608': 0, + '1609': 0, + '1610': 0, + '1611': 0, + '1612': 0, + '1613': 0, + '1614': 0, + '1615': 0, + '1616': 0, + '1617': 0, + '1618': 0, + '1619': 0, + '1620': 0, + '1621': 0, + '1622': 0, + '1623': 0, + '1624': 0, + '1625': 0, + '1626': 0, + '1627': 0, + '1628': 0, + '1629': 0, + '1630': 0, + '1631': 0, + '1632': 0, + '1633': 0, + '1634': 0, + '1635': 0, + '1636': 0, + '1637': 0, + '1638': 0, + '1639': 0, + '1640': 0, + '1641': 0, + '1642': 0, + '1643': 0, + '1644': 0, + '1645': 0, + '1646': 0, + '1647': 0, + '1648': 0, + '1649': 0, + '1650': 0, + '1651': 0, + '1652': 0, + '1653': 0, + '1654': 0, + '1655': 0, + '1656': 0, + '1657': 0, + '1658': 0, + '1659': 0, + '1660': 0, + '1661': 0, + '1662': 0, + '1663': 0, + '1664': 0, + '1665': 0, + '1666': 0, + '1667': 0, + '1668': 0, + '1669': 0, + '1670': 0, + '1671': 0, + '1672': 0, + '1673': 0, + '1674': 0, + '1675': 0, + '1676': 0, + '1677': 0, + '1678': 0, + '1679': 0, + '1680': 0, + '1681': 0, + '1682': 0, + '1683': 0, + '1684': 0, + '1685': 0, + '1686': 0, + '1687': 0, + '1688': 0, + '1689': 0, + '1690': 0, + '1691': 0, + '1692': 0, + '1693': 0, + '1694': 0, + '1695': 0, + '1696': 0, + '1697': 0, + '1698': 0, + '1699': 0, + '1700': 0, + '1701': 0, + '1702': 0, + '1703': 0, + '1704': 0, + '1705': 0, + '1706': 0, + '1707': 0, + '1708': 0, + '1709': 0, + '1710': 0, + '1711': 0, + '1712': 0, + '1713': 0, + '1714': 0, + '1715': 0, + '1716': 0, + '1717': 0, + '1718': 0, + '1719': 0, + '1720': 0, + '1721': 0, + '1722': 0, + '1723': 0, + '1724': 0, + '1725': 0, + '1726': 0, + '1727': 0, + '1728': 0, + '1729': 0, + '1730': 0, + '1731': 0, + '1732': 0, + '1733': 0, + '1734': 0, + '1735': 0, + '1736': 0, + '1737': 0, + '1738': 0, + '1739': 0, + '1740': 0, + '1741': 0, + '1742': 0, + '1743': 0, + '1744': 0, + '1745': 0, + '1746': 0, + '1747': 0, + '1748': 0, + '1749': 0, + '1750': 0, + '1751': 0, + '1752': 0, + '1753': 0, + '1754': 0, + '1755': 0, + '1756': 0, + '1757': 0, + '1758': 0, + '1759': 0, + '1760': 0, + '1761': 0, + '1762': 0, + '1763': 0, + '1764': 0, + '1765': 0, + '1766': 0, + '1767': 0, + '1768': 0, + '1769': 0, + '1770': 0, + '1771': 0, + '1772': 0, + '1773': 0, + '1774': 0, + '1775': 0, + '1776': 0, + '1777': 0, + '1778': 0, + '1779': 0, + '1780': 0, + '1781': 0, + '1782': 0, + '1783': 0, + '1784': 0, + '1785': 0, + '1786': 0, + '1787': 0, + '1788': 0, + '1789': 0, + '1790': 0, + '1791': 0, + '1792': 0, + '1793': 0, + '1794': 0, + '1795': 0, + '1796': 0, + '1797': 0, + '1798': 0, + '1799': 0, + '1800': 0, + '1801': 0, + '1802': 0, + '1803': 0, + '1804': 0, + '1805': 0, + '1806': 0, + '1807': 0, + '1808': 0, + '1809': 0, + '1810': 0, + '1811': 0, + '1812': 0, + '1813': 0, + '1814': 0, + '1815': 0, + '1816': 0, + '1817': 0, + '1818': 0, + '1819': 0, + '1820': 0, + '1821': 0, + '1822': 0, + '1823': 0, + '1824': 0, + '1825': 0, + '1826': 0, + '1827': 0, + '1828': 0, + '1829': 0, + '1830': 0, + '1831': 0, + '1832': 0, + '1833': 0, + '1834': 0, + '1835': 0, + '1836': 0, + '1837': 0, + '1838': 0, + '1839': 0, + '1840': 0, + '1841': 0, + '1842': 0, + '1843': 0, + '1844': 0, + '1845': 0, + '1846': 0, + '1847': 0, + '1848': 0, + '1849': 0, + '1850': 0, + '1851': 0, + '1852': 0, + '1853': 0, + '1854': 0, + '1855': 0, + '1856': 0, + '1857': 0, + '1858': 0, + '1859': 0, + '1860': 0, + '1861': 0, + '1862': 0, + '1863': 0, + '1864': 0, + '1865': 0, + '1866': 0, + '1867': 0, + '1868': 0, + '1869': 0, + '1870': 0, + '1871': 0, + '1872': 0, + '1873': 0, + '1874': 0, + '1875': 0, + '1876': 0, + '1877': 0, + '1878': 0, + '1879': 0, + '1880': 0, + '1881': 0, + '1882': 0, + '1883': 0, + '1884': 0, + '1885': 0, + '1886': 0, + '1887': 0, + '1888': 0, + '1889': 0, + '1890': 0, + '1891': 0, + '1892': 0, + '1893': 0, + '1894': 0, + '1895': 0, + '1896': 0, + '1897': 0, + '1898': 0, + '1899': 0, + '1900': 0, + '1901': 0, + '1902': 0, + '1903': 0, + '1904': 0, + '1905': 0, + '1906': 0, + '1907': 0, + '1908': 0, + '1909': 0, + '1910': 0, + '1911': 0, + '1912': 0, + '1913': 0, + '1914': 0, + '1915': 0, + '1916': 0, + '1917': 0, + '1918': 0, + '1919': 0, + '1920': 0, + '1921': 0, + '1922': 0, + '1923': 0, + '1924': 0, + '1925': 0, + '1926': 0, + '1927': 0, + '1928': 0, + '1929': 0, + '1930': 0, + '1931': 0, + '1932': 0, + '1933': 0, + '1934': 0, + '1935': 0, + '1936': 0, + '1937': 0, + '1938': 0, + '1939': 0, + '1940': 0, + '1941': 0, + '1942': 0, + '1943': 0, + '1944': 0, + '1945': 0, + '1946': 0, + '1947': 0, + '1948': 0, + '1949': 0, + '1950': 0, + '1951': 0, + '1952': 0, + '1953': 0, + '1954': 0, + '1955': 0, + '1956': 0, + '1957': 0, + '1958': 0, + '1959': 0, + '1960': 0, + '1961': 0, + '1962': 0, + '1963': 0, + '1964': 0, + '1965': 0, + '1966': 0, + '1967': 0, + '1968': 0, + '1969': 0, + '1970': 0, + '1971': 0, + '1972': 0, + '1973': 0, + '1974': 0, + '1975': 0, + '1976': 0, + '1977': 0, + '1978': 0, + '1979': 0, + '1980': 0, + '1981': 0, + '1982': 0, + '1983': 0, + '1984': 0, + '1985': 0, + '1986': 0, + '1987': 0, + '1988': 0, + '1989': 0, + '1990': 0, + '1991': 0, + '1992': 0, + '1993': 0, + '1994': 0, + '1995': 0, + '1996': 0, + '1997': 0, + '1998': 0, + '1999': 0, + '2000': 0, + '2001': 0, + '2002': 0, + '2003': 0, + '2004': 0, + '2005': 0, + '2006': 0, + '2007': 0, + '2008': 0, + '2009': 0, + '2010': 0, + '2011': 0, + '2012': 0, + '2013': 0, + '2014': 0, + '2015': 0, + '2016': 0, + '2017': 0, + '2018': 0, + '2019': 0, + '2020': 0, + '2021': 0, + '2022': 0, + '2023': 0, + '2024': 0, + '2025': 0, + '2026': 0, + '2027': 0, + '2028': 0, + '2029': 0, + '2030': 0, + '2031': 0, + '2032': 0, + '2033': 0, + '2034': 0, + '2035': 0, + '2036': 0, + '2037': 0, + '2038': 0, + '2039': 0, + '2040': 0, + '2041': 0, + '2042': 0, + '2043': 0, + '2044': 0, + '2045': 0, + '2046': 0, + '2047': 0, + '2048': 0, + '2049': 0, + '2050': 0, + '2051': 0, + '2052': 0, + '2053': 0, + '2054': 0, + '2055': 0, + '2056': 0, + '2057': 0, + '2058': 0, + '2059': 0 + } + } + } + }, + image_two: null, + content_for_project: { + id: 1, + status: 'draft', + created_by: '9a6fbcfc-0bc7-4766-835d-93df7874cb42', + created_on: '2022-04-12T20:39:09.308Z', + name: 'Test Project', + location_country: 'South Africa', + main_image: 'db02b54d-e11d-448d-921d-c93f9703987c', + pillar: 'joy', + slug: 'test-project', + hero_background_color: '#E35169', + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [1, 2, 3, 12, 63, 64, 65, 66] + } + } + ] + }, + { + id: 2, + name: 'WASH Project Bihar', + pillar: 'water', + slug: 'wash-project-bihar', + location_country: 'India', + hero_background_color: null, + content: [ + { + id: 13, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.294Z', + text: 'Project Visit Report Bihar, India November 2015
\nBy Philippe Birker & David Caspers
\nWe will start this journey from the point where we are writing it from, the lovely capital of Nepal, Kathmandu. The three founders of the Love Foundation (Marius, David and Philippe) gathered here on the 8th of November 2015, and after a few days here we embarked towards our project in Bihar, India close to the Nepalese border. Due to the Nepalese fuel crisis sparked by an Indian-imposed fuel import blockade this was a bigger task than expected. Long story short we ended up in a Jeep with 7 other Nepalese and Chinese people trying to make it towards the border. Due to the current political turbulences on the Indian/Nepalese border, the main crossing in Raxaul was closed and we had to head further south to Biratnagar.
\nThe journey started with crossing the Nepalese mountains (serious mountains) in order to reach the valley where the Indian border was. Soon after we embarked, it became clear that safe driving in Nepal has a different meaning than in Europe and the three of us had a fair share of bonding moments when we went with screaming tires into another curve downwards the hills.
\n\n
Once at the bottom a military convoy welcomed us, being so kind escorting us and hundreds of other cars, busses and vans through the occupied militants zone in the south east of Nepal - through the dark of the middle of the night. Tensions between Nepal and India are at a height right now, given the blockade of fuel and oil imports from India to Nepal. With the sunrise in our backs, we finally believed to have reached our destination, and we walked over the border to India.
\n\n
However, a crucial exit stamp from Nepal was needed, which could only be gotten roughly 300 km east from where we were. Thus, we headed further to the border of Nepal and the Indian state of Bengal, in order to enter the country where our project is carried out. After another 8 hours and a total journey of 2.5 days, we finally reached our project area, and met with our colleagues Sanjib and Francesca from the Welthungerhilfe in Darbhanga, India.
\n\n
After a good night of rest, we left the hotel at 8am to drive to our project area. We were warmly welcomed by the Indian partner organization of the Welthungerhilfe, called GPSVS, which is operating from its head office in the middle of the project area, which we have been supporting over the last three years.
\n\n
There, we got a first overview and personal introduction to the work that has been carried out over the last few years, and we got an overview of what has been achieved. Before showing you the facts, we should explain that the main approach of GPSVS is to empower the local community and to initiate a behaviour change in the local population. The idea is that it does not help if you as an external actor build toilets that no one uses afterwards and that it is much more important to educate people about the importance of hygiene, the difference between clean water and pure water and other information related to WASH.
\n\n
The method that the GPSVS chose for this is the establishment of WASH committees in all of the project villages under its supervision. WASH committees are largely consisting of women (usually more than 80%) from the local villages. This serves the double purpose of giving empowering women in a male dominated society, as well as giving voice and decision making power to the community, as the WASH committee decides together with the GPSVS what should be done in order to increase the cleanliness as well as the access to safe drinking water, sanitation and hygienic practices in the specific village.
Our partner organisation GPSVS was established in 1977. Since then it is working on community-based mechanisms for self reliance and sustainability and cultivate e.g. an administrative unit as the focal point for promoting an inclusive model of self reliance, development and organization. Their focus is village self-reliance based on principles of Equity, Justice, Tolerance and ‘Ahimsa’ (= non violence). Key objectives of the organisation contain e.g. the formation of people’s organization for women and youths to strengthen the capacity of marginalized communities for sustainable development, influencing policies to create enabling environments for community led programmes. For GPSVS, all objectives should be achieved with gender sensitivity. GPSVS tries to work on a grassroots level with creative people’s involvement throughout the last 35 years in Bihar, and is since the past decade geographically widening their activities to other districts.
Concerning WASH, mass awareness campaigns on the issue of water-crisis at local and global level were created together with multi stakeholder initiatives on WASH practices. Concrete measures such as water testing and water treatment to monitor the water quality within a project area are taken in this framework. Next to the water component, our partner organisation work in contexts of SARL – Sustainable Agriculture and Rural Livelihood. Another of the nine programmes of GPSVS (what we explain here is just a brief selected overview) is a programme where they spread the word about the Right to Information, e.g. in the context of legal and social rights awareness camps for the disabled, minorities and women. GPSVS has more than 25 partners worldwide that it collaborates with, amongst other the Welthungerhilfe, European Union, UNDP, UNICEF and others.
\nOverall achievements:
\n
34 WASH committees have been established in order to manage WASH related issues in their villages
\n
\n
On a general note it has to be said, that full coverage of all households with individual toilets is not feasible. Public toilets have been installed in all villages, allowing all villagers to go the toilet in dignity, safety and in a clean environment. Also, from what we have seen hygienic awareness has been extremely increased, as the local women meet every month to discuss this issue and how to improve it specifically. One committee told us that they are, upon request, intending to go to villages of friends and family that have not been part of the program, in order to set up the same community-driven structures for development. Hence, even without GPSVS carrying out their work, development is taking place, as capacities and knowledge for self-reliance are being transferred, and not just technologies.
\n\n
Overall impact:
\n\n
1) Environment induced risk due to open defecation, open sewage, water logging, poor quality water, contamination of water at source and use storage of water has been reduced.
\n2) After this project social position of women/marginalised community has improved.
\n3) Awareness regarding safe water use practices and use of toilets has reduced the risks to water borne diseases.
\n4) Its impact is seen on improved earnings through the reduced expenditure on water borne diseases caused by contaminated water has caused 30% decrease in health expenditure.
\n\n
Even though these numbers are still far from perfect, Welthungerhilfe and GPSVS believe that the community is capable of taking things from here themselves and that they will further improve the WASH situation in their and the surrounding villages under guidance from the WASH committees established by us. Naturally, GPSVS and the Welthungerhilfe will keep on monitoring the situation on the ground, and a follow up report for 2016 will be provided by the end of the year.
', + type: 'text_only', + sort: null, + text_layout: 'full_width', + content_label: 'Bihar 02', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 2, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:25.994Z', + name: 'WASH Project Bihar', + location_country: 'India', + main_image: 'd27a0109-9b85-4e74-a547-638a782b7dfd', + pillar: 'water', + slug: 'wash-project-bihar', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [13, 61] + } + } + ] + }, + { + id: 3, + name: 'Simavi Project in Kenya', + pillar: 'water', + slug: 'simavi-project-in-kenya', + location_country: 'Kenya', + hero_background_color: null, + content: [ + { + id: 48, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.510Z', + text: 'Without having proper access and use of WASH facilities at schools and at households the health situation of the community will not improve adequately, and either the school based or the community / household WASH facilities will be overused and overburdened resulting in a reduced lifespan of the facilities. By paying only attention to school WASH while children at home do not have access to for example a latrine or the other way around, having access at home but not at school, only part of the problem has been solved. Specific attention to schools has proven advantages; children- early adopters- learn more easily than adults and they are quicker in adjusting their behaviour. Once children have accepted certain positive behaviour like hand washing or using a hygienic latrine they easily maintain that behaviour when they are adults.
\nBased on the above Simavi presents the ‘WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme. By integrating community and school WASH projects in three adjacent countries in East Africa, implemented by three local NGO partners which each have specific features and challenges, Simavi would like to ensure they learn from each other. Different approaches will be followed. By pooling three countries and three partners, Simavi can offer specific learning sessions and sharing for example on the results of pilots on small business development that will be assessed, improved and scaled out. One of the methods to share the learnings also with a broader public will be to add specific pages to the www.washinschools.info website. This website is being managed by the IRC since 2009 and the IRC can arrange to add pages / information on the WvW financed activities to facilitate the internal programme learning and sharing as well as the external sharing of information and experiences. Witteveen & Bos will provide specific technical training to the local NGOs to improve the technical component of the programme. Thereby increasing each their effectiveness at their respective local areas. In the meantime Simavi and A4A can present learning from this programme to improve the Community and School WASH projects of other stakeholders like Rotary Clubs.
\n\n
WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme
\nKenya : Nambale and Teso South Sub-Counties, Busia County, Western Kenya
\nKenya : CABDA (NGO, partner of Simavi since 2006), Maji Milele (business partner, prepaid water services), Davis&Shirtlif (private partner, pump supplier)
\nWithout having proper access and use of WASH facilities at schools and at households the health situation of the community will not improve adequately, and either the school based or the community / household WASH facilities will be overused and overburdened resulting in a reduced lifespan of the facilities. By paying only attention to school WASH while children at home do not have access to for example a latrine or the other way around, having access at home but not at school, only part of the problem has been solved. Specific attention to schools has proven advantages; children- early adopters- learn more easily than adults and they are quicker in adjusting their behaviour. Once children have accepted certain positive behaviour like hand washing or using a hygienic latrine they easily maintain that behaviour when they are adults.
\nBased on the above Simavi presents the ‘WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme. By integrating community and school WASH projects in three adjacent countries in East Africa, implemented by three local NGO partners which each have specific features and challenges, Simavi would like to ensure they learn from each other. Different approaches will be followed. By pooling three countries and three partners, Simavi can offer specific learning sessions and sharing for example on the results of pilots on small business development that will be assessed, improved and scaled out. One of the methods to share the learnings also with a broader public will be to add specific pages to the www.washinschools.info website. This website is being managed by the IRC since 2009 and the IRC can arrange to add pages / information on the WvW financed activities to facilitate the internal programme learning and sharing as well as the external sharing of information and experiences. Witteveen & Bos will provide specific technical training to the local NGOs to improve the technical component of the programme. Thereby increasing each their effectiveness at their respective local areas. In the meantime Simavi and A4A can present learning from this programme to improve the Community and School WASH projects of other stakeholders like Rotary Clubs.
\n\n
WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme
\nKenya : Nambale and Teso South Sub-Counties, Busia County, Western Kenya
\nKenya : CABDA (NGO, partner of Simavi since 2006), Maji Milele (business partner, prepaid water services), Davis&Shirtlif (private partner, pump supplier)
\nWithout having proper access and use of WASH facilities at schools and at households the health situation of the community will not improve adequately, and either the school based or the community / household WASH facilities will be overused and overburdened resulting in a reduced lifespan of the facilities. By paying only attention to school WASH while children at home do not have access to for example a latrine or the other way around, having access at home but not at school, only part of the problem has been solved. Specific attention to schools has proven advantages; children- early adopters- learn more easily than adults and they are quicker in adjusting their behaviour. Once children have accepted certain positive behaviour like hand washing or using a hygienic latrine they easily maintain that behaviour when they are adults.
\nBased on the above Simavi presents the ‘WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme. By integrating community and school WASH projects in three adjacent countries in East Africa, implemented by three local NGO partners which each have specific features and challenges, Simavi would like to ensure they learn from each other. Different approaches will be followed. By pooling three countries and three partners, Simavi can offer specific learning sessions and sharing for example on the results of pilots on small business development that will be assessed, improved and scaled out. One of the methods to share the learnings also with a broader public will be to add specific pages to the www.washinschools.info website. This website is being managed by the IRC since 2009 and the IRC can arrange to add pages / information on the WvW financed activities to facilitate the internal programme learning and sharing as well as the external sharing of information and experiences. Witteveen & Bos will provide specific technical training to the local NGOs to improve the technical component of the programme. Thereby increasing each their effectiveness at their respective local areas. In the meantime Simavi and A4A can present learning from this programme to improve the Community and School WASH projects of other stakeholders like Rotary Clubs.
\n\n
WASH and Learn! An Eastern Africa Community & School WASH Learning and Exchange Programme
\nKenya : Nambale and Teso South Sub-Counties, Busia County, Western Kenya
\nKenya : CABDA (NGO, partner of Simavi since 2006), Maji Milele (business partner, prepaid water services), Davis&Shirtlif (private partner, pump supplier)
\nBrazil Tour 2018
', + type: 'text_only', + sort: 1, + text_layout: 'full_width', + content_label: 'Brazil Tour', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 4, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.007Z', + name: 'Brazil Tour 2018', + location_country: 'Brazil', + main_image: '2ab1b5bc-d4c8-44f0-b345-173fc26d844c', + pillar: 'community', + slug: 'brazil-tour-2018', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42] + } + }, + { + id: 29, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.222Z', + text: 'A Love Foundation é uma rede internacional de artistas e ativistas. Através de nossos eventos de esporte e cultura geramos recursos para projetos sociais, em especial aos relativos ao acesso a água potável e estrutura sanitária em regiões de pobreza, como os que já vem sendo realizados nos países africanos do Quênia e Etiópia através das nossas ONG\'s parceiras Viva con Agua e Simavi.
', + type: 'text_only', + sort: null, + text_layout: 'full_width', + content_label: 'LF', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 4, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.007Z', + name: 'Brazil Tour 2018', + location_country: 'Brazil', + main_image: '2ab1b5bc-d4c8-44f0-b345-173fc26d844c', + pillar: 'community', + slug: 'brazil-tour-2018', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42] + } + }, + { + id: 32, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.405Z', + text: 'Buscamos levar através dos nossos eventos a idéia do Amor Universal e do poder da comunidade em criar as mudanças necessárias para um mundo melhor e sustentável feito por tod@s e para tod@s. Acreditamos na Alegria como fator motivacional e de transformação, mas também acreditamos que tudo deve ter um propósito superior ao prazer individual. O acesso a água potável e estrutura sanitária para todas as pessoas do planeta é a missão principal de nossas atividades como premissa básica para a vida humana, assim como é o Amor.
A Love Foundation foi criada em 2013 por um designer e dois estudantes da Universidade de Maastricht na Holanda e já se espalhou pelo mundo realizando eventos em diversas partes do globo como EUA, Inglaterra e Israel e com atividade constante na Alemanha, Holanda, Espanha, Itália, Portugal, Finlândia e Austrália. Temos unidades ativas nas cidades de Berlin, Amsterdam, Milão, Dresden, Maastricht, Helsinki e Perth.
', + type: 'text_only', + sort: null, + text_layout: null, + content_label: 'founding', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 4, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.007Z', + name: 'Brazil Tour 2018', + location_country: 'Brazil', + main_image: '2ab1b5bc-d4c8-44f0-b345-173fc26d844c', + pillar: 'community', + slug: 'brazil-tour-2018', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42] + } + }, + { + id: 35, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.421Z', + text: "Nossos eventos vão de esportes a moda, arte e principalmente música feitos e decididos de maneira livre e espontânea por cada unidade do globo. Todos nós envolvidos doamos nosso trabalho e do lucro líquido revertemos 80% para os projetos sociais administrados por ONG's parceiras que realizam diretamente os projetos apoiados por nós, e 20% retorna para a unidade da Love Foundation custear sua estrutura básica e reinvestir em novas ações.
", + type: 'text_only', + sort: null, + text_layout: 'full_width', + content_label: 'NGOs', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 4, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.007Z', + name: 'Brazil Tour 2018', + location_country: 'Brazil', + main_image: '2ab1b5bc-d4c8-44f0-b345-173fc26d844c', + pillar: 'community', + slug: 'brazil-tour-2018', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42] + } + }, + { + id: 36, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.426Z', + text: 'Viva con Agua de Sankt Pauli is a charitable organisation based in St. Pauli, Hamburg (Germany), campaigning for clean drinking water worldwide. It is also the recipient of all fundraising activities carried out by the Love Foundation.
', + type: 'text_only', + sort: null, + text_layout: 'full_width', + content_label: 'VcA', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 5, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.012Z', + name: 'Viva con Agua de Sankt Pauli e.V.', + location_country: 'Germany', + main_image: 'ffbf9730-584b-4123-a995-85e0946de62d', + pillar: 'water', + slug: 'viva-con-agua-de-sankt-pauli-e-v', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [43, 44, 45, 46, 47] + } + }, + { + id: 44, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.481Z', + text: 'What is Viva con Agua?
\nBesides the air we breathe, water is the most fundamental source of life.
Water creates life, water is life. Water means healthy living, happy living. For Viva con Agua de Sankt Pauli this is the primary motivation for our activities - the funding and implementation of water projects around the world and thus enabling people to access clean water.
Viva con Agua sees itself as an open network! Everyone can get involved with Viva con Agua! Women and men of all ages, professions and backgrounds have access to the network, enabling everyone to bring in their own skills.
\nViva con Agua is a platform for personal initiative and engagement! - put your ideas for a more social world into action and we will support you.
', + type: 'image_right', + sort: null, + text_layout: null, + content_label: 'what is vca?', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 5, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.012Z', + name: 'Viva con Agua de Sankt Pauli e.V.', + location_country: 'Germany', + main_image: 'ffbf9730-584b-4123-a995-85e0946de62d', + pillar: 'water', + slug: 'viva-con-agua-de-sankt-pauli-e-v', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [43, 44, 45, 46, 47] + } + }, + { + id: 45, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.487Z', + text: "Viva con Agua is the world's first All-Profit-Organisation!
Everyone benefits from our actions: the artists, organizers and visitors of events for and with Viva con Agua, the initiative itself and in particular the people in the specific project areas. In particular cross-cultural events form the basis for our fundraising.
We believe helping can be great fun while following respectable aims!
\nViva con Agua unites development cooperation, climate protection and sport.
\nThe main part of our funds is used for the realisation of drinking water projects using individually adapted solutions. Viva con Agua off-sets it's emissions of events and other fundraising activities by funding projects working on climate change. Viva con Agua has a primary connection to sport, especially football.
\nOur drinking water initiative has its roots in St. Pauli of Hamburg, the cosmopolitan borough of the city, situated along the waterside with the harbour as gateway to the world and FC. St. Pauli in its heart which by the way is also in the right place!
\nViva con Agua's aim is to bring about positive change through social engagement and through triggering developments in the right direction.
\nTo realise our drinking water projects we need resources. Most of Viva con Agua's funds are raised through various cultural and sporting events.
", + type: 'image_right', + sort: null, + text_layout: null, + content_label: 'full profit', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: 'de409449-9343-4777-944a-e55f8203c587', + storage: 'minio', + filename_disk: 'de409449-9343-4777-944a-e55f8203c587.png', + filename_download: '11d55c9600a2431ce28fa483730005a7_f138.png', + title: '11d55c9600a2431ce28fa483730005a7 F138', + type: 'image/png', + folder: null, + uploaded_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + uploaded_on: '2021-09-15T20:11:02.004Z', + modified_by: null, + modified_on: '2021-09-15T20:11:02.069Z', + charset: null, + filesize: '952148', + width: 580, + height: 820, + duration: null, + embed: null, + description: '', + location: null, + tags: null, + metadata: { + ihdr: { + ImageWidth: 580, + ImageHeight: 820, + BitDepth: 8, + ColorType: 'RGB with Alpha', + Compression: 'Deflate/Inflate', + Filter: 'Adaptive', + Interlace: 'Noninterlaced' + } + } + }, + image_two: null, + content_for_project: { + id: 5, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.012Z', + name: 'Viva con Agua de Sankt Pauli e.V.', + location_country: 'Germany', + main_image: 'ffbf9730-584b-4123-a995-85e0946de62d', + pillar: 'water', + slug: 'viva-con-agua-de-sankt-pauli-e-v', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [43, 44, 45, 46, 47] + } + }, + { + id: 46, + status: 'published', + created_by: '5d1b77de-5d89-446a-9ce4-1c0a28c0d74b', + created_on: '2021-09-15T20:23:26.496Z', + text: 'Viva con Agua raises awareness on the issues surrounding access to clean drinking water by organising fundraising events such as concerts, parties, readings, exhibitions and fundraising walks as well as football benefit games and much more.
\nFurthermore, Viva con Agua wants to get young people interested in the topic of access to water and development in general. In order to push this idea, we organise events in schools, such as Water-Workshops, in which the youngest generation gets involved and actively engaged in the topic.
\nThe funds raised by the various events go entirely to Welthungerhilfe who guarantee a professional realisation of the projects. Welthungerhilfe is a private, politically independent, non-denominational relief non-profit-organisation which works under a voluntary Board of Directors and the patronage of the German President.
\nWe monitor and evaluate the way our funds are generation and then used for the projects in country.
\nAt Viva con Agua, football stands for the notion of fair play, transferred to the fair and respectful treatment of the people around us and our environment. For us, football symbolises sportive effort, which is needed to bring about change.
Football is to be understood as a sportive Esperanto, a language lifting borders and differences between people.
Viva con Agua - because water is life!
Text taken from www.vivaconagua.co.uk
Greetings! My name is Valentina Bellina and I started an internship at Love Foundation as social media manager in March 2022. I started remotely due to the pandemic, but finally I had the chance to meet some Love Foundation members in Brandenburg during the Love Captains’ meeting in April 2022.
\nLove Captains are the coordinators of the various hubs located in different cities. Monthly virtual meetings take place where we update each other on the activities and events organized by each hub as well as exchange and elaborate on our different ideas. Along with these online meetings, the Love Captains meet in person annually, such as the Brandeburg meeting I was a part of.
\nThe three days in the countryside of Brandenburg were crucial for me to learn more about the dynamics of Love Foundation. Additionally, the people I met, the food I ate, and the music I enjoyed were phenomenal during these days. All of this promotes the idea of community spirit as one of the main pillars that upholds Love Foundation.
\nThe coordination meeting of the German hubs was held in a wonderful and peaceful place, which was the right choice to develop new ideas together.
\n\n
', + type: 'text_only', + sort: 0, + text_layout: 'full_width', + content_label: 'Love Captains Meeting 01 ', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 7, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-15T08:59:04.235Z', + name: "Hub Coordinators' Meeting", + location_country: 'Germany', + main_image: 'bdf1f4dc-b4c6-4535-baa3-d5fa97781267', + pillar: 'community', + slug: 'love-captains-meeting-2022', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [67, 68, 69, 70, 71, 72] + } + }, + { + id: 68, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-16T09:39:40.370Z', + text: '
My trip to the countryside of Brandenburg was accompanied by Lucas, my supervisor, and Mitch, a member of the Munich hub. We left Berlin to reach a house, totally lost in nature and surrounded only by silence. When we arrived, it was already late, but we spent some time together with other members and started writing down a list of the main topics we would like to discuss the next day.
\nThe second day was the busiest one. We woke up in the early morning and had breakfast together that someone was kind enough to prepare. While we were drinking coffee, my shy gaze crossed with that of others - I was very curious about how the meeting would take place.
\nDue to the warm weather, we decided to start outside in the garden. First, we talked about how the pandemic decreased the interest of members of some hubs, mainly due to the overwhelming difficulty of organizing events in the last two years. The next topic was related to how to use and improve visibility through social media channels. I had talked about this with Franze, who manages the Love Foundation Berlin Instagram profile, before, so I was able to get to know some of the ideas and challenges that had come up over recent years.
\n', + type: 'image_left', + sort: 1, + text_layout: 'full_width', + content_label: "Love Captains' Meeting 02", + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '5be1c061-ff7c-4eca-80d9-d114bd39f901', + storage: 'minio', + filename_disk: '5be1c061-ff7c-4eca-80d9-d114bd39f901.jpeg', + filename_download: 'Pic 2.jpeg', + title: 'Pic 2', + type: 'image/jpeg', + folder: null, + uploaded_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + uploaded_on: '2022-07-17T09:13:50.107Z', + modified_by: null, + modified_on: '2022-07-17T09:13:50.325Z', + charset: null, + filesize: '453997', + width: 1125, + height: 2000, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + image_two: null, + content_for_project: { + id: 7, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-15T08:59:04.235Z', + name: "Hub Coordinators' Meeting", + location_country: 'Germany', + main_image: 'bdf1f4dc-b4c6-4535-baa3-d5fa97781267', + pillar: 'community', + slug: 'love-captains-meeting-2022', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [67, 68, 69, 70, 71, 72] + } + }, + { + id: 69, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-17T09:19:13.257Z', + text: '
On the third and last day, we spent an amazing time together at the Seftenberg lake where we enjoyed the fabulous landscape. Then, we organized the rides home, hugged, and went our separate ways, all with very big smiles on our faces.
', + type: 'image_right', + sort: 2, + text_layout: 'full_width', + content_label: 'Love Captains Meeting 03', + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: 'e5d5faf0-7a2d-4b55-acf4-5840de5885b2', + storage: 'minio', + filename_disk: 'e5d5faf0-7a2d-4b55-acf4-5840de5885b2.jpeg', + filename_download: 'Pic 4.jpeg', + title: 'Pic 4', + type: 'image/jpeg', + folder: null, + uploaded_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + uploaded_on: '2022-07-17T09:26:03.954Z', + modified_by: null, + modified_on: '2022-07-17T09:26:05.319Z', + charset: null, + filesize: '522112', + width: 2000, + height: 1125, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + image_two: null, + content_for_project: { + id: 7, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-15T08:59:04.235Z', + name: "Hub Coordinators' Meeting", + location_country: 'Germany', + main_image: 'bdf1f4dc-b4c6-4535-baa3-d5fa97781267', + pillar: 'community', + slug: 'love-captains-meeting-2022', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [67, 68, 69, 70, 71, 72] + } + }, + { + id: 70, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-17T09:32:59.541Z', + text: 'The friendly atmosphere during these two and a half days was essential to understanding how the community functions and especially how important it is to attend these meetings: not only to keep raising awareness for diversity, gender equality, and change, but it also serves as a reminder to why and how we volunteer for Love Foundation in the first place. This is why I loved asking for and listening to the stories of community members and how they came to become part of Love Foundation.
', + type: 'image_left', + sort: 3, + text_layout: 'full_width', + content_label: "Love Captains' Meeting 04", + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '60ca72f9-b75f-458e-a8d4-9c250c323d94', + storage: 'minio', + filename_disk: '60ca72f9-b75f-458e-a8d4-9c250c323d94.jpeg', + filename_download: 'Pic 5.jpeg', + title: 'Pic 5', + type: 'image/jpeg', + folder: null, + uploaded_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + uploaded_on: '2022-07-17T09:32:25.817Z', + modified_by: null, + modified_on: '2022-07-17T09:32:28.514Z', + charset: null, + filesize: '178400', + width: 2000, + height: 1125, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + image_two: null, + content_for_project: { + id: 7, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-15T08:59:04.235Z', + name: "Hub Coordinators' Meeting", + location_country: 'Germany', + main_image: 'bdf1f4dc-b4c6-4535-baa3-d5fa97781267', + pillar: 'community', + slug: 'love-captains-meeting-2022', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [67, 68, 69, 70, 71, 72] + } + }, + { + id: 71, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-17T09:38:55.593Z', + text: 'The amazing thing about this community is not only the different personalities but also how the pillars of the organization are mirrored in each of us, from those who are more connected to environmental protection issues, to those who are more interested in political dynamics. I strongly believe that this diversity of interests makes this community unique and meeting all these amazing people reminded me of why I decided to become part of this project originally.
', + type: 'image_right', + sort: 4, + text_layout: 'full_width', + content_label: "Love Captains' Meeting 05", + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '4208c4f7-9b79-4381-8787-dbbf07f45f4f', + storage: 'minio', + filename_disk: '4208c4f7-9b79-4381-8787-dbbf07f45f4f.jpeg', + filename_download: 'pic 6.jpeg', + title: 'Pic 6', + type: 'image/jpeg', + folder: null, + uploaded_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + uploaded_on: '2022-07-17T09:37:08.968Z', + modified_by: null, + modified_on: '2022-07-17T09:37:09.265Z', + charset: null, + filesize: '162572', + width: 1125, + height: 2000, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + image_two: null, + content_for_project: { + id: 7, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-15T08:59:04.235Z', + name: "Hub Coordinators' Meeting", + location_country: 'Germany', + main_image: 'bdf1f4dc-b4c6-4535-baa3-d5fa97781267', + pillar: 'community', + slug: 'love-captains-meeting-2022', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [67, 68, 69, 70, 71, 72] + } + }, + { + id: 72, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-17T09:41:31.363Z', + text: 'In the beginning, when I decided to move to Berlin, without speaking the language properly and without any acquaintances, everything seemed to be very complicated and tough; but through my involvement in Love Foundation and the power of its community, I realized the importance of collectivity.
\nWhile I still have to learn a lot from this experience, I have already realized that by doing an internship in social media and my presence at events, such as the Love Captains’ meeting are crucial first steps. Since I am interested in photography, documenting such events with pictures will be one of my main goals.
\n', + type: 'image_left', + sort: 5, + text_layout: 'full_width', + content_label: "Love Captains' Meeting 06", + distance_to_next: 'small', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: 'fef4c8ce-91bd-46ba-a4b6-a11779d60bb1', + storage: 'minio', + filename_disk: 'fef4c8ce-91bd-46ba-a4b6-a11779d60bb1.jpeg', + filename_download: 'pic 7.jpeg', + title: 'Pic 7', + type: 'image/jpeg', + folder: null, + uploaded_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + uploaded_on: '2022-07-17T09:41:05.284Z', + modified_by: null, + modified_on: '2022-07-17T09:41:07.973Z', + charset: null, + filesize: '187362', + width: 1125, + height: 2000, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + image_two: null, + content_for_project: { + id: 7, + status: 'published', + created_by: '4909fb5a-a05c-4c2e-be3a-cf80f93f5808', + created_on: '2022-07-15T08:59:04.235Z', + name: "Hub Coordinators' Meeting", + location_country: 'Germany', + main_image: 'bdf1f4dc-b4c6-4535-baa3-d5fa97781267', + pillar: 'community', + slug: 'love-captains-meeting-2022', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [67, 68, 69, 70, 71, 72] + } + } + ] + }, + { + id: 14, + name: 'Nina Manzi- Cape Town WASH Bus Project', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + location_country: 'South Africa ', + hero_background_color: null, + content: [ + { + id: 74, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.842Z', + text: '
\n
South Africa, especially Cape Town, has faced a myriad of issues, both stemming from historical injustices to current socioeconomic instability. Cape Town, like many Southern African cities was facing a major drought in 2018, leading extreme water insecurity. A looming Day Zero in which there would be no water for consumption within the city seemed to be on the horizon for Cape Town. In this situation, the gap between the impoverished and the wealthy were prevalent with the building of private wells, purchasing of inflated-priced water bottles, and even paying water-usage fines being undertaken by those who could afford to while those who could not were left in the hands of the government.
', + type: 'image_right', + sort: 2, + text_layout: 'one_column', + content_label: 'Background', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '6117cf54-9ef9-46e2-98be-cd9f5eb897e9', + storage: 'minio', + filename_disk: '6117cf54-9ef9-46e2-98be-cd9f5eb897e9.webp', + filename_download: 'SA Cape Town Report.webp', + title: 'Sa Cape Town Report', + type: 'image/webp', + folder: null, + uploaded_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + uploaded_on: '2022-12-02T17:06:36.983Z', + modified_by: null, + modified_on: '2022-12-02T17:06:37.143Z', + charset: null, + filesize: '30770', + width: 865, + height: 431, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: null + }, + image_two: null, + content_for_project: { + id: 14, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.832Z', + name: 'Nina Manzi- Cape Town WASH Bus Project', + location_country: 'South Africa ', + main_image: '300547cb-0adc-4f72-b4dc-0528f06704fd', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [74, 89, 90, 103, 104, 106, 107, 108, 109] + } + }, + { + id: 90, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:38:33.297Z', + text: 'It is then no surprise that Love Foundation had a hub born out of this water crisis with the Cape Town hub being founded in 2019. The four founding members hit the ground running, organizing beautiful parties and yoga sessions, but hit a wall with the pandemic. However, our main partner, Viva con Aqua turned its sights to Cape Town and founded a branch in 2020. Along with this branch, Viva con Aqua opened Villa Viva, a multi-purpose guest house, networking platform and creative hub to be utilized by both Viva con Aqua team and the Love Foundation hubs. Thankfully by then, sufficient rain fall had provided the Cape Town region with plenty of water, avoiding the Day Zero catastrophe.
\n', + type: 'image_left', + sort: 3, + text_layout: 'one_column', + content_label: 'Background (2)', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '6d960db9-482d-417c-9754-bc46729e2614', + storage: 'minio', + filename_disk: '6d960db9-482d-417c-9754-bc46729e2614.png', + filename_download: 'SA Cape Town (4).png', + title: 'Sa Cape Town (4)', + type: 'image/png', + folder: null, + uploaded_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + uploaded_on: '2022-12-02T17:09:23.162Z', + modified_by: null, + modified_on: '2022-12-02T17:09:23.334Z', + charset: null, + filesize: '323496', + width: 512, + height: 323, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: {} + }, + image_two: null, + content_for_project: { + id: 14, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.832Z', + name: 'Nina Manzi- Cape Town WASH Bus Project', + location_country: 'South Africa ', + main_image: '300547cb-0adc-4f72-b4dc-0528f06704fd', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [74, 89, 90, 103, 104, 106, 107, 108, 109] + } + }, + { + id: 103, + status: 'draft', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T16:59:35.324Z', + text: '
While water security is something to be celebrated, it was not the end to the issues facing Cape Town. From the start of the pandemic in 2020, homelessness has been rising with some local estimations of 300 percent increases. Similar to the water insecurity situation and many of the issues faced in South Africa, it comes down to the have’s and the have-not’s, whether that be political power seen in deeply racist history or the current wide gap between socioeconomic groups.
\n', + type: 'text_only', + sort: 4, + text_layout: 'full_width', + content_label: 'Background (3)', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 14, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.832Z', + name: 'Nina Manzi- Cape Town WASH Bus Project', + location_country: 'South Africa ', + main_image: '300547cb-0adc-4f72-b4dc-0528f06704fd', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [74, 89, 90, 103, 104, 106, 107, 108, 109] + } + }, + { + id: 104, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T17:00:12.124Z', + text: '
While there are a few names for this idea, Soapbox bus, WASH bus, etc, the idea is very straightforward: provide those experiencing homelessness with access to fully working bathrooms. This simple, yet crucial part of every day life cannot always be accessed by those living on the streets and can widen the barrier to re-enter into society. In providing this service, this project aims to restore dignity and eradicate preventable diseases experienced from a lack of hygiene. It can also display a better way of approaching homelessness; 45 percent of the city’s homelessness budget is used to incarcerate and harass the homeless population.
\nTo get an initial design for the WASH bus, Absolute Ablutions was the first organization to consult. With a specialized focus on mobile sanitation trailers, they designed the perfect bus for our project, complete with four showers and four bathrooms. Additionally, the paint job on the bus was designed by an urban art organization, Baz-Art to reflect the day-to-day lives of those experiencing homelessness.
\nThe final key partner in this project is U-Turn, an NGO focused on shaping a path back into society for the homeless population of Cape Town. U-Turn developed a voucher program that allow those in need to earn vouchers by cleaning up trash which they are able to use on food and clothing. With this system, those with these vouchers can use them for the WASH bus. This way it avoids the feeling of receiving a “hand out”, rather someone experiencing homelessness could feel a sense of accomplishment that may be missing from their day to day life.
', + type: 'image_right', + sort: 6, + text_layout: 'full_width', + content_label: 'WASH Bus (1)', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '95426940-71e1-4fae-b53b-0ac6f3b7e6b9', + storage: 'minio', + filename_disk: '95426940-71e1-4fae-b53b-0ac6f3b7e6b9.jpeg', + filename_download: 'SA Cape Town Report (2) .jpeg', + title: 'Sa Cape Town Report (2) ', + type: 'image/jpeg', + folder: null, + uploaded_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + uploaded_on: '2022-12-02T17:26:32.665Z', + modified_by: null, + modified_on: '2022-12-02T17:26:32.816Z', + charset: null, + filesize: '130792', + width: 700, + height: 1050, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: {} + }, + image_two: null, + content_for_project: { + id: 14, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.832Z', + name: 'Nina Manzi- Cape Town WASH Bus Project', + location_country: 'South Africa ', + main_image: '300547cb-0adc-4f72-b4dc-0528f06704fd', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [74, 89, 90, 103, 104, 106, 107, 108, 109] + } + }, + { + id: 106, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T17:01:53.363Z', + text: 'This WASH Bus was initiated at the end of 2021. However, a major roadblock was hit with the city government as this project required access to city water. Although this hindered the project, it did not stop there and the first WASH bus rolled out on July 2022. Appropriately named, “Nina Manzi”, meaning mother of water, the bus served those in the Claremont neighborhood for the pilot program. Since then, it has expanded to two other neighborhoods, Muizenberg and Michelles Plain. During the first months, there was a noticeable disparity between the amount of men versus women using the services. To welcome more women to use the facilities, there are separate entrances for both men and women.
\nThis project has received a great deal of local media coverage, interviewing those using this bus. Some users have very expected responses, with many using the shower facilities before a job interviews and one user reporting “feeling fresh and ready to go,” after a fresh shower. However, this can be an emotional experience for some. One women who has lived on the streets for 30 years said, “I just cried underneath the water”. These reports show the social benefits of this project by providing the opportunity to restore confidence before job interviews. However, it also displays the mental anguish and anxiety homelessness can bring and how powerful providing the services of the WASH bus may be in relieving those mental conditions.
', + type: 'image_left', + sort: 8, + text_layout: 'full_width', + content_label: 'WASH Bus (3) ', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: 'b45c51e0-c689-43ce-bdb1-ed3417fae0a2', + storage: 'minio', + filename_disk: 'b45c51e0-c689-43ce-bdb1-ed3417fae0a2.jpeg', + filename_download: 'SA Cape Town Report (3) .jpeg', + title: 'Sa Cape Town Report (3) ', + type: 'image/jpeg', + folder: null, + uploaded_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + uploaded_on: '2022-12-02T17:31:21.060Z', + modified_by: null, + modified_on: '2022-12-02T17:31:21.171Z', + charset: null, + filesize: '12381', + width: 275, + height: 183, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: {} + }, + image_two: null, + content_for_project: { + id: 14, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.832Z', + name: 'Nina Manzi- Cape Town WASH Bus Project', + location_country: 'South Africa ', + main_image: '300547cb-0adc-4f72-b4dc-0528f06704fd', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [74, 89, 90, 103, 104, 106, 107, 108, 109] + } + }, + { + id: 107, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T17:02:30.417Z', + text: 'With the success of the pilot program, the WASH bus has revealed a new tool to improve conditions for those on the streets of Cape Town. While homelessness has a myriad of interconnecting issues and potential solutions, this seemingly simple initiative of providing washrooms could prove to change the existing views on how to proactively help people out of homelessness. Rather than the traditional punitive measures taken by the city, this process strives to welcome back those isolated from society with a hot shower as well as the job training offered by U-Turn. In line with past Love Foundation WASH projects, the realities of water inaccessibility and lack of hygienic resources are met with practical, community-oriented solutions. We expect to see the continued success of the WASH bus in helping to pave the path back into society for those experiencing homelessness. Additionally, we hope that that this project’s success can be a factor in reshaping the perception of homelessness and the city government’s policies to combat it to a certain degree, Who knows? Maybe this paradigm shift even travels beyond the cultural and administrative borders of Cape town? It is certainly desirable and necessary.
', + type: 'text_only', + sort: 9, + text_layout: 'full_width', + content_label: 'Outro ', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: null, + image_two: null, + content_for_project: { + id: 14, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.832Z', + name: 'Nina Manzi- Cape Town WASH Bus Project', + location_country: 'South Africa ', + main_image: '300547cb-0adc-4f72-b4dc-0528f06704fd', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [74, 89, 90, 103, 104, 106, 107, 108, 109] + } + }, + { + id: 108, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T17:03:25.555Z', + text: 'Our Main Partner:
\nhttps://vivaconagua.org.za/wash-bus/
\nLocal News Articles:
\nhttps://headtopics.com/za/mobile-showers-for-homeless-people-launched-in-cape-town-29379622
https://www.dailymaverick.co.za/article/2022-08-26-launch-of-mobile-showers-provides-splash-of-dignity-for-homeless-people/?=
https://www.sapeople.com/2022/08/26/mobile-showers-for-homeless-people-mother-of-water-bus-launched/
https://www.citizen.co.za/news/south-africa/3183921/mobile-showers-for-homeless-people-mother-of-water-bus-launched/
https://kby.za.net/2022/08/26/mobiele-storte-vir-hawelose-mense-in-kaapstad-van-stapel-gestuur/
https://www.goodthingsguy.com/people/mobile-showers-for-homeless-people-mother-of-water-bus-launched/
https://www.capetalk.co.za/articles/452941/mobile-wash-bus-to-bring-dignity-to-cape-town-s-homeless-communities
While Viva con Aqua and Love Foundation carried out a WASH project known as WINS (WASH in Schools) in the 2020, the homelessness epidemic facing Cape Town was something that could no longer be ignored. The main objective identified was the re-socialization of people experiencing homelessness who deal with the immense anxiety of street noise, insecure housing, and potential financial debt. From this, the idea of the WASH bus was founded.
', + type: 'image_left', + sort: 5, + text_layout: null, + content_label: 'CAPE TOWN (WINS) ', + distance_to_next: '', + captions: null, + hero_background_color: null, + on_page: null, + image: { + id: '3d538034-465f-437c-8d02-d32da4fa7873', + storage: 'minio', + filename_disk: '3d538034-465f-437c-8d02-d32da4fa7873.jpeg', + filename_download: 'SA Report (WINS).jpeg', + title: 'Sa Report (wins)', + type: 'image/jpeg', + folder: null, + uploaded_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + uploaded_on: '2022-12-02T17:12:29.007Z', + modified_by: null, + modified_on: '2022-12-02T17:12:29.127Z', + charset: null, + filesize: '68486', + width: 479, + height: 320, + duration: null, + embed: null, + description: null, + location: null, + tags: null, + metadata: { + ifd0: { + Make: 'NIKON CORPORATION', + Model: 'NIKON D600' + }, + exif: { + FNumber: 11, + ExposureTime: 0.004, + FocalLength: 40, + ISO: 320 + } + } + }, + image_two: null, + content_for_project: { + id: 14, + status: 'published', + created_by: 'd4d3d420-7bde-4afd-9295-683e6bd414bd', + created_on: '2022-12-02T14:07:52.832Z', + name: 'Nina Manzi- Cape Town WASH Bus Project', + location_country: 'South Africa ', + main_image: '300547cb-0adc-4f72-b4dc-0528f06704fd', + pillar: 'water', + slug: 'nina-manzi-cape-town-wash-bus-project', + hero_background_color: null, + contact_main_partner_organisation: null, + link_main_partner_organisation: null, + location_city: null, + partner_organisations: null, + project_info: null, + short_description: null, + events_that_donated: [], + content: [74, 89, 90, 103, 104, 106, 107, 108, 109] + } + } + ] + } + ] +}; diff --git a/nginx.conf b/nginx.conf new file mode 100644 index 00000000..c3846780 --- /dev/null +++ b/nginx.conf @@ -0,0 +1,9 @@ +server { + listen 80; + server_name _; + location / { + root /srv; + try_files $uri $uri/index.html $uri.html /index.html; + } +} + diff --git a/package-lock.json b/package-lock.json index 0a3dad35..14908d8e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,11 +13,13 @@ }, "devDependencies": { "@beyonk/gdpr-cookie-consent-banner": "^12.1.0", + "@playwright/test": "^1.45.2", "@sveltejs/adapter-node": "^5.2.0", "@sveltejs/adapter-static": "^3.0.2", "@sveltejs/kit": "^2.5.18", "@sveltejs/vite-plugin-svelte": "^3.1.1", "@types/lozad": "^1.16.4", + "@types/node": "^20.14.11", "@typescript-eslint/eslint-plugin": "^7.2.0", "@typescript-eslint/parser": "^7.2.0", "bulma": "^0.9.4", @@ -823,6 +825,21 @@ "node": ">=14" } }, + "node_modules/@playwright/test": { + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.45.2.tgz", + "integrity": "sha512-JxG9eq92ET75EbVi3s+4sYbcG7q72ECeZNbdBlaMkGcNbiDQ4cAi8U2QP5oKkOx+1gpaiL1LDStmzCaEM1Z6fQ==", + "dev": true, + "dependencies": { + "playwright": "1.45.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, "node_modules/@polka/url": { "version": "1.0.0-next.25", "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz", @@ -1210,11 +1227,10 @@ "dev": true }, "node_modules/@types/node": { - "version": "20.11.28", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.28.tgz", - "integrity": "sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA==", + "version": "20.14.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.11.tgz", + "integrity": "sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==", "dev": true, - "optional": true, "dependencies": { "undici-types": "~5.26.4" } @@ -4933,6 +4949,50 @@ "node": ">=0.10.0" } }, + "node_modules/playwright": { + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.45.2.tgz", + "integrity": "sha512-ReywF2t/0teRvNBpfIgh5e4wnrI/8Su8ssdo5XsQKpjxJj+jspm00jSoz9BTg91TT0c9HRjXO7LBNVrgYj9X0g==", + "dev": true, + "dependencies": { + "playwright-core": "1.45.2" + }, + "bin": { + "playwright": "cli.js" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "fsevents": "2.3.2" + } + }, + "node_modules/playwright-core": { + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.45.2.tgz", + "integrity": "sha512-ha175tAWb0dTK0X4orvBIqi3jGEt701SMxMhyujxNrgd8K0Uy5wMSwwcQHtyB4om7INUkfndx02XnQ2p6dvLDw==", + "dev": true, + "bin": { + "playwright-core": "cli.js" + }, + "engines": { + "node": ">=18" + } + }, + "node_modules/playwright/node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, "node_modules/postcss": { "version": "8.4.38", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", @@ -6242,8 +6302,7 @@ "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true, - "optional": true + "dev": true }, "node_modules/universalify": { "version": "2.0.0", @@ -6988,6 +7047,15 @@ "dev": true, "optional": true }, + "@playwright/test": { + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/@playwright/test/-/test-1.45.2.tgz", + "integrity": "sha512-JxG9eq92ET75EbVi3s+4sYbcG7q72ECeZNbdBlaMkGcNbiDQ4cAi8U2QP5oKkOx+1gpaiL1LDStmzCaEM1Z6fQ==", + "dev": true, + "requires": { + "playwright": "1.45.2" + } + }, "@polka/url": { "version": "1.0.0-next.25", "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.25.tgz", @@ -7221,11 +7289,10 @@ "dev": true }, "@types/node": { - "version": "20.11.28", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.11.28.tgz", - "integrity": "sha512-M/GPWVS2wLkSkNHVeLkrF2fD5Lx5UC4PxA0uZcKc6QqbIQUJyW1jVjueJYi1z8n0I5PxYrtpnPnWglE+y9A0KA==", + "version": "20.14.11", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.14.11.tgz", + "integrity": "sha512-kprQpL8MMeszbz6ojB5/tU8PLN4kesnN8Gjzw349rDlNgsSzg90lAVj3llK99Dh7JON+t9AuscPPFW6mPbTnSA==", "dev": true, - "optional": true, "requires": { "undici-types": "~5.26.4" } @@ -9928,6 +9995,31 @@ "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true }, + "playwright": { + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/playwright/-/playwright-1.45.2.tgz", + "integrity": "sha512-ReywF2t/0teRvNBpfIgh5e4wnrI/8Su8ssdo5XsQKpjxJj+jspm00jSoz9BTg91TT0c9HRjXO7LBNVrgYj9X0g==", + "dev": true, + "requires": { + "fsevents": "2.3.2", + "playwright-core": "1.45.2" + }, + "dependencies": { + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "dev": true, + "optional": true + } + } + }, + "playwright-core": { + "version": "1.45.2", + "resolved": "https://registry.npmjs.org/playwright-core/-/playwright-core-1.45.2.tgz", + "integrity": "sha512-ha175tAWb0dTK0X4orvBIqi3jGEt701SMxMhyujxNrgd8K0Uy5wMSwwcQHtyB4om7INUkfndx02XnQ2p6dvLDw==", + "dev": true + }, "postcss": { "version": "8.4.38", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.38.tgz", @@ -10809,8 +10901,7 @@ "version": "5.26.5", "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", - "dev": true, - "optional": true + "dev": true }, "universalify": { "version": "2.0.0", diff --git a/package.json b/package.json index 9d1c1c0e..b79dc2cd 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,7 @@ "version": "2.0.0", "scripts": { "dev": "vite dev", + "dev:test": "cross-env USE_FIXTURES=true vite dev", "build": "vite build -d", "package": "vite package", "preview": "vite preview", @@ -13,10 +14,10 @@ "lint": "prettier --ignore-path .gitignore --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .", "format": "prettier --ignore-path .gitignore --write --plugin-search-dir=. .", "build:staging": "cross-env ADAPTER=node vite build", - "cy:run": "cypress run --headless", - "cy:open": "cypress open", - "test": "run-p --race dev cy:run", - "test-dev": "run-p --race dev cy:open" + "playwright:run": "npx playwright test", + "playwright:open": "npx playwright test --ui", + "test": "run-p --race dev:test playwright:run", + "test-dev": "run-p --race dev:test playwright:open" }, "browserslist": [ "last 2 chrome versions", @@ -29,11 +30,13 @@ }, "devDependencies": { "@beyonk/gdpr-cookie-consent-banner": "^12.1.0", + "@playwright/test": "^1.45.2", "@sveltejs/adapter-node": "^5.2.0", "@sveltejs/adapter-static": "^3.0.2", "@sveltejs/kit": "^2.5.18", "@sveltejs/vite-plugin-svelte": "^3.1.1", "@types/lozad": "^1.16.4", + "@types/node": "^20.14.11", "@typescript-eslint/eslint-plugin": "^7.2.0", "@typescript-eslint/parser": "^7.2.0", "bulma": "^0.9.4", diff --git a/playwright.config.ts b/playwright.config.ts new file mode 100644 index 00000000..164d8705 --- /dev/null +++ b/playwright.config.ts @@ -0,0 +1,81 @@ +import { defineConfig, devices } from '@playwright/test'; + +/** + * Read environment variables from file. + * https://github.com/motdotla/dotenv + */ +// import dotenv from 'dotenv'; +// dotenv.config({ path: path.resolve(__dirname, '.env') }); + +/** + * See https://playwright.dev/docs/test-configuration. + */ +export default defineConfig({ + testDir: './tests', + /* Run tests in files in parallel */ + fullyParallel: true, + /* Fail the build on CI if you accidentally left test.only in the source code. */ + forbidOnly: !!process.env.CI, + /* Retry on CI only */ + retries: process.env.CI ? 3 : 0, + /* Opt out of parallel tests on CI. */ + workers: process.env.CI ? 1 : undefined, + /* Reporter to use. See https://playwright.dev/docs/test-reporters */ + reporter: 'html', + /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ + use: { + /* Base URL to use in actions like `await page.goto('/')`. */ + baseURL: 'http://localhost:5173', + /* Collect trace when retrying the failed test. See https://playwright.dev/docs/trace-viewer */ + trace: 'on-first-retry' + }, + + /* Configure projects for major browsers */ + projects: [ + { + name: 'chromium', + use: { ...devices['Desktop Chrome'] } + } + + // { + // name: 'firefox', + // use: { ...devices['Desktop Firefox'] } + // }, + + // { + // name: 'webkit', + // use: { ...devices['Desktop Safari'] } + // } + + /* Test against mobile viewports. */ + // { + // name: 'Mobile Chrome', + // use: { ...devices['Pixel 5'] }, + // }, + // { + // name: 'Mobile Safari', + // use: { ...devices['iPhone 12'] }, + // }, + + /* Test against branded browsers. */ + // { + // name: 'Microsoft Edge', + // use: { ...devices['Desktop Edge'], channel: 'msedge' }, + // }, + // { + // name: 'Google Chrome', + // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, + // }, + ], + + /* Run your local dev server before starting the tests */ + webServer: { + command: 'npm run dev', + url: 'http://localhost:5173', + reuseExistingServer: !process.env.CI, + env: { + ...process.env, + USE_FIXTURES: 'true' + } + } +}); diff --git a/src/lib/components/UI/PillarBlob.svelte b/src/lib/components/UI/PillarBlob.svelte index fdbae792..e2590f36 100644 --- a/src/lib/components/UI/PillarBlob.svelte +++ b/src/lib/components/UI/PillarBlob.svelte @@ -1,32 +1,30 @@ + + - - - - diff --git a/src/routes/+layout.server.ts b/src/routes/+layout.server.ts index a640ec80..5cb864ca 100644 --- a/src/routes/+layout.server.ts +++ b/src/routes/+layout.server.ts @@ -1,38 +1,44 @@ import { directus, status } from '$lib/_directus'; import { error } from '@sveltejs/kit'; +import type eventData from '../../fixtures/events'; import type { ConvertedIndexEvents } from './events/_types'; export const prerender = process.env.ADAPTER === 'node' ? false : true; export const load = async () => { - const events = await directus() - .items('events') - .readByQuery({ - fields: [ - 'id', - 'name', - 'poster', - 'event_type', - 'hubs.hubs_id.city', - 'startdatetime', - 'enddatetime', - 'location', - 'slug', - 'artists.artists_id.id', - 'artists.artists_id.artist_name', - 'artists.artists_id.image', - 'artists.artists_id.slug', - 'hero_background_color' - ], - filter: { - status: { - _in: status + const events = !process.env.USE_FIXTURES + ? await directus() + .items('events') + .readByQuery({ + fields: [ + 'id', + 'name', + 'poster', + 'event_type', + 'hubs.hubs_id.city', + 'startdatetime', + 'enddatetime', + 'location', + 'slug', + 'artists.artists_id.id', + 'artists.artists_id.artist_name', + 'artists.artists_id.image', + 'artists.artists_id.slug', + 'hero_background_color' + ], + filter: { + status: { + _in: status + } + }, + sort: ['sort', '-startdatetime'], + limit: -1 + }) + : ( + (await import('../../fixtures/events')) as unknown as { + default: typeof eventData; } - }, - sort: ['sort', '-startdatetime'], - limit: -1 - }); - + ).default; const eventsData: ConvertedIndexEvents[] = events.data ?.filter((event) => !!event.slug) diff --git a/src/routes/artists/+layout.server.ts b/src/routes/artists/+layout.server.ts index 699b3dbb..e11f7203 100644 --- a/src/routes/artists/+layout.server.ts +++ b/src/routes/artists/+layout.server.ts @@ -1,35 +1,38 @@ import { directus, status } from '$lib/_directus'; import { error } from '@sveltejs/kit'; +import type artistData from '../../../fixtures/artists'; import type { ConvertedArtist } from './_types'; export const prerender = process.env.ADAPTER === 'node' ? false : true; export const load = async ({ parent }) => { try { - const artists = await directus() - .items('artists') - .readByQuery({ - fields: [ - 'id', - 'artist_name', - 'image', - 'current_location', - 'type_of_art', - 'slug', - 'events.events_id.id', - 'soundcloud_url', - 'facebook_url', - 'level_of_involvement', - 'hero_background_color' - ], - filter: { - status: { - _in: status - } - }, - limit: -1 - }); - + const artists = !process.env.USE_FIXTURES + ? await directus() + .items('artists') + .readByQuery({ + fields: [ + 'id', + 'artist_name', + 'image', + 'current_location', + 'type_of_art', + 'slug', + 'events.events_id.id', + 'soundcloud_url', + 'facebook_url', + 'level_of_involvement', + 'hero_background_color' + ], + filter: { + status: { + _in: status + } + }, + limit: -1 + }) + : ((await import('../../../fixtures/artists')) as unknown as { default: typeof artistData }) + .default; if (!artists.data) { throw new Error('No data returned from Directus'); } diff --git a/src/routes/projects/+layout.server.ts b/src/routes/projects/+layout.server.ts index 6316cc95..82f6c0c4 100644 --- a/src/routes/projects/+layout.server.ts +++ b/src/routes/projects/+layout.server.ts @@ -1,30 +1,38 @@ import { directus, status } from '$lib/_directus'; import { error } from '@sveltejs/kit'; +import type projectData from '../../../fixtures/projects'; import type { ConvertedProjects } from './_types'; export const prerender = process.env.ADAPTER === 'node' ? false : true; export const load = async () => { try { - const projects = await directus() - .items('projects') - .readByQuery({ - fields: [ - 'id', - 'name', - 'main_image.*', - 'pillar', - 'slug', - 'location_country', - 'content.*.*', - 'hero_background_color' - ], - filter: { - status: { - _in: status + const projects = !process.env.USE_FIXTURES + ? await directus() + .items('projects') + .readByQuery({ + fields: [ + 'id', + 'name', + 'main_image.*', + 'pillar', + 'slug', + 'location_country', + 'content.*.*', + 'hero_background_color' + ], + filter: { + status: { + _in: status + } + } + }) + : ( + (await import('../../../fixtures/projects')) as unknown as { + default: typeof projectData; } - } - }); + ).default; + if (!projects.data) { throw new Error('No data returned from Directus'); } diff --git a/svelte.config.js b/svelte.config.js index d9d5c3de..a9e99574 100644 --- a/svelte.config.js +++ b/svelte.config.js @@ -12,13 +12,7 @@ const config = { // adapter-auto only supports some environments, see https://kit.svelte.dev/docs/adapter-auto for a list. // If your environment is not supported or you settled on a specific environment, switch out the adapter. // See https://kit.svelte.dev/docs/adapters for more information about adapters. - adapter: - process.env.ADAPTER === 'node' - ? node() - : adapter({ - trailingSlash: 'always', - precompress: true - }) + adapter: process.env.ADAPTER === 'node' ? node() : adapter() } }; diff --git a/tests/artists.spec.ts b/tests/artists.spec.ts new file mode 100644 index 00000000..09ac71bd --- /dev/null +++ b/tests/artists.spec.ts @@ -0,0 +1,43 @@ +import { expect, test } from '@playwright/test'; + +test.describe('Artist index page behavior', () => { + test.beforeEach(async ({ page }) => { + await page.goto('/artists'); + }); + + test('shuffles the artists on each page load', async ({ page }) => { + const firstArtistName = page.locator('[data-cy=artistName]').first(); + await page.goto('/artists'); + await expect + .poll(async () => page.locator('[data-cy=artistName]').first()) + .not.toBe(firstArtistName); + }); + + test('shuffles the artists when pressing the shuffle button', async ({ page }) => { + const firstArtistName = page.locator('[data-cy=artistName]').first(); + await page.locator('[data-cy=shuffleArtists]').click(); + await expect + .poll(async () => page.locator('[data-cy=artistName]').first()) + .not.toBe(firstArtistName); + }); + + test('filters the artists when searching for a name', async ({ page }) => { + await page.locator('[data-cy=searchArtists]').fill('Zebra Centauri'); + await expect( + page.locator('[data-cy=artistName]', { hasText: /Zebra Centauri/ }).first() + ).toBeVisible(); + }); + + test('unfilters the artists when removing text from the search field for a name', async ({ + page + }) => { + await page.locator('[data-cy=searchArtists]').fill('Zebra Centauri'); + await expect( + page.locator('[data-cy=artistName]', { hasText: /Zebra Centauri/ }).first() + ).toBeVisible(); + await page.locator('[data-cy=searchArtists]').clear(); + await expect + .poll(async () => page.locator('[data-cy=artistName]').first()) + .not.toBe('Zebra Centauri'); + }); +}); diff --git a/tests/nav.spec.ts b/tests/nav.spec.ts new file mode 100644 index 00000000..ae6fe990 --- /dev/null +++ b/tests/nav.spec.ts @@ -0,0 +1,76 @@ +import { expect, test } from '@playwright/test'; + +test.describe('Navigation with the navbar', () => { + test.beforeEach(async ({ page }) => { + await page.goto('/'); + }); + + test('opens the nav menu when clicking the burger', async ({ page }) => { + await page.locator('[data-cy=toggleNav]').click(); + await expect(page.locator('nav')).toBeVisible(); + }); + + test('closes the nav menu when clicking the burger again after it opened', async ({ page }) => { + await page.locator('[data-cy=toggleNav]').click(); + await expect(page.locator('nav')).toBeVisible(); + await page.locator('[data-cy=toggleNav]').click(); + await expect(page.locator('nav')).not.toBeVisible(); + }); + + test('opens the nav and navigates to the about page', async ({ page }) => { + await page.locator('[data-cy=toggleNav]').click(); + await page.locator('nav').getByText(/About/).first().click(); + await expect(page).toHaveURL(/\/about/); + }); + + test('opens the nav and navigates to the events page', async ({ page }) => { + await page.locator('[data-cy=toggleNav]').click(); + await page + .locator('nav') + .getByText(/Events/) + .first() + .click(); + await expect(page).toHaveURL(/\/events/); + await expect(page.getByText(/Events/).first()).toBeVisible(); + }); + + test('opens the nav and navigates to the Artists page', async ({ page }) => { + await page.locator('[data-cy=toggleNav]').click(); + await page + .locator('nav') + .getByText(/Artists/) + .first() + .click(); + await expect(page).toHaveURL(/\/artists/); + await expect(page.getByText(/Artists/).first()).toBeVisible(); + }); + + test('opens the nav and navigates to the Lovecasts page', async ({ page }) => { + await page.locator('[data-cy=toggleNav]').click(); + await page + .locator('nav') + .getByText(/Lovecasts/) + .first() + .click(); + await expect(page).toHaveURL(/\/lovecasts/); + await expect(page.getByText(/Lovecasts/).first()).toBeVisible(); + }); + + test('opens the nav and navigates to the Projects page', async ({ page }) => { + await page.locator('[data-cy=toggleNav]').click(); + await page + .locator('nav') + .getByText(/Projects/) + .first() + .click(); + await expect(page).toHaveURL(/\/projects/); + }); + + test('allows navigating to root when on another page', async ({ page }) => { + await page.goto('/events'); + await page.locator('[data-cy=toggleNav]').click(); + await page.locator('nav').getByText(/Home/).first().click(); + await expect(page).toHaveURL('http://localhost:5173/'); + await expect(page.getByText(/What is Love Foundation\?/).first()).toBeVisible(); + }); +}); diff --git a/tests/projects.spec.ts b/tests/projects.spec.ts new file mode 100644 index 00000000..627ded0e --- /dev/null +++ b/tests/projects.spec.ts @@ -0,0 +1,134 @@ +import { expect, test } from '@playwright/test'; + +test.describe('Projects Page Functionality', () => { + test.beforeEach(async ({ page }) => { + await page.goto('/projects'); + }); + + test('displays the projects page and has an introduction text', async ({ page }) => { + await expect( + page.locator('[data-cy=pageTitle]', { hasText: /Projects/ }).first() + ).toBeVisible(); + await expect( + page + .locator('[data-cy=pageIntro]', { + hasText: /Love Foundation is starting and supporting a variety of projects globally\./ + }) + .first() + ).toBeVisible(); + }); + + test('shows at least one project item', async ({ page }) => { + await expect(page.locator('[data-cy=projectTitle]').first()).toBeVisible(); + await expect( + page.locator('#projectList > :first-child').getByTestId('projectPillar') + ).toBeVisible(); + }); + + test('shows the project filters and there is five options', async ({ page }) => { + await expect(page.locator('[data-cy=projectFilters]')).toBeVisible(); + await expect(page.locator('[data-cy=projectFilter]')).toHaveCount(5); + }); + + test('filters the projects when using one of the filter options', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page.locator('[data-cy=projectFilter]').first().click(); + await expect(page.locator('[data-cy=projectItem]')).not.toHaveCount(9); + }); + + test('changes the filter when clicking another category', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page + .locator('[data-cy=projectFilter]') + .getByText(/Water for all/) + .first() + .click(); + page + .locator('[data-cy=projectFilter]') + .getByText(/Water for all/) + .first(); + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(4); + await expect(page.getByTestId('projectPillar').first()).toHaveClass(/water/); + await page + .locator('[data-cy=projectFilter]') + .getByText(/Community Spirit/) + .first() + .click(); + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(2); + await expect( + page.locator('#projectList > :first-child').getByTestId('projectPillar') + ).toHaveClass(/community/); + }); + + test('removes the filter when clicking the same category again', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page.locator('[data-cy=projectFilter]').first().click(); + await expect(page.locator('[data-cy=projectItem]')).not.toHaveCount(9); + await page.locator('[data-cy=projectFilter]').first().click(); + }); + + test('filters the projects for water projects', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page + .locator('[data-cy=projectFilter]') + .getByText(/Water for all/) + .first() + .click(); + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(4); + await expect( + page.locator('#projectList > :first-child').getByTestId('projectPillar') + ).toHaveClass(/water/); + }); + + test('filters the projects for community projects', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page + .locator('[data-cy=projectFilter]') + .getByText(/Community Spirit/) + .first() + .click(); + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(2); + await expect( + page.locator('#projectList > :first-child').getByTestId('projectPillar') + ).toHaveClass(/community/); + }); + + test('filters the projects for sustainability projects', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page + .locator('[data-cy=projectFilter]') + .getByText(/Shared Sustainability/) + .first() + .click(); + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(1); + await expect( + page.locator('#projectList > :first-child').getByTestId('projectPillar') + ).toHaveClass(/sustainability/); + }); + + test('filters the projects for joy projects', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page + .locator('[data-cy=projectFilter]') + .getByText(/Joyful Purpose/) + .first() + .click(); + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(1); + await expect( + page.locator('#projectList > :first-child').getByTestId('projectPillar') + ).toHaveClass(/joy/); + }); + + test('filters the projects for love projects', async ({ page }) => { + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(9); + await page + .locator('[data-cy=projectFilter]') + .getByText(/Universal Love/) + .first() + .click(); + await expect(page.locator('[data-cy=projectItem]')).toHaveCount(1); + await expect( + page.locator('#projectList > :first-child').getByTestId('projectPillar') + ).toHaveClass(/love/); + }); +});