Event List
Filtering retrieved events
Query parameters can be used to filter the retrieved events by the following criteria.
Ongoing local events
Use to quickly access local (municipality level) events that are upcoming or have not ended yet.
Combines the search on a number of description, name, and keyword fields. Locality is defined on
the basis of MUNIGEO_MUNI value, which is set in the settings file. In the Helsinki case all the
events would be retrieved that happen within Helsinki. Comes in two flavors: AND and OR.
Use local_ongoing_AND=lapset,musiikki to search for the events with both search
terms in the description fields and local_ongoing_OR to search for the events with at
least one term mentioned. In case you need to realize a more complicated logic and search for a
combination of search terms as in (singing OR vocal) AND (workshop OR training) use
local_ongoing_OR_setX parameter, where X is a number.
Examples:
event/?local_ongoing_OR=lapsi,musiikki
event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi
Ongoing internet events
Use to quickly access internet-based events that are upcoming or have not ended yet. Usage is the
same as for local ongoing events, three variations: internet_ongoing_AND,
internet_ongoing_OR, and internet_ongoing_OR_setX, Note, that
local_ongoing and internet_ongoing are mutually exclusive.
Example:
event/?internet_ongoing_AND=lapsi,musiikki
All ongoing events
All ongoing events, both internet and local combined. Usage is the same as for local ongoing
events: all_ongoing_AND, all_ongoing_OR and all_ongoing_OR_setX
Example:
event/?all_ongoing_AND=lapsi,musiikki
Internet based
Filter for all the events that happen in the internet, both past and upcoming.
Example:
event/?internet_based=true
Event time
Use start and end to restrict the date range of returned events.
Any events that intersect with the given date range will be returned.
The parameters start and end can be given in the following formats:
- ISO 8601 (including the time of day), i.e. YYYY-MM-DDTHH:MM:SSZ
- yyyy-mm-dd
In addition, today (for start or end of today) and now
(for the exact current timestamp) can be used in either parameter to get current events.
Example:
event/?start=today&end=2020-12-31
event/?start=now&end=today
You can also use days filter to restrict the date range of returned events.
Any events that intersect with the current time and amount of days from current time will
be returned.
The parameters start and end cannot be used together with the
days parameter.
Example:
event/?days=7
Event start/end time
Use starts_after, starts_before, ends_after, and
ends_before to filter for the events that start and end within certain hours,
for example for the ones that start after 17:00 and end before 21:00.
The parameters can be given as:
- Hours only
- Hours and minutes separated by a colon
Example:
event/?starts_after=16:30&ends_before=21
Event weekday
Use weekday to filter for the events that occurs within
certain weekdays. Weekdays are to be input as Iso 8601 weekday numbers, where 1 is Monday
and 7 is Sunday.
The parameter can include:
- One weekday
- Multiple weekdays separated by a comma
Example (Saturdays and Sundays):
event/?weekday=6,7
Event duration
Use max_duration to filter for the events that last up to a specified time, or
min_duration to filter for the events that last at least a specified amount of time.
The parameters are expressed in format:
- 86400 or 86400s (24 hours)
- 180m or 3h (3 hours)
- 3d (3 days)
Example:
event/?max_duration=3d
Event location
Bounding box
To restrict the retrieved events to a geographical region, use the query parameter bbox
in the format
bbox=west,south,east,north
Where west is the longitude of the rectangle's western boundary, south
is the latitude of the rectangle's southern boundary, and so on. The default coordinate system
is the trusty old EPSG:4326 known from all online maps, and can be overridden with srid
parameter.
Example:
event/?bbox=24.9348,60.1762,24.9681,60.1889
Specific location
To restrict the retrieved events to a known location(s), use the query parameter
location, separating values by commas if you wish to query for several locations.
Location ids are found at the place endpoint, which lists the locations in decreasing
number of events found. Most locations originate from the Helsinki service point registry (tprek),
hence the format tprek:28473. An easy way to locate service points is to browse
servicemap.hel.fi, which uses the same location ids, e.g.
servicemap.hel.fi/unit/28473.
Example:
event/?location=tprek:28473
District
To restrict the retrieved events to city district(s), use the query parameter division,
separating values by commas if you wish to query for several divisions.
City of Helsinki neighborhoods (kaupunginosa), districts (peruspiiri) and subdistricts (osa-alue) are supported. Check the divisions on the Helsinki map service.
You may query either by specific OCD division type peruspiiri:malmi, or by division
name malmi. The latter query checks all divisions with the name, regardless of
division type.
Example:
event/?division=malmi
Within a distance (or "circle filter")
To restrict the retrieved events to a certain distance from a point, use the query parameters
dwithin_origin and dwithin_metres in the format
dwithin_origin=lon,lat&dwithin_metres=distance
Where lon is the longitude of the origin point, lat is the latitude
of the origin point, and distance is the radius in metres.
Both parameters are required. The default coordinate system is EPSG:4326 and can be overridden
with the srid parameter.
Example:
event/?dwithin_origin=24.9348,60.1762&dwithin_metres=1000
Event category
To restrict the retrieved events by category, use the query parameter keyword,
separating values by commas if you wish to query for any of several keywords, or the parameter
keyword_AND, if you require all provided values (separated by commas) to be present.
Use parameter keyword! if you require all provided values (separated by commas)
not to be present.
In case you need to realize a more complicated logic and search for a combination of keywords as in
(yso:p1235 OR yso:p1947) AND (yso:p14004 OR yso:p11185) use keyword_OR_setX
parameter, where X is a number.
Keyword ids are found at the keyword endpoint, which lists the keywords in decreasing
number of events found. The common keywords used in all events originate from the general Finnish
ontology (YSO), hence the format yso:p4354.
The most common event categories are listed in the two keyword sets helsinki:topics and helsinki:audiences, which list the YSO keywords that are present in most events to specify event main topic and audience.
Example:
event/?keyword=yso:p4354
event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185
Keyword set search
Some services maintain curated keyword sets, which can also be used in search with query
parameters keyword_set_AND and keyword_set_OR. As names of the keyword
sets can repeat between the services, ids should be supplied. Say, we have one keyword set
Music with id "myservice:1" that contains keywords rock and jazz, and another keyword set
Workshops with keywords "workshop" and "seminar" and id "myservice:2". Then a request
/event/?keyword_set_AND=myservice:1,myservice:2 would return the events matching
the following expression: (rock OR jazz) AND (workshop OR seminar).
Event last modification time
To find events that have changed since you last polled Linkedevents API (to e.g. update your
event cache), it is best to use the query parameter last_modified_since.
This allows you to only return data that has changed after your last update. You may also
include events that have been deleted in the API in the results by using the
show_deleted filter. This allows you to update your cache with all added, modified
and deleted events without having to fetch *all* future events every time.
Example:
event/?last_modified_since=2020-04-07&show_deleted=true
Specific ids
To find events that have specific id use parameter ids, separating values by commas
if you wish to query for several event ids.
Example:
event/?ids=helsinki:1
Event status
Events in Linkedevents (indicated by the event_status field) may be either
scheduled as planned (EventScheduled), rescheduled if their start time has
changed after they were first published (EventRescheduled), cancelled if they
were cancelled altogether after publication (EventCancelled), or postponed to the
indefinite future if they could not be organized at the original time (EventPostponed).
These statuses stem from schema.org.
You may filter events with only the desired status with the event_status filter.
Example:
event/?event_status=EventCancelled
It is also possible to use multiple event_status parameters in a single query.
Statuses must be separated by a comma.
Example:
event/?event_status=EventCancelled,EventPostponed
Event type
Events in Linkedevents (indicated by the type_id field) may be event (General),
course (Course) or volunteering (Volunteering). By default, only events
with General type_id are returned.
You may filter events with only the desired type with the event_type filter, separating
values by commas if you wish to query for several types.
Example:
event/?event_type=General,Course
Event text
To find out events that contain a specific string in any of the text fields, use the query
parameter text.
Example:
event/?text=shostakovich
Combined text
While the text search is looking for the events containg exact matches of the search
string, combined_text filtering finds events with exact text match for event text
fields but retrieves expected keywords on the basis of similarity. Filtering for keywords works
similar ways as keyword free_text filtering.
Example:
event/?combined_text=lapppset
Full-text search
Use full_text to perform advanced PostgreSQL full-text search with weighted relevance ranking.
This search method provides more sophisticated results than basic text matching by:
- Searching across multiple fields with different priority levels
- Supporting stemming and language-specific text processing
- Ranking results by relevance when no other sorting is specified
The search covers the following fields with weighted priorities:
- Highest priority (A): Event names, location names
- High priority (B): Keywords, audience keywords
- Medium priority (C): Short descriptions
- Lowest priority (D): Full descriptions
Use full_text_language to specify the search language. Accepts single language
(e.g., 'fi') or comma-separated multiple languages (e.g., 'fi,en,sv'). Supported languages:
fi, en, sv, zh_hans, ru, ar. Defaults to 'fi' if not specified.
Examples:
event/?full_text=musiikki
event/?full_text=music&full_text_language=en
event/?full_text=lapset&full_text_language=fi,en,sv
Event price
Events may or may not contain the offers field that lists event pricing.
To return only free or non-free events, use the query parameteris_free. However,
note that from some data sources, no event pricing info is available, so this filter will only
return those events which have pricing data available.
Example:
event/?is_free=true
Event language
To find events that have a set language or event data translated into that language, use the
query parameter language. If you only wish to see events that have a set language,
use the in_language parameter, and if you only want event data translated to a set
language, use the translation parameter.
Supported languages are found at the language endpoint, which also lists which
languages have translations available. Currently, translations are supported in fi,
sv, en, ru, zh_hans, and ar.
Example:
event/?language=ru
Event audience age boundaries.
To find events that are designed for specific age audiences use the query paramteres
audience_min_age_lt, audience_min_age_gt, audience_max_age_lt,
audience_max_age_gt.
audience_min_age_lt returns the events whose minimal age is lower than or equals the
specified value, audience_min_age_gt returns the events whose minimal age is greater
than or equals the specified value. max_age parameteres, naturally, work the same way
only for the maximum age of the event audience. Note, that the events that are not designed for
the specific audiences will be omitted.
audience_max_age and audience_min_age parameters without lt
and gt modifiers are left for backward compatibility only and should not be employed.
Example:
event/?audience_min_age_gt=10
Select events suitable for certain age.
To find events that are suitable for certain age use the query paramter suitable_for
that returns all the events that are suitable for the age or age range specified. Under the hood
it excludes all the events that have max age limit below or min age limit above the age specified.
Suitable events with just one age boundary specified are returned, events with no age limits
specified are excluded. Query parameter can take either one or two arguments, the order of
parameters when specifying the age range is not important.
Examples:
event/?suitable_for=12
event/?suitable_for=12,14
Event publisher
To find out events that are published by a specific organization, use the query parameter
publisher, separating values by commas if you wish to query for several publishers.
Existing publisher organizations are found at the organization endpoint. City of
Helsinki internal publishers have ids of the form ahjo:origin_id as they originate
from the Helsinki Ahjo decisionmaking system, and have a rather complex hierarchy. External
publishers may have their own namespaces, ids and hierarchies.
Also, it is possible to fetch events under a specific publisher organization hierarchy (say
City of Helsinki)
by using the parameter publisher_ancestor, which returns all events published
by any suborganizations (at any level) of the given organization.
Example:
event/?publisher=ytj:0586977-6
event/?publisher_ancestor=ahjo:00001
Event data source
To find out events that originate from a specific source system, use the query parameter
data_source. All event ids are of the form data_source:origin_id,
so this allows you to return only events coming to Linkedevents from a specific data system.
helsinki is the name of our own data source, i.e. events where Linkedevents API
itself is the master data.
Example:
event/?data_source=helsinki
Event hierarchy
Events in linkedevents may be either standalone events, or they may have super or sub events.
There are two types of super events, indicated in the field super_event_type
by recurring (repeating events, event series) and umbrella
(festivals etc.).
recurring events last for a period and have sub_events that all have
similar data, but different dates.
umbrella events last for a period and may have different sub_events,
including recurring events (i.e. an umbrella festival may have a
recurring theater play sub_event, which may have several nights
as sub_events.)
Super event type
You may use the query parameter super_event_type, comma separated, to get only
super events of specific types. You may use none if you want non-super events
included.
Example:
event/?super_event_type=umbrella,none
Super event
You may use the query parameter super_event, comma separated, to get all subevents
for specific superevents. You may use none if you want all events which have no
superevent included.
Example:
event/?super_event=linkedevents:agg-103
Hide super event
You may use the query parameter hide_super_event to exclude super events from the response.
Example:
event/?hide_super_event=true
Hide recurring children
You may use the query parameter hide_recurring_children to hide all child events
for super events which are of type recurring.
Example:
event/?hide_recurring_children=true
Sub events
You may use the query parameter hide_recurring_children_sub_events in pair with hide_recurring_children to apply other filters to child events.
If you want to get only super_events of weekend events then pair hide_recurring_children and hide_recurring_children_sub_events with
weekday=6,7
Example:
event/?hide_recurring_children=true&hide_recurring_children_sub_events=true&weekday=6,7
Event with registration
To find out events with or without a registration, use the query parameterregistration.
Example:
event/?registration=true
Open enrolment
Two endpoints show the events that have connected registrations and have places either at the event
itself enrolment_open or in the waiting lists enrolment_open_waitlist.
Note that the latter query parameter when set to true returns also the events that
have open spots at the event itself. Null values are regarded as unlimited number of spots at
the event or in the waiting list.
For example:
event/?enrolment_open_waitlist=true
Enrolment open on a given date
It is possible to check if a given datetime is within events' enrolment start and end times. In other words, if any events are open on a given date and time. The given datetime is expected to be in the events' timezone.
enrolment_open_on parameter displays events where the given datetime is within the
enrolment_start_time and enrolment_end_time of the events. If an event
has a registration, the registration's enrolment start and end times will be preferred over the event's times.
For example:
event/?enrolment_open_on=2024-02-19T12:00:00
Attendee capacity
Filters for filtering by event maximum_attendee_capacity and minimum_attendee_capacity:
Filtering for maximum_attendee_capacity
It is possible to filter by maximum_attendee_capacity using gte (>) or lte (<) filters.
maximum_attendee_capacity_gte parameter displays events with maximum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_gte=10
maximum_attendee_capacity_lte parameter displays events with maximum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?maximum_attendee_capacity_lte=10
Filtering for minimum_attendee_capacity
It is possible to filter by minimum_attendee_capacity using gte (>) or lte (<) filters.
minimum_attendee_capacity_gte parameter displays events with minimum attendee capacity greater than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_gte=10
minimum_attendee_capacity_lte parameter displays events with minimum attendee capacity less than
or equal the applied parameter (integer value)
Example:
event/?minimum_attendee_capacity_lte=10
Remaining registration attendee or waiting list capacity
Filters for filtering by registration remaining_attendee_capacity and remaining_waiting_list_capacity:
Filtering for registration remaining_attendee_capacity
It is possible to filter by registration remaining_attendee_capacity using gte (>=) or isnull filters.
registration__remaining_attendee_capacity__gte parameter displays events where registration's
remaining attendee capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_attendee_capacity__gte=10
registration__remaining_attendee_capacity__isnull parameter displays events where registration's
remaining attendee capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_attendee_capacity__isnull=true
Filtering for registration remaining_waiting_list_capacity
It is possible to filter by registration remaining_waiting_list_capacity using gte (>=) or isnull filters.
registration__remaining_waiting_list_capacity__gte parameter displays events where registration's
remaining waiting list capacity is greater than or equal the applied parameter (integer value)
Example:
event/?registration__remaining_waiting_list_capacity__gte=10
registration__remaining_waiting_list_capacity__isnull parameter displays events where registration's
remaining waiting list capacity is or is not NULL
The values True, true and 1 are all considered to be "true".
The values False, false and 0 are all considered to be "false".
Example:
event/?registration__remaining_waiting_list_capacity__isnull=true
Filtering for authenticated users
By default, only public events are shown in the event list. However, certain query parameters allow customizing the listing for authenticated users
Show all events
show_all parameter displays all events authenticated user can edit, including drafts,
and public non-editable events
Example:
event/?show_all=true
Publication status
Events in Linkedevents (indicated by the publication_status field) may be either
(draft) if the event is not published yet or (public) for published
events.
You may filter events with only the desired publication status with the
publication_status filter.
Example:
event/?publication_status=draft
Only editable events
admin_user parameter displays all events authenticated user can edit, including drafts,
but no other public events
Example:
event/?admin_user=true
Only editable events for registration
registration_admin_user parameter displays all events whose registration the user can modify
Example:
event/?registration_admin_user=true
Events created by the user
created_by parameter only displays events by the authenticated user
Example:
event/?created_by=true
Getting detailed data
In the default case, keywords, locations, and other fields that refer to separate resources are only displayed as simple references.
If you want to include the complete data from related resources in the current response, use
the keyword include. Please note, however, that including all the resources
inlined in *every* event will result in a huge number of duplicate data in the json, making
the json very slow to generate and process and causing considerable API load and long response
times when too many such requests are made. Therefore, if you are listing the maximum number
of events (100) or updating your cache with all events, please consider caching the keyword
and location data separately to prevent unnecessary API slowdown and continuous repeated work.
Keyword and location data seldom change and are easily fetched from their own endpoints
separately.
Example:
event/?include=location,keywords
Ordering
Default normal search ordering is descending order by -last_modified_time.
Default full text search ordering is based on search relevance rank and id (-rank,id).
You may also order results by start_time, end_time, name,
duration, enrolment_start_time, enrolment_end_time,
registration__enrolment_start_time, registration__enrolment_end_time,
enrolment_start and enrolment_end. Descending order is denoted by
adding - in front of the parameter, default order is ascending.
For example:
event/?sort=-end_time
Enrolment start and enrolment end
The ordering filters enrolment_start and enrolment_end have two
notable differences compared to the rest of the ordering filters related to enrolment start
and enrolment end times:
First, if an event has a registration with an enrolment time defined, the registration's time will be preferred over the event's time.
Second, if neither the event's registration nor the event has enrolment times defined
(enrolment_start_time and enrolment_end_time are both NULL), the
event will be placed at the end of the results list regardless of whether ascending or
descending order was used.
GET /v1/event/?format=api&page=734
{ "meta": { "count": 32776, "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=735", "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&page=733" }, "data": [ { "id": "kulke:64091", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-sampo-festivaali-stoa-18735992/", "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-sampo-festivaali-stoa-18735992/" }, "description": null, "price": { "fi": "32,50 € / 21,50 €", "en": "32,50 € / 21,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151491, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-18T13:13:31.583820Z", "last_modified_time": "2024-06-18T13:13:31.583839Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753195.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151491/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-18T13:13:31.546034Z", "last_modified_time": "2024-08-29T05:13:19.828710Z", "date_published": null, "start_time": "2024-08-29T16:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.", "en": "Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/FA75BDB58AF5D38C530E41339494E7EC/Les_ombres_port_es_NATCHAV_FRA_", "en": "http://www.stoa.fi/en/events/event/FA75BDB58AF5D38C530E41339494E7EC/Les_ombres_port_es_NATCHAV_FRA_" }, "description": { "fi": "<p>Varjoteatteria ja elävää musiikkia yhdistävä NATCHAV on tarina sirkuksesta, joka saadakseen olla vapaa asettuu vastustamaan kaikkia sääntöjä, mukaan lukien painovoiman lakia.</p><p>Sirkus on saapunut kaupunkiin! Karavaani ottaa paikkansa keskusaukiolla ja lekavasaran iskut jylisevät, kun maahan lyödään tolppia valtavien, tuulessa pyörivien telttakankaiden kesyttämiseksi. Kaupunginjohtajat vastustavat vierailua, joten sirkus määrätään siirtymään kaupungin laitamille, akrobaatti pidätetään, ja hänen myötään koko maailma tuntuu olevan vangittuna.</p><p>Sirkusryhmä päättää toteuttaa mahtavan pakomatkan, joka on täynnä kekseliäitä käänteitä. Natchav (juosta pois, juosta karkuun romanikielellä) sekoittaa fantasiaa ja todellisuutta ja antaa maistiaisen vapauden tunteesta.</p><p>Varjon ja valon leikin kautta esitys kertoo yhteiskunnan marginaaliin sijoittuvan tarinan, jossa kaksi pohjimmiltaan vastakkaista maailmaa – sirkus ja vankila – sekoittuvat. Sanaton esitys yhdistää elävää musiikkia ja tarinan edetessä rakentuvaa visuaalisuutta ja luo näin uudenlaisen, provokatiivisen sommitelman todellisuuden ja fantasian välimaastoon.</p><p>Kesto: 60 min<br>Ikäsuositus: 8+<br>Kieli: sanaton</p><p><b>NATCHAV esitetään to 29.8. klo 10 päiväkoti- ja kouluryhmille</b><br>Arkiaamujen näytöksiin päiväkotiryhmille ja koululuokille vapaa pääsy, pakolliset ilmoittautumiset: www.kultus.fi 19.8. klo 10 alkaen. Lisätiedot: hanna.westerholm@hel.fi</p><p>Esitys on osa SAMPO Festivaalin ohjelmistoa. Nukketeatteri Sampon kahdeksatta kertaa järjestämä festivaali esittelee kansainvälistä nukketeatteria eri paikoissa Helsingissä 28.8.–1.9.2024.</p><p>Festivaaliviikon aikana Stoan aulassa on esillä Les ombres porteés -ryhmän esityksen Natchav suunnitteluun ja toteutukseen liittyvä näyttely.</p><p>Idea ja suunnittelu: Les ombres portées, ryhmän nettisivut: www.lesombresportees.fr<br>Nuket ja valot: Erol Gülgönen, Marion Lefebvre, Christophe Pagnon, Claire Van Zande<br>Musiikki ja äänitehosteet: Séline Gülgönen (klarinetti), Simon Plane (trumpetti, tuuba, haitari, perkussiot)<br>Valot: Nicolas Dalban-Moreynas<br>Äänet: Yaniz Mango<br>Puvut: Zoé Caugant<br>Kiertuemanageri: Claire Van Zande</p><p>Margot Chamberlin avusti nukkien rakentamisessa ja esiintyi kanssamme vuoteen 2023 saakka. Apua antoivat myös Léo Maurel (ääniefektilaitteisto), Baptiste Bouquin (ulkopuolinen korva), Jean-Yves Pénafiel (ulkopuolinen korva).</p><p>Kiitokset myös seuraaville: Francine Benotman, Jacques Bouault, Stéphane Revelant, Elsa Vanzande</p><p>Esitys on omistettu ryhmämme arvostetulle jäsenelle Olivier Cuetolle, joka menehtyi maaliskuussa 2020. Hän oli mukana ideoimassa ja luomassa tätä esitystä ja esiintyi siinä aivan loppuun saakka.</p>", "en": "<p>Combining shadow theater and live music, Natchav is the story of a circus that defies all rules, including the law of gravity, in order to be free.</p><p>In the darkness of the early morning, the Natchav circus arrives to town. Its caravan of trailers and lorries take their place in the central square. The sledge gang begins its concert of steady blows, pounding the first stakes into the ground; the sound of the immense canvas whips through the air as the tent poles are hoisted to the sky.</p><p>Suddenly, out of concern for security, the authorities order the circus to leave, forcing them onto a vacant lot in the outskirts of town. Following a scuffle, one of the acrobats is arrested and jailed for contempt and rebellion. So, the circus troupe, along with the other prisoners, decide to carry out a spectacular escape, one full of ingenuity and twists and turns...</p><p>Through an extraordinary play of shadow and light, Natchav (go away, run away in Romani) recounts a story in which, on the margins of society, two fundamentally opposed worlds mingle — that of the circus and of the prison.</p><p>It is a story of intrigue that unfolds through a dynamic scenography. With no spoken dialogue, the visuals and music generated and performed live guide the narration, creating an original and provocative composition between reality and fantasy.</p><p>Duration: 60 min<br>Age recommendation: 8+<br>Language: nonverbal</p><p>Tickets: 29 € / 19 € <br>Tickets from Nukketeatteri Sampo.<br>Reservations and inquires: nukketeatterisampo.fi/esityskalenteri, phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>Idea and design: Les ombres portées<br>Puppets and lights: Erol Gülgönen, Marion Lefebvre, Christophe Pagnon, Claire Van Zande<br>Music and sound effects: Séline Gülgönen (clarinet), Simon Plane (trumpet, tuba, accordion, percussion)<br>Lighting: Nicolas Dalban-Moreynas<br>Sound: Yaniz Mango<br>Costumes: Zoé Caugant<br>Touring: Claire Van Zande</p><p>Margot Chamberlin helped build the puppets and performed with us until 2023.<br>With help from: Léo Maurel (sound effect machines), Baptiste Bouquin (outside ear), Jean-Yves Pénafiel (outside eye)</p><p>Also thanks to: Francine Benotman, Jacques Bouault, Stéphane Revelant, Elsa Vanzande</p><p>We dedicate this show to Olivier Cueto, a cherished member of the company who passed away in March 2020. He imagined, created and performed this show with us until the very end.</p>" }, "name": { "fi": "Les ombres portées: NATCHAV (FRA) – SAMPO Festivaali", "en": "Les ombres portées: NATCHAV (FRA) – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64091/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63600", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7260/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:350/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:45/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-vuotalo/dantchev-domain-5-vuotta-3573113/" }, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151333, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-03T11:13:00.492849Z", "last_modified_time": "2024-06-03T11:13:00.492867Z", "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_750142.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151333/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-03T11:13:00.453081Z", "last_modified_time": "2024-08-29T05:13:19.772029Z", "date_published": null, "start_time": "2024-08-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Brages spelmanslag ja Brages folkdanslagetin kansantanssijat palaavat kolmannen kerran Vuotorille Elokuun iltasoitto -tapahtumaan.", "sv": "Brages spelmanslag och folkdansarna från Brages folkdanslag återvänder för tredje gången till Nortorget och Nordhusets Kvällsspel i augusti.", "en": "Bragen spelmanslag and the folk dancers Brage folkdanslag returns to Vuotori for the third time for some Evening music in August!" }, "info_url": { "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/021183DABF34435A22447BC0BE426BF2/Brages_spelmanslag_ja_Brages_folkdansare", "sv": "http://www.vuotalo.fi/sv/evenemang/event/021183DABF34435A22447BC0BE426BF2/Brages_Spelmanslag_och_folkdansare", "en": "http://www.vuotalo.fi/en/events/event/021183DABF34435A22447BC0BE426BF2/Brages_Spelmanslag_Brages_folkdansare" }, "description": { "fi": "<p>Brages spelmanslag ja Brages folkdanslagetin kansantanssijat palaavat kolmannen kerran Vuotorille Elokuun iltasoitto -tapahtumaan.</p><p>Bragen pitkäaikainen viulunsoittajatiimi on aktivoitunut jälleen muutaman vuoden tauon jälkeen. Brage spelmanslagin taiteellinen johtaja on Lotta Ahlbeck.</p><p>Brages folkdanslag koostuu eri-ikäisistä tanssijoista. Tanssiryhmälle ominaista on menuettien, polskojen, hambojen ja laululeikkien monipuolinen käyttö.</p><p>Kansantanssimestari Eivor Wallinvirta on kehittänyt ohjelmistoa yksinkertaisista peräkkäisistä tanssisarjoista kokonaisiin ohjelmiin, joissa laulu, tanssi ja musiikki kuvaavat yhtä paljon elämän tapahtumia, kuten juhlia ja juhlia, kuten ennenkin.</p><p>Helsingin Brage-yhdistys perustettiin vuonna 1906 säilyttämään ja vaalimaan suomalais-ruotsalaista kansankulttuuria laulun ja tanssin, myöhemmin myös pukujen avulla. Brage on dynaaminen yhdistys, joka noudattaa alkuperäisiä tavoitteitaan: yhdistää akateemista ja käytännönläheistä ja edistää aktiivisesti suomalais-ruotsalaisen kansankulttuurin harjoittamista.</p>", "sv": "<p>Brages spelmanslag och folkdansarna från Brages folkdanslag återvänder för tredje gången till Nortorget och Nordhusets Kvällsspel i augusti.</p><p>Brages spelmanslag som har anor långt tillbaka i tiden har blivit aktivt igen efter att verksamheten legat nere några år. Den grekiska folkkulturföreningen Artemis på ön Leros i Grekland inbjöd spelmanslaget på besök i oktober 2019. Inför besöket på Leros samlades spelmännen som en projektgrupp bestående av skickliga amatör- och professionella musiker. Efter besöket fortsatte gruppen som Brages spelmanslag och övar tillsammans inför olika evenemang där gruppen uppträder. Spelmanslagets huvudsakliga motto är att uppföra finlandssvensk folkmusik. Brage spelmanslags konstnärliga ledare är Lotta Ahlbeck.</p><p>Brages folkdanslag består av dansare i olika åldrar. I Brage kan man börja redan som 4-åring i lekkursen och sedan dansa tills benen inte mera bär. Folkdanslagets medlemmar träffas varje vecka för att finslipa sina dansfärdigheter och umgås med dansvänner. Utmärkande för danslaget är ett mångsidigt bruk av menuetter, polskor, hambo och sånglekar i sina programhelheter.</p><p>Folkdansmästare Eivor Wallinvirta har utvecklat repertoaren från enkla uppställningar av danser efter varandra till programhelheter, där sång, dans och musik jämbördigt beskriver händelser i livet, däribland fester och högtider, så som det var tidigare.</p><p>Danslaget strävar efter att utveckla underhållande uppvisningar, som samtidigt på ett genuint sätt beskriver en tid som varit. Dansarna glömmer ändå inte att dansen är en hobby och en källa till många glada stunder. Vi lever idag det som blir våra barnbarns gårdag och kulturarv.</p><p>Föreningen Brage i Helsingfors grundades 1906 för att bevara och vårda den finlandssvenska folkkulturen, genom sång och dans, senare även dräkter. Brage är en dynamisk förening som lever upp till sina ursprungliga målsättningar: att förena det akademiska och det praktiska samt att aktivt stimulera utövandet av finlandssvensk folkkultur.</p><p>Längd: ca. 60 min.</p>", "en": "<p>Bragen spelmanslag and the folk dancers Brage folkdanslag returns to Vuotori for the third time for some Evening music in August!</p><p>Brage’s veteran violin ensemble has started performing again after a few years of absence. Brage spelmanslag’s artistic director is Lotta Ahlbeck.</p><p>Brages folkdanslag consists of dancers of varying ages. The dance group typically performs a wide range of minuets, polskas, hambos and singing games.</p><p>Master folk dancer Eivor Wallinvirta has developed repertoires from simple consecutive dance routines into full programmes in which the song, dance and music depict life events, such as celebrations.</p><p>Duration apx 60 min.</p>" }, "name": { "fi": "Brages spelmanslag ja Brages folkdansare – Elokuun iltasoitto", "sv": "Brages Spelmanslag och folkdansare – Kvällsspel i augusti", "en": "Brages Spelmanslag & Brages folkdansare – Evening music in August" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63600/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63586", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=ornan" }, "description": null, "price": { "fi": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151476, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T12:13:22.740734Z", "last_modified_time": "2024-06-17T12:13:22.740751Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751696.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151476/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-06-17T12:13:22.687030Z", "last_modified_time": "2024-08-29T05:13:19.715540Z", "date_published": null, "start_time": "2024-08-29T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”", "en": "On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”" }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/31D87DD62FF57FD6265FE756EEF19E53/Ornan_Braier_Raatalin_taikaseikkailu", "en": "http://www.annantalo.fi/en/events/event/31D87DD62FF57FD6265FE756EEF19E53/Ornan_Braier_Tailor_made" }, "description": { "fi": "<p>Aivan tavallisena aamuna pieni räätäli saa viestin. Siinä lukee: ”Tehtävänäsi on ommella takki puoleen yöhön mennessä. Koolla ei ole väliä, mutta sen on sovittava täydellisesti…”</p><p>Täsmälleen keskiyöllä räätäli saa tehtävänsä päätökseen, mutta… Minne ompelukone juoksee? Miksi saksilla on hame? Mikä sormustimesta on tullut? Tule mukaan räätälin taianomaiseen seikkailuun! Räätälin taideseikkailu on näytelmä, jossa on vain vähän sanoja ja jossa yhdistyvät nukketeatteri, esineteatteri, tekstiilit ja musiikki.</p><p>Kesto: 40 min<br>Ikäsuositus: 4+<br>Kieli: englanti (käännetään suomeksi)<br>Liput: 15 €<br>Lipunmyynti: Nukketeatteri Sampo<br>Varaukset ja tiedustelut: nukketeatterisampo.fi/esityskalenteri | p. 020 735 2235 | toimisto@nukketeatterisampo.fi.</p><p>Adaptaatio, suunnittelu, musiikki ja manipulointi: Ornan Braier<br>Taiteellinen valvonta: Marit Benisrael<br>Vaate- ja tekstiilisuunnittelu: Vali Mintzi<br>Nukenrakennus: Sharon Silver-Merrett<br>Valosuunnittelu: Shahar Maron<br>Mekaaniset rakennelmat: Shaul Mograbi-Berger, Ornan Braier<br>Kuvat: Dor Kedmi</p><p><b>Ornan Braier</b> on nukeillanäyttelijä, näyttelijä ja muusikko. Hän yhdistää esityksissään laajan valikoiman esittäviä taiteita ja on siten tullut tunnetuksi ainutlaatuisena ja omaperäisenä taiteilijana Israelissa ja ympäri maailmaa. Hänen näyttämökielensä perustuu voimakkaisiin visuaalisiin kuviin yhdistettynä omaleimaiseen musiikkiin, joten esitykset läpäisevät katsojan kaikki aistit. Hänen työnsä ovat voittaneet kansallisia ja kansainvälisiä palkintoja. Yhdessä Train Theatren kanssa tehty Tailor Made on kiertänyt ympäri maailmaa, ja se on voittanut lukuisia kansainvälisiä palkintoja. Ornanin toinen esitys, Little Love Machine eli Pieni Lempilaite (2019) nähtiin vuoden 2023 SAMPO Festivaalilla.</p>", "en": "<p>On a morning just like any other, a little tailor gets a note. It reads: “Your mission is to sew a coat by midnight. The size does not matter, but it must fit perfectly…”</p><p>At precisely midnight the tailor completes his mission, but then… Where is the sewing machine running off to? Why are the scissors wearing a skirt? What has the thimble turned into?</p><p>Come join in the magical adventure of the tailor!</p><p>A play with a few words combining puppetry, object theater, textiles and<br>music.</p><p>Age recommendation: 4+<br>Duration: 40 min<br>Language: English (translated in Finnish)<br>Tickets: 15 €, from Nukketeatteri Sampo: nukketeatterisampo.fi/esityskalenteri<br>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>Adaptation, design, music and manipulation: Ornan Braier<br>Artistic supervision: Marit Benisrael<br>Costume and fabric design: Vali Mintzi<br>Puppet design: Sharon Silver-Merrett<br>Lighting design: Shahar Maron<br>Mechanical constructions: Shaul Mograbi-Berger, Ornan Braier<br>Photo: Dor Kedmi</p><p><b>Ornan Braier</b> is a puppeteer, actor and musician. He combines a wide variety of performing arts in his shows and thus has become a unique and original artist in Israel and around the world. His stage language is based on powerful visual images combined with distinctive music, which sweeps all the senses of the audience. His work has won local and international prizes. Tailor Made, produced together with the Train Theatre, has been performed around the world and has won local and international prizes. Another show by Ornan, Little Love Machine (2019) was seen on SAMPO Festival 2023 and it has also received several awards.</p>" }, "name": { "fi": "Ornan Braier: Räätälin taikaseikkailu – SAMPO Festivaali", "en": "Ornan Braier: Tailor made – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63586/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64139", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151544, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T12:13:06.410447Z", "last_modified_time": "2024-06-26T12:13:06.410462Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746698.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151544/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T12:13:06.391410Z", "last_modified_time": "2024-08-29T05:13:19.661915Z", "date_published": null, "start_time": "2024-08-29T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Antero Raimo & Ovet on vuonna 1992 perustettu yhtye. Musiikki on lämpimän humoristista, syvästi koskettavaa ja saanut vaikutteita eri musiikin tyylilajeista.", "sv": "Antero Raimo & Ovet är ett band som grundades 1992. Musiken är varmt humoristisk, djupt rörande och influerad av olika musikgenrer.", "en": "Antero Raimo & Ovet was founded 1992. The players had been working as teachers in Vantaa and Helsinki." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/F4D77D660089920A46F91362E41F2656/Antero_Raimo_Ovet", "sv": "http://www.espanlava.fi/sv/evenemang/event/F4D77D660089920A46F91362E41F2656/Antero_Raimo_Ovet", "en": "http://www.espanlava.fi/en/events/event/F4D77D660089920A46F91362E41F2656/Antero_Raimo_Ovet" }, "description": { "fi": "<p>Antero Raimo & Ovet on vuonna 1992 perustettu yhtye. Musiikki on lämpimän humoristista, syvästi koskettavaa ja saanut vaikutteita eri musiikin tyylilajeista.</p><p>Yhtyeen jäsenet ovat vantaalaisia ja helsinkiläisiä opettajia, monet opiskeluaikoina toisiinsa tutustuneita. Soittajilla on monia yhtyeitä takanaan mm. Jukebox, Zetor, Jordnöts, Myrkky.</p><p><b>Yhtyeen jäsenet ovat tällä hetkellä:</b><br>Jari Rönkkö: rummut<br>Raimo Laine: laulu<br>Petri Sinivuori : basso<br>Tero Ylevä: harmonikka<br>Kimmo Salmela: kitara<br>Matti Kervinen: keyboard</p><p>Ensimmäisen kokoonpanon muodostivat Matti Jordman, Mikko Jordman, Jari Rönkkö, Raimo Laine, Tuomo Korpela ja Tero Siivonen. Hannele Voutilainen soitti viulua yhtyeessä 90-luvun loppupuoleen asti. Petri Sinivuori tuli basson varteen v. 2000 Tuomo Korpelan tilalle, ja Tero Ylevä v. 2005 Tero Siivosen tuuraajaksi ja vakijäseneksi. 2018 Matti ja Mikko Jordmanin tilalle astuivat Kimmo Salmela ja Matti Kervinen.<br>Yhtyeen kappaleet ovat pääasiassa Jari Rönkön säveltämiä ja Raimo Laineen sanoittamia.</p><p>Näin ura urkeni: vuonna 1993 yhtye äänitti naapurin 50 m² kaksiossa ensisinglensä. Rumpali paukutteli olohuoneessa, basisti makuuhuoneessa ja kitaristi eteisessä. Tarkkaamo sijaitsi makuuhuoneessa. Vinyylisinglelle päätyivät kappaleet \"Mustikanpoiminta\" ja \"Jalkapallosankarit\". Levyä ei markkinoitu mitenkään, se vain jaettiin radioihin.</p><p>Keväällä -95 julkaistiin kuuden kappaleen omakustanne; CD-single ”Uushumppaa”, jolle \"Mustikanpoiminta\" laitettiin mukaan. Sieltä kappale löydettiin ja se sai suuren suosion Radio Suomessa päätyen aina soitetuimpien listalle useiksi viikoiksi. \"Mökille mennään\" saavutti samanlaisen suosion seuraavana keväänä. Sittemmin radioasemat ovat soittaneet lisäksi mm. seuraavia kappaleita \"Kesäloma maalla, \"Ai, ai, ahdistaa\", \"Nassulan saunavuoro\", \"Kiiitos Minä\", \"Rasvat pois\" ja \"Ei tästä maailmasta\".</p><p>Yhtye keikkailee valikoidusti, sillä jäsenillä on leipätyöt ja perheet, ja soittohommia halutaan tehdä sopivasti.</p>", "sv": "<p>Antero Raimo & Ovet är ett band som grundades 1992. Musiken är varmt humoristisk, djupt rörande och influerad av olika musikgenrer.</p><p>Medlemmarna i gruppen är lärare från Vanda och Helsingfors. Flera av dem blev bekanta med varandra under studietiden. Musikerna har många band bakom sig, bland annat Jukebox, Zetor, Jordnöts, Myrkky.</p><p><b>Bandmedlemmarna är för närvarande:</b></p><p>Jari Rönkkö: trummor<br> Raimo Laine: sång<br> Petri Sinivuori: bas<br> Tero Ylevä: dragspel<br> Kimmo Salmela: gitarr<br> Matti Kervinen: keybord</p><p>Den första ensemblen bestod av Matti Jordman, Mikko Jordman, Jari Rönkkö, Raimo Laine, Tuomo Korpela och Tero Siivonen. Hannele Voutilainen spelade violin i bandet fram till slutet av 1990-talet. Petri Sinivuori tog tag i basen år 2000 för att ersätta Tuomo Korpela, och Tero Ylevä kom med år 2005 för att ersätta Tero Siivonen och sedan bli permanent medlem. År 2018 ersattes Matti och Mikko Jordman av Kimmo Salmela och Matti Kervinen.</p><p>Bandets låtar är huvudsakligen komponerade av Jari Rönkkö och texterna är skrivna av Raimo Laine.</p><p>Så här fick karriären sin begynnelse: år 1993 spelade bandet in sin första singel i en grannes lägenhet på 50 m². Trummisen spelade i vardagsrummet, basisten i sovrummet och gitarristen i tamburen. Kontrollrummet låg i sovrummet. Låtarna “Mustikanpoiminta” och “Jalkapallosankarit” hamnade på vinylsingeln. Albumet marknadsfördes inte på något sätt, utan distribuerades bara till radiostationerna.</p><p>Våren -95 släpptes sex låtar på den självutgivna CD-singeln “Uusihumppaa”, där även “Mustikanpoimintaa” ingick. Där upptäcktes låten och uppnådde stor popularitet på Radio Suomi, och hamnade på listan över mest spelade låtar i flera veckors tid. “Mökille mennään” uppnådde en liknande popularitet följande vår. Sedan dess har radiostationerna även spelat bland annat låtarna: “Kesäloma maalla”, “Ai, ai, ahdistaa”, “Nassulan saunavuoro”, “Kiiitos Minä”, “Rasvat pois” och “Ei tästä maailmasta”.</p><p>Eftersom bandets medlemmar förvärvsarbetar, har familjer, och vill spela i lämplig utsträckning uppträder bandet selektivt.</p>", "en": "<p>Antero Raimo & Ovet was founded 1992. The players had been working as teachers in Vantaa and Helsinki.</p><p>Many of them got to know each other during their studies in Helsinki University. They had played before in bands like Jukebox, Zetor, Myrkky.</p><p><b>The members of Antero Raimo & Ovet are in this moment:</b><br>Jari Rönkkö: drums <br>Raimo Laine:vocals<br>Petri Sinivuori : bass<br>Tero Ylevä: accordion<br>Kimmo Salmela: guitar<br>Matti Kervinen: keyboard</p><p>Matti, Mikko, Jari and Raimo are the original members of the band. Petri joined the band as a bassplayer 2000 replacing tuomo Korpela, and Tero Ylevä replaced Tero Siivonen year 2005. Hannele Voutilainen left the band at the end of 90’s. 2018 Matti and Mikko Jordman were replaced by Kimmo Salmela and Matti Kervinen.</p><p>The songs are composed by Jari Rönkkö and the lyrics are written by Raimo Laine with a few exceptions.</p><p>The story begins: 1993 Antero Raimo & Ovet was recording the first single in an apartment of their neighbour. The drummer was playing in a livingroom, bass was recorded in a bedroom and guitar in a corridor. The monitoring room was also in the bedroom. There were songs “Mustikanpoiminta” (Blaubeeren sammeln) and “Jalkapallosankarit” in the single. The single was just spreaded into radiostations without any promotion.</p><p>In the spring 1995 was puplished an EP with 6 songs. EP was named UUSHUMPPAA (Einen neues humppa), and “Mustikanpoiminta” (Blaubeeren sammeln) was one of the songs in the EP. Now this song was found in radiowaves and it became very popular in Radio Suomi. Song “Mökille mennään” achieved the same popularity in the next spring 1996. After that the most played songs with those two mentioned have been “Kesäloma maalla”, “Ai, ai, ahdistaa”, Nassulan saunavuoro” (Das Saunalied der Ferkel), “Kiitos minä” (Ich bin Klasse) and “Rasvat pois” (Das Fett muss weg).</p><p>Antero Raimo & Ovet plays gigs infrequently, because the members have regular jobs and families.</p>" }, "name": { "fi": "Antero Raimo & Ovet – Open Stage", "sv": "Antero Raimo & Ovet – Open Stage", "en": "Antero Raimo & Ovet – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64139/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64138", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151543, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T12:13:06.287118Z", "last_modified_time": "2024-06-26T12:13:06.287138Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746697.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151543/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T12:13:06.236697Z", "last_modified_time": "2024-08-29T05:13:19.611134Z", "date_published": null, "start_time": "2024-08-29T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Finnair Singers on Finnairin henkilökunnan naiskuoro. Ensimmäinen kuoro Finnairille perustettiin vuonna 1949 ja me jatkamme tätä perinnettä vielä 75 vuoden jälkeen.", "sv": "Finnair Singers är en damkör som består av Finnairs personal. Finnairs första kör grundades år 1949, och vi för vidare denna tradition ännu 75 år senare.", "en": "Finnair Singers is a female choir of Finnair staff. The first choir for Finnair was founded in 1949 and we continue this 75-year tradition." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/E43E1179F92C25F44A90B7FD5269272C/Finnair_Singers_Around_the_World", "sv": "http://www.espanlava.fi/sv/evenemang/event/E43E1179F92C25F44A90B7FD5269272C/Finnair_Singers_Around_the_World", "en": "http://www.espanlava.fi/en/events/event/E43E1179F92C25F44A90B7FD5269272C/Finnair_Singers_Around_the_World" }, "description": { "fi": "<p>Finnair Singers on Finnairin henkilökunnan naiskuoro. Ensimmäinen kuoro Finnairille perustettiin vuonna 1949 ja me jatkamme tätä perinnettä vielä 75 vuoden jälkeen.</p><p>Suurin osa jäsenistämme viettää työpäivänsä pilvien yläpuolella Finnairin lennoilla palvelemassa asiakkaita ja joskus jopa laulaen. Mukaan mahtuu myös maassa eri tehtävissä toimivia finnairilaisia mm. asiakaspalvelusta, kaupallisista toiminnoista, viestinnästä ja IT:stä.</p><p>Kuoro on meille kaikille rakas tavoitteellinen harrastus, mahdollisuus tavata kollegoita työn ulkopuolella ja nauttia laulun iloisesta voimasta yhdessä.</p>", "sv": "<p>Finnair Singers är en damkör som består av Finnairs personal. Finnairs första kör grundades år 1949, och vi för vidare denna tradition ännu 75 år senare.</p><p>De flesta av våra medlemmar tillbringar sina arbetsdagar genom att betjäna kunder ovan om molnen på Finnairs flygningar, ibland även sjungande. Vi har också körmedlemmar som arbetar inom Finnairs kundtjänst, affärsfunktioner, kommunikation och IT.</p><p>För oss alla är kören en kär och målinriktad hobby, och en möjlighet att träffa kollegor utanför jobbet och njuta av sångens glädjande kraft tillsammans.</p>", "en": "<p>Finnair Singers is a female choir of Finnair staff. The first choir for Finnair was founded in 1949 and we continue this 75-year tradition.</p><p>Most of our members spend their working days above the clouds on Finnair flights serving customers – sometimes they even sing. The choir also includes Finnair employees working in different positions on the ground, from customer service, commercial operations, communications and IT, among others.</p><p>The choir is a goal-oriented hobby for all of us, an opportunity to meet colleagues outside of work and enjoy the joyful power of singing together.</p>" }, "name": { "fi": "Finnair Singers – Around the World – Open Stage", "sv": "Finnair Singers – Around the World – Open Stage", "en": "Finnair Singers – Around the World – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64138/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63585", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia" }, "description": null, "price": { "fi": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151474, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T11:13:41.560992Z", "last_modified_time": "2024-06-17T11:13:41.561006Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751695.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151474/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-06-17T11:13:41.533509Z", "last_modified_time": "2024-08-29T05:13:19.534858Z", "date_published": null, "start_time": "2024-08-29T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.", "en": "We invite babies from eight months to two and a half years old to arrive at a theatre." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/9715364B1161B65DE3E609C898A4CD0E/SAMPO_Festivaali_Babygonia", "en": "http://www.annantalo.fi/en/events/event/9715364B1161B65DE3E609C898A4CD0E/SAMPO_Festival_Babygonia" }, "description": { "fi": "<p>Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.</p><p>Pienimmät saapuvat esitykseen kuin kuninkaalliset, vaunuissa seurueensa saattelemina. Teatteritilaa ei jaeta katsomoon ja näyttämöön, vaan vieras astuu sisään esityksen maailmaan. Esityksessä on lupa kulkea rohkeasti esityksen virran mukana tai sitä vastaan, voi katsella kuinka tila muuttuu, osallistua, tunnustella tai vain olla ja kuunnella ääniä ympärillään.</p><p>Vauvakatsoja on kuin pieni Buddha: hän ei tiedä sitä mitä aikuiset tietävät, mutta hän muistaa vielä sen, minkä aikuiset ovat unohtaneet. Hänellä on hämmästyttävä uteliaisuus kaikkea ympärillä olevaa kohtaan. Hän kyseenalaistaa ja tutkii jokaista pientä huomaamaansa asiaa jonka ja nauttii tutkimisen ja jakamisen prosessista.</p><p>Esityksessä syntyvät mikro- ja makrouniversumit muodostuvat erivärisistä, -kokoisista ja -tuntuisista objekteista. Esiintyjät luovat assosiatiivisia kuvia, sommitelmia, tunnelmia ja tapahtumia live-muusikon avustuksella. Jokainen Babygonia-näytös on ainutlaatuinen.</p><p><b>TYÖRYHMÄ</b><br>Esiintyjät: Anna Nekrassova ja Jenni Rutanen<br>Konsepti, ohjaus: Anna Ivanova<br>Visuaalisuus, tila ja objektit: Jenni Rutanen<br>Äänisuunnittelu, muusikko lavalla: Roosa Halme<br>Valosuunnittelu: Antton Kainulainen<br>Koreografia: Mantas Stabačinskas</p><p>Kesto: 30 min<br>Ikäsuositus: 8 kk – 2,5-v (aikuisten kanssa)<br>Kielet: sanaton</p><p>Lippuvaraukset: 020 735 2235, toimisto@nukketeatterisampo.fi<br>Lipputoimisto: Nukketeatteri Sampo, Erottajankatu 7, Helsinki</p><p><b>SAMPO Festivaali</b> <br>Kansainvälinen nukketeatteritapahtuma SAMPO Festivaali toteutuu nyt jo kahdeksatta kertaa! Luvassa sanatonta nukketeatteria aikuisille ja lapsille, elävää musiikkia, vauvateatteria, sirkusta, absurdia minimalismia ja suuren näyttämön varjoteatteria.</p><p>Ohjelmassa on kotimaisia uutuuksia ja kansainvälisiä huippunimiä ensimmäistä kertaa Suomessa!<br> <br>Tutustu koko ohjelmaan: https://sampofestival.fi/</p>", "en": "<p>We invite babies from eight months to two and a half years old to arrive at a theatre.</p><p>They always come like royalty in carriages, accompanied by an adult retinue. And they enter the show as a river can be entered – they can bravely go with its flow or against it; they can watch how it flows; they can lie down and look into it, or just listen to the sound of water.</p><p>The theatre is not divided into an auditorium and a stage. The actors create a variety of images and compositions in space, where, if desired and ready, large and small spectators can enter. The audience chooses the degree of their participation and activity in the action organized by the actors.<br> <br>Baby spectator is a little Buddha: s/he does not know what adults do know. But s/he still remembers what grown-ups have forgotten. S/he has an amazing curiosity about everything around. S/he questions and explores every tiny thing s/he notices. S/he enjoys this devising process.</p><p>The performance is based on associative forms, shapes and tactile-sensory perception of space, in which micro- and macro-universes are formed, assembled from objects of different colors, sizes, textures and sounds (the visual story is accompanied by live music).</p><p>We borrow from little buddhas their method of communication with reality and we are using it as a professional approach in creating baby theatre.</p><p><b>WORKING GROUP</b><br>Performers: Anna Nekrassova and Jenni Rutanen<br>Concept, directing: Anna Ivanova<br>Visual realization, space and objects: Jenni Rutanen<br>Sound designer and musician on stage: Roosa Halme<br>Light designer: Antton Kainulainen<br>Movement designer: Mantas Stabačinskas</p><p>Duration: 30 minutes<br>Age recommendation: 8 months – 2,5 years old (with adults)<br>Language: Non-verbal<br>Tickets: 15 €, from Nukketeatteri Sampo: nukketeatterisampo.fi/esityskalenteri<br>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p><b>SAMPO Festival in Helsinki</b></p><p>The international puppet theatre event SAMPO Festival is coming for the eighth time! There will be nonverbal puppet theatre for adults and children, live music, circus, theatre for babies, absurd minimalism and shadow theatre of grand proportions!</p><p>New domestic performances and international top names for the first time in Finland!<br> <br>Check out the entire program: sampofestival.fi</p>" }, "name": { "fi": "SAMPO Festivaali: Babygonia", "en": "SAMPO Festival: Babygonia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63585/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64080", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/", "sv": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/", "en": "https://www.lippu.fi/artist/helsingin-kulttuurikeskus-stoa/sampo-festivaali-3661276/" }, "description": null, "price": { "fi": "17,50 €", "sv": "17,50 €", "en": "17,50 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151489, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-18T12:13:40.304896Z", "last_modified_time": "2024-06-18T12:13:40.304914Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753192.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151489/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-18T12:13:40.268196Z", "last_modified_time": "2024-08-29T05:13:19.447237Z", "date_published": null, "start_time": "2024-08-28T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Varjoteatteria ja livemusiikkia yhdistävä esitys vie tutkimaan, miten koemme valon, pimeyden ja varjojen leikin. Millaisia tunteita se meissä herättää?", "sv": "En föreställning som kombinerar skuggteater och levande musik får oss att utforska hur vi upplever leken mellan ljus, mörker och skuggor. Hurdana känslor väcker den hos oss?", "en": "Tunnel is an unusual production that seeks comfort in the dark and treats light like a delicious dessert." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/CF0EBA46115EE4AEAF59B2A92CC60C59/Tunnel", "sv": "http://www.stoa.fi/sv/evenemang/event/CF0EBA46115EE4AEAF59B2A92CC60C59/Tunnel", "en": "http://www.stoa.fi/en/events/event/CF0EBA46115EE4AEAF59B2A92CC60C59/Tunnel" }, "description": { "fi": "<p>Varjoteatteria ja livemusiikkia yhdistävä esitys vie tutkimaan, miten koemme valon, pimeyden ja varjojen leikin. Millaisia tunteita se meissä herättää?</p><p>Aluksi näyttää siltä, että valoa voidaan hallita, kun taas pimeyttä – tuntematonta, vaarallista – ei voi. Tilanne kuitenkin kääntyy pian päinvastaiseksi: tarvitaan vain ripaus rohkeutta sekä yhteistyötä ja voimme turvallisesti nauttia pimeydestä ja annostella sitä itse!</p><p>Tunnelissa asuu sekä valo että pimeys. Pimeässä emme näe värejä, emme voi havaita todellisia muotoja ja kokoja, emme tunnista rakennetta koskematta, emmekä pysty määrittämään etäisyyksiä. Valossa kylpenyt maailma katoaa, äänet vääristyvät epämääräisiksi ja moni tuntee olonsa epämukavaksi. Ehkä pelokkaaksikin?</p><p>Valolla voi leikkiä, mutta valolla leikkiminen tarkoittaa myös pimeyden kanssa leikkimistä. Tiedämmekö yhä minkä värinen ja muotoinen maailma ympärillämme on? Millainen se on tekstuuriltaan? Missä me olemme? Entä keitä olemme – menetämmekö myös me pimeydessä värimme, muotomme, rakenteemme, syvyytemme ja kokomme?</p><p>Valon ja pimeyden animaatioon perustuva varjoteatteriesitys luo ”leikkipaikan pimeydelle”. Pimeässä ympäristössä luodaan assosiatiivisia visuaalisia ja äänikuvia, jotka leikkisästi esittävät kysymyksiä pelosta ja rohkeudesta. Tunneli on epätavallinen esitys, joka etsii mukavuutta pimeässä ja kohtelee valoa kuin se olisi herkullinen jälkiruoka.</p><p>Esitys sisältää valotehosteita.</p><p>Yhteistuotanto Klaipėdan nukketeatterin (Liettua) kanssa osana eurooppalaista Mapping-projektia.</p><p>Kesto: 50 min<br>Ikäsuositus: 5+<br>Kieli: sanaton, Suomi (tallenteelta)</p><p>Ohjaaja, AD, lavastaja: Miha Golob<br>Dramaturgi: Mojca Redjko<br>Pukusuunnittelija: Dajana Ljubičić<br>Musiikki: Andrius Šiurys<br>Virtuaalisen sisällön toteutus: Borut Kumperščak<br>Valosuunnittelija: Gregor Kuhar<br>Näyttelijät: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Lämmin kiitos yhteistyöstä: Ada, Ana, Brin, Jonatan, Lara, Luisa, Oliver, Timeja,<br>Varja, Veno, Vid, Zora<br>Tuotantopäällikkö, äänisuunnittelija ja videoteknikko: Aleš Erjavec<br>Keskustelujen äänitys ja äänimateriaalin editointi: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Tuottajat: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Valot: Gregor Kuhar/Kristjan Vidner<br>Lavatekniikka: Sašo Kitić<br>Lavastus, nuket, rekvisiitta ja puvut: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror-tuotanto: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> on palkittu teatteri- ja nukkeohjaaja. Hänen alkuperäiset konseptinsa perustuvat usein ajatukseen tutkimisesta ja materiaalilla leikkimisestä, mikä antaa myös katsojalle aktiivisen ja luovan roolin teoksissa. Osana European Mapping -projektia Golob on tuonut Ljubljanan nukketeatteriin alkuperäisen Tunnel-projektinsa, jossa tutkitaan valoa ja pimeyttä teatterin keinoin.</p><p><b>Klaipėdan nukketeatteri</b> (1991) keskittyy rohkeasti uusien ilmaisutapojen löytämiseen nukeille, ja sen ohjelmisto koostuu sekä paikallisten että ulkomaisten kirjailijoiden tulkinnoista. Teatterin päätehtävä on esittää klassista ja modernia nukketeatteria Klaipėdan ja sen lähialueen lapsille ja nuorille, mutta Länsi-Liettuan ainoana ammattimaisena nukketeatterina se tuottaa teoksia kaikenikäisille yleisöille.</p><p><b>Mapping – Kartta esittävän taiteen estetiikasta nuorille katsojille</b> on laajamittainen Luova Eurooppa -ohjelman 2018–2022 tukema kansainvälinen hanke, joka keskittyy tataiteelliseen tutkimukseen ja aistisuhteen luomiseen nuoren yleisön (0–6-vuotiaiden) kanssa.</p>", "sv": "<p>En föreställning som kombinerar skuggteater och levande musik får oss att utforska hur vi upplever leken mellan ljus, mörker och skuggor. Hurdana känslor väcker den hos oss?</p><p>Först verkar det som om ljuset kan kontrolleras, medan mörkret – okänt, farligt – inte kan. Situationen förvandlas dock snart till det motsatta: Allt som krävs är en nypa mod och samarbete, och vi kan tryggt njuta av mörkret och själva välja hur stora doser vi vill ha!</p><p>I Tunneln bor både ljuset och mörkret. I mörkret kan vi inte se färger, vi kan inte upptäcka verkliga former och storlekar, vi kan inte identifiera en struktur utan att röra den och vi kan inte bestämma avstånd. En värld som badade i ljus försvinner, ljuden förvrängs och många känner sig obekväma. Kanske till och med rädda?<br>Man kan leka med ljuset, men att leka med ljuset innebär att man också leker med mörkret. Vet vi fortfarande vilken färg och form världen omkring oss har? Hurdan är dess textur? Var är vi? Och vem är vi – förlorar vi också vår färg, form, struktur, djup och storlek i mörkret?</p><p>Skuggteaterföreställningen som baserar sig på ljusets och mörkrets animation skapar en \"lekplats för mörkret\". I den mörka miljön skapas associativa visuella bilder och ljudbilder som lekfullt ställer frågor om rädsla och mod. Tunnel är en ovanlig föreställning som söker komfort i mörkret och behandlar ljuset som om det var en utsökt efterrätt.</p><p>Föreställningen innehåller ljuseffekter.<br>Samproduktion med Klaipėda dockteater (Litauen) som en del av det europeiska projektet Mapping.</p><p>Längd: 50 min.<br>Åldersrekommendation: 5+<br>Språk: ordlös, finska (från inspelning)</p><p>Regissör, AD, scenograf: Miha Golob<br>Dramaturg: Mojca Redjko<br>Kostymdesigner: Dajana Ljubičić<br>Musik: Andrius Šiurys<br>Virtuellt innehåll: Borut Kumperščak<br>Ljusdesigner: Gregor Kuhar<br>I rollerna: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Varmt tack för samarbetet: Ada, Ana, Brin, Jonathan, Lara, Luisa, Oliver, Timeja,<br>Göm, Veno, Vid, Zora<br>Produktionschef, ljuddesigner och videotekniker: Aleš Erjavec<br>Inspelning av dialogerna och ljudredigering: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Producenter: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Belysning: Gregor Kuhar/Kristjan Vidner<br>Scenteknik: Sašo Kitić<br>Scenografi, dockor, rekvisita och kostymer: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror-produktion: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> är en prisbelönt teater- och dockregissör. Hans ursprungliga koncept bygger ofta på idén om att utforska material och leka med det, vilket ger också åskådaren en aktiv och skapande roll i verken. Som en del av projektet European Mapping har Golob tagit med sig sitt ursprungliga projekt Tunnel till dockteatern i Ljubljana. I projektet utforskas ljus och mörker genom teater.</p><p><b>Klaipėda dockteater</b> (1991) fokuserar djärvt på att hitta nya uttryckssätt för dockor, och dess repertoar består av tolkningar av både lokala och utländska författare. Teaterns huvudsakliga uppgift är att framföra klassisk och modern dockteater för barn och ungdomar i Klaipėda och dess omgivning, men som den enda professionella dockteatern i västra Litauen producerar den verk för publik i alla åldrar.</p><p><b>Mapping – En karta över scenkonstens estetik för ung publik</b> är ett storskaligt internationellt projekt som stöds av programmet Kreativa Europa 2018–2022. Projektet fokuserar på konstnärlig forskning och på att skapa ett sensoriskt förhållande till ung publik (0–6-åringar).</p>", "en": "<p>Tunnel is an unusual production that seeks comfort in the dark and treats light like a delicious dessert.</p><p>Based on the animation of light and darkness, the performance creates a playground for darkness, where associative visual and sound images are created that playfully raise questions about fear and courage.</p><p>At first it seems that the light can be controlled, while the darkness— unknown, dangerous —cannot. However, in the performance, the situation is soon reversed – with a pinch of courage and a pinch of cooperation, we can safely enjoy the darkness as we dose it ourselves.</p><p>Tunnel is inhabited by both light and darkness. Light is inseparably linked to colour, shape, structure, depth, distance, and activity. In darkness the world revealed in the light disappears, sounds become distorted without a clear picture and many people feel discomfort. Fear?</p><p>Playing with light also means playing with darkness. Do we then still know what colour, shape, texture, size the world is? Where are we? And who are we – do we also change, lose our colour, shape, structure, depth and size?</p><p>Based on the animation of light and darkness, the performance creates a playground for darkness, where associative visual and sound images are created that playfully raise questions about fear and courage.</p><p>The performance includes lighting effects that may disturb sensitive viewers.</p><p>Co-produced with the Klaipėda Puppet Theatre (Lithuania) as part of the European project<br>Mapping.</p><p>Age recommendation 5+<br>Duration: 50 min<br>Language: nonverbal, Finnish (from recording)</p><p>Director, art director, set designer: Miha Golob<br>Dramaturgy: Mojca Redjko<br>Costume designer: Dajana Ljubičić<br>Music: Andrius Šiurys<br>Virtual content designer: Borut Kumperščak<br>Lighting designer: Gregor Kuhar<br>Actors: Miha Arh, Gašper Malnar, Barbara Kanc k.g., Filip Šebšajevič k.g.<br>Sincere thanks for kind cooperation: Ada, Ana, Brin, Jonatan, Lara, Luisa, Oliver, Timeja,<br>Varja, Veno, Vid, Zora<br>Performance manager, sound designer and video technician: Aleš Erjavec<br>Recording conversations and editing audio recordings: Mitja Vasič, Aleš Erjavec, Izidor Kozelj<br>Producer: Alja Cerar Mihajlović, Agnė Pulokaitė<br>Lighting control: Gregor Kuhar/Kristjan Vidner<br>Stage technician: Sašo Kitić<br>Set, puppets, props and costumes: Polona Černe, Sandra Birjukov, David Klemenčič, Zlatko Djogić, Zoran Srdić, Monika Colja, Smrekca d.o.o.<br>Mirror production: Konveks, Oliver Frlić, s.p.</p><p><b>Miha Golob</b> is a theatre and puppet director. His original concepts are often based on the idea of exploration and play with material, which consistently ensures an active and creative role of the spectator. As part of the European Mapping project, he returns to the Ljubljana Puppet Theatre with his original project Tunnel, in which light and darkness are the key theatrical symbols and the field of research.<br> <br><b>The Klaipėda Puppet Theatre</b> (1991) boldly focuses on discovering new ways of puppet expression, and its repertoire consists of interpretations by both local and foreign authorsThe theatre's main mission is to present classical and contemporary puppetry to children and young people from Klaipėda and the region, but as the only professional puppet theatre in western Lithuania it produces works for audiences of all ages.</p><p><b>Mapping – A Map on the aesthetics of performing arts for early years</b> – is a large-scale international project supported by the Creative Europe Programme 2018–2022.The project focuses on artistic research and the creation of a sensory relationship with young audiences (0–6 years old), resulting in four exhibitions, 16 premieres for younger audiences and five illustrated expert publications.</p>" }, "name": { "fi": "Tunnel – SAMPO Festivaali", "sv": "Tunnel – SAMPO-festivalen", "en": "Tunnel – SAMPO Festival" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64080/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63582", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia" }, "description": null, "price": { "fi": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151473, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T11:13:41.412925Z", "last_modified_time": "2024-06-17T11:13:41.412940Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751693.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151473/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-06-17T11:13:41.388373Z", "last_modified_time": "2024-08-29T05:13:19.390900Z", "date_published": null, "start_time": "2024-08-28T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.", "en": "We invite babies from eight months to two and a half years old to arrive at a theatre." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/2A9012B13135065210D03844B2888E53/SAMPO_Festivaali_Babygonia", "en": "http://www.annantalo.fi/en/events/event/2A9012B13135065210D03844B2888E53/SAMPO_Festival_Babygonia" }, "description": { "fi": "<p>Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.</p><p>Pienimmät saapuvat esitykseen kuin kuninkaalliset, vaunuissa seurueensa saattelemina. Teatteritilaa ei jaeta katsomoon ja näyttämöön, vaan vieras astuu sisään esityksen maailmaan. Esityksessä on lupa kulkea rohkeasti esityksen virran mukana tai sitä vastaan, voi katsella kuinka tila muuttuu, osallistua, tunnustella tai vain olla ja kuunnella ääniä ympärillään.</p><p>Vauvakatsoja on kuin pieni Buddha: hän ei tiedä sitä mitä aikuiset tietävät, mutta hän muistaa vielä sen, minkä aikuiset ovat unohtaneet. Hänellä on hämmästyttävä uteliaisuus kaikkea ympärillä olevaa kohtaan. Hän kyseenalaistaa ja tutkii jokaista pientä huomaamaansa asiaa jonka ja nauttii tutkimisen ja jakamisen prosessista.</p><p>Esityksessä syntyvät mikro- ja makrouniversumit muodostuvat erivärisistä, -kokoisista ja -tuntuisista objekteista. Esiintyjät luovat assosiatiivisia kuvia, sommitelmia, tunnelmia ja tapahtumia live-muusikon avustuksella. Jokainen Babygonia-näytös on ainutlaatuinen.</p><p><b>TYÖRYHMÄ</b><br>Esiintyjät: Anna Nekrassova ja Jenni Rutanen<br>Konsepti, ohjaus: Anna Ivanova<br>Visuaalisuus, tila ja objektit: Jenni Rutanen<br>Äänisuunnittelu, muusikko lavalla: Roosa Halme<br>Valosuunnittelu: Antton Kainulainen<br>Koreografia: Mantas Stabačinskas</p><p>Kesto: 30 min<br>Ikäsuositus: 8 kk – 2,5-v (aikuisten kanssa)<br>Kielet: sanaton</p><p>Lippuvaraukset: 020 735 2235, toimisto@nukketeatterisampo.fi<br>Lipputoimisto: Nukketeatteri Sampo, Erottajankatu 7, Helsinki.</p><p><b>SAMPO Festivaali</b> <br>Kansainvälinen nukketeatteritapahtuma SAMPO Festivaali toteutuu nyt jo kahdeksatta kertaa! Luvassa sanatonta nukketeatteria aikuisille ja lapsille, elävää musiikkia, vauvateatteria, sirkusta, absurdia minimalismia ja suuren näyttämön varjoteatteria.</p><p>Ohjelmassa on kotimaisia uutuuksia ja kansainvälisiä huippunimiä ensimmäistä kertaa Suomessa!<br> <br>Tutustu koko ohjelmaan: https://sampofestival.fi/</p>", "en": "<p>We invite babies from eight months to two and a half years old to arrive at a theatre.</p><p>They always come like royalty in carriages, accompanied by an adult retinue. And they enter the show as a river can be entered – they can bravely go with its flow or against it; they can watch how it flows; they can lie down and look into it, or just listen to the sound of water.</p><p>The theatre is not divided into an auditorium and a stage. The actors create a variety of images and compositions in space, where, if desired and ready, large and small spectators can enter. The audience chooses the degree of their participation and activity in the action organized by the actors.<br> <br>Baby spectator is a little Buddha: s/he does not know what adults do know. But s/he still remembers what grown-ups have forgotten. S/he has an amazing curiosity about everything around. S/he questions and explores every tiny thing s/he notices. S/he enjoys this devising process.</p><p>The performance is based on associative forms, shapes and tactile-sensory perception of space, in which micro- and macro-universes are formed, assembled from objects of different colors, sizes, textures and sounds (the visual story is accompanied by live music).</p><p>We borrow from little buddhas their method of communication with reality and we are using it as a professional approach in creating baby theatre.</p><p><b>WORKING GROUP</b><br>Performers: Anna Nekrassova and Jenni Rutanen<br>Concept, directing: Anna Ivanova<br>Visual realization, space and objects: Jenni Rutanen<br>Sound designer and musician on stage: Roosa Halme<br>Light designer: Antton Kainulainen<br>Movement designer: Mantas Stabačinskas</p><p>Duration: 30 minutes<br>Age recommendation: 8 months – 2,5 years old (with adults)<br>Language: Non-verbal</p><p>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>SAMPO Festival in Helsinki</p><p>The international puppet theatre event SAMPO Festival is coming for the eighth time! There will be nonverbal puppet theatre for adults and children, live music, circus, theatre for babies, absurd minimalism and shadow theatre of grand proportions!</p><p>New domestic performances and international top names for the first time in Finland!<br> <br>Check out the entire program: https://sampofestival.fi/en/</p>" }, "name": { "fi": "SAMPO Festivaali: Babygonia", "en": "SAMPO Festival: Babygonia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63582/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64137", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151542, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T11:13:02.503557Z", "last_modified_time": "2024-06-26T11:13:02.503579Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749272.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151542/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T11:13:02.486923Z", "last_modified_time": "2024-08-29T05:13:19.333536Z", "date_published": null, "start_time": "2024-08-28T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "AS I AS YOU on vaihtoehtorock-bändi, jolla on omaperäisiä kappaleita ja energinen live-show! Valmistaudu rokkaamaan kanssamme!", "sv": "AS I AS YOU är ett alternativt rockband med originella låtar och en energisk liveshow! Gör dig redo att rocka med oss!", "en": "AS I AS YOU is an alternative rock band with original songs and a high-energy live performance. Get ready to bang your head and rock out with us!" }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/8337A98B8A9A6BA1040EF420BFE1432E/AS_I_AS_YOU", "sv": "http://www.espanlava.fi/sv/evenemang/event/8337A98B8A9A6BA1040EF420BFE1432E/AS_I_AS_YOU", "en": "http://www.espanlava.fi/en/events/event/8337A98B8A9A6BA1040EF420BFE1432E/AS_I_AS_YOU" }, "description": { "fi": "<p>AS I AS YOU on vaihtoehtorock-bändi, jolla on omaperäisiä kappaleita ja energinen live-show! Valmistaudu rokkaamaan kanssamme!</p>", "sv": "<p>AS I AS YOU är ett alternativt rockband med originella låtar och en energisk liveshow! Gör dig redo att rocka med oss!</p>", "en": "<p>AS I AS YOU is an alternative rock band with original songs and a high-energy live performance. Get ready to bang your head and rock out with us!</p>" }, "name": { "fi": "AS I AS YOU – Open Stage", "sv": "AS I AS YOU – Open Stage", "en": "AS I AS YOU – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64137/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64136", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151541, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T11:13:02.391235Z", "last_modified_time": "2024-06-26T11:13:02.391259Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749271.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151541/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T11:13:02.375036Z", "last_modified_time": "2024-08-29T05:13:19.280013Z", "date_published": null, "start_time": "2024-08-28T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "PIMEE on alt-suomirockin uusi artisti ja biisintekijä-kitaristi. Hänen musiikkinsa on kantaaottavaa, suoraa tekstiä maailman menosta ja rouheita riffejä.", "en": "PIMEE is a new finnish alt-rock artist and songwriter-guitarist." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6910E0ADD9C9EA796E696B0EC000C700/PIMEE", "en": "http://www.espanlava.fi/en/events/event/6910E0ADD9C9EA796E696B0EC000C700/PIMEE" }, "description": { "fi": "<p>PIMEE on alt-suomirockin uusi artisti ja biisintekijä-kitaristi. Hänen musiikkinsa on kantaaottavaa, suoraa tekstiä maailman menosta ja rouheita riffejä.</p><p>PIMEE on nuori kapinallinen, joka rikkoo rajoja. Hän ja bändi astuvat esiin toteamalla \"meillä olisi vähän asiaa\".</p>", "en": "<p>PIMEE is a new finnish alt-rock artist and songwriter-guitarist.</p><p>Her music takes a strong word about society and the world we're living in. PIMEE is a young rebel, who breaks the boundaries.</p>" }, "name": { "fi": "PIMEE – Open Stage", "en": "PIMEE – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64136/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63893", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7258/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:49/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151313, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-29T09:13:06.197896Z", "last_modified_time": "2024-05-29T09:13:06.197915Z", "url": "http://www.savoyteatteri.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_753395.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151313/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-29T09:13:06.145659Z", "last_modified_time": "2024-08-29T05:13:19.220087Z", "date_published": null, "start_time": "2024-08-28T09:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Konsertti on loppuunvarattu, 11.50 otetaan sisään vapautuville paikoille jonottajat.", "sv": "Önskerepris! Denna helhet spelades vid en lunchkonsert i februari 2024. Eftersom många då blev utan biljett, får vi nu höra samma konsert på nytt.", "en": "Rerun! This concert was played at the lunchtime concert in February 2024. Since many were left without a ticket, the same concert will now be heard again." }, "info_url": { "fi": "http://www.savoyteatteri.fi/fi/tapahtumat/event/0D5D584E62DCDAACDD10FE30B20D1055/UMO_Helsinki_Ensemble_Tribuutti_Chet_Bakerille_", "sv": "http://www.savoyteatteri.fi/sv/evenemang/event/0D5D584E62DCDAACDD10FE30B20D1055/UMO_Helsinki_Ensemble_En_hyllning_till_Chet_Baker", "en": "http://www.savoyteatteri.fi/en/events/event/0D5D584E62DCDAACDD10FE30B20D1055/UMO_Helsinki_Ensemble_Tribute_to_Chet_Baker" }, "description": { "fi": "<p>Konsertti on loppuunvarattu, 11.50 otetaan sisään vapautuville paikoille jonottajat.</p><p>Tässä lounaskonsertissa muistellaan jazztrumpetisti ja laulaja <b>Chet Bakeria</b> (USA 1929–1988). Trumpetistina Baker oli länsirannikkolaisen 1950-luvun cool jazzin tyyliniekka. Hänen laulutapansa edusti pehmeää ja intiimiä crooner-tyyliä. Konsertissa kuullaan alle kuusikymppisenä boheemielämän pimeälle puolelle menehtyneen Bakerin rakastetuimpia klassikoita, mm. hänen tunnuskappaleekseen muodostunut <i>My Funny Valentine.</p><p>”Chet Baker soitti trumpettia kuin unelma ja lauloi pehmeästi kuin tähtiyö.”</i></p><p><b>UMO Helsinki Ensemble</b> on UMO Helsinki Jazz Orchestrasta koottu pienempi kokoonpano, jonka muusikoilla on mittava ura niin UMOn riveissä kuin lukuisissa omissa projekteissaan. Konsertin ohjelmiston on suunnitellut trumpetisti <b>Mikko Pettinen</b>, joka myös luotsaa ensembleä. Tässä konsertissa kuulemme Pettisen trumpetismin lisäksi hänen laulunlahjojaan.</p><p>Konsertin kesto 1 h.</p><p><b>UMO Helsinki Ensemble – Tribuutti Chet Bakerille</b> <br>Mikko Pettinen, trumpetti, laulu ja yhtyeenjohto <br>Mikko Mäkinen, saksofoni <br>Mikko Mustonen, pasuuna<br>Kirmo Lintinen, piano<br>Otso Huhtala, basso<br>Markus Ketola, rummut</p><p>HUOM! Vapaa pääsy, mutta lippu tarvitaan. Hankithan lipun ennakkoon Savoy-teatterin lippuluukulta (0 €) tai Lippu.fi-verkkokaupasta (0 €). Lippu.fi:n myyntipisteissä kulut ovat 3 € / tilaus, R-kioskeilla 3 € / tilaus + 1 € / lippu. Max. 2 lippua / varaus. Isommat ryhmävaraukset suoraan Savoysta. Ennakkolipulla sisään klo 11:50 asti. Tämän jälkeen mahdollisesti tyhjäksi jääneet paikat täytetään liputtomilla asiakkailla. Kannattaa tulla ajoissa paikalle, koska saliin ei pääse myöhässä.</p><p>Konsertin jälkeen on mahdollisuus lounaaseen, joka on katettu Ravintola Minne Gardenin remontista johtuen Minne Champagne & Wine-viinibaarin puolelle (Eteläesplanadi 14). Tilaa lounastarjoilu etuhintaan 13,50€ ennakkoon <u><a href=\"https://savoyteatteriravintolat.fi/tapahtumatarjoilut/lounaskonsertti-umo-helsinki-ensemble-tribuutti-chet-bakerille-3?step=products&time=0\">TÄÄLTÄ</a></u>.</p>", "sv": "<p>Önskerepris! Denna helhet spelades vid en lunchkonsert i februari 2024. Eftersom många då blev utan biljett, får vi nu höra samma konsert på nytt.</p><p>På denna lunchkonsert minns vi jazztrumpetaren och sångaren Chet Baker (Förenta staterna 1929–1988). Som trumpetist var Baker en stilbildare inom den coola jazzen på 1950-talets västkust. Hans sångstil företrädde den mjuka och intima crooner-stilen. Baker levde på bohemlivets mörkare sida, och dog före han hann fylla 60. På konserten får vi höra några av hans mest älskade klassiker, bland annat <i>My Funny Valentine</i> som blev hans signaturlåt.</p><p>“Chet Baker spelade trumpet som en dröm och sjöng mjukt som en stjärnklar natt.\"</p><p>UMO Helsinki Ensemble är en mindre ensemble ur UMO Helsinki Jazz Orchestras rader, vars musiker har en lång karriär bakom sig både med UMO och talrika egna projekt. Konsertprogrammet har planerats av trumpetisten Mikko Pettinen,som även leder ensemblen. På den här konserten får vi utöver Pettinens trumpetspel även höra hans talang som sångare.</p><p>Konsertens längd 1 h.</p><p>UMO Helsinki Ensemble – En hyllning till Chet Baker<br>Mikko Pettinen, trumpet, sång och bandledare<br>Mikko Mäkinen, saxofon<br>Mikko Mustonen, basun<br>Kirmo Lintinen, piano<br>Otso Huhtala, bas<br>Markus Ketola, trummor</p><p>OBS! Fri entré, men biljett krävs. Köp din biljett i förväg i Savoy-teaterns biljettkassa (0 €) eller i Lippu.fi-webbutiken (0 €). På Lippu.fi:s försäljningsställen är kostnaden 3 € / beställning, i R-kioskerna 3 € /beställning + 1 € /biljett. Max. 2 biljetter/bokning. Större gruppbokningar direkt från Savoy. Entré med förhandsbiljett fram till kl. 11.50. Därefter fylls eventuella tomma platser upp med personer som inte har biljett. Det att bra att komma god tid, man får inte komma in i salen om man är försenad.</p>", "en": "<p>Rerun! This concert was played at the lunchtime concert in February 2024. Since many were left without a ticket, the same concert will now be heard again.</p><p>In this lunchtime concert, UMO Helsinki Ensemble pays tribute to the trumpet legend and vocalist <b>Chet Baker</b> (USA 1929–1988).</p><p>As a trumpeter, Baker was a pioneer of West Coast cool jazz in the 1950s. His singing represented a soft and intimate crooner style. This concert features the most beloved classics of Baker, like My Funny Valentine, which has become his trademark. Baker died on the dark side of bohemian life under the age of 60.</p><p><i>\"Chet Baker played trumpet like a dream and sang softly like a starry night.\"</i></p><p>The <b>UMO Helsinki Ensemble</b> is a smaller musical group assembled from the UMO Helsinki Jazz Orchestra, whose musicians have a long career both in the ranks of the UMO and in numerous individual projects. The program for the concert was planned by trumpeter <b>Mikko Pettinen</b>, who leads the ensemble but also sings.</p><p>Duration 1 hour.</p><p><b>UMO Helsinki Ensemble – Tribute to Chet Baker</b><br>Mikko Pettinen, trumpet, vocals and lead <br>Mikko Mäkinen, sax <br>Mikko Mustonen, trombone <br>Kirmo Lintinen, piano<br>Otso Huhtala, bass<br>Markus Ketola, drums</p><p>Please note! The admission is free but it is recommendable to book a ticket in advance at the Savoy Theatre box office (0 €) or Lippu.fi webshop (0 €). At Lippu.fi stores commission is 3 € / order, at R-kioski 3 € / order + 1 € / ticket. Max. 2 tickets / booking. Larger group bookings directly from Savoy. Entry with an advance ticket until 11:50. After this, any empty seats will be filled with customers without tickets. Please arrive early for the doors will be closed once the concert has started.</p>" }, "name": { "fi": "UMO Helsinki Ensemble – Tribuutti Chet Bakerille – Lounaskonsertti - LOPPUUNVARATTU", "sv": "UMO Helsinki Ensemble – En hyllning till Chet Baker – Lunchkonsert", "en": "UMO Helsinki Ensemble – Tribute to Chet Baker – Lunchtime concert" }, "provider_contact_info": null, "location_extra_info": null, "provider": { "fi": "Savoy-teatteri & UMO Helsinki Jazz Orchestra", "sv": "Savoy-teatern & UMO Helsinki Jazz Orchestra", "en": "Savoy Theatre & UMO Helsinki Jazz Orchestra" }, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63893/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63581", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:33/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:351/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2625/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6529/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": false, "offer_price_groups": [], "info_url": { "fi": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia", "en": "https://nukketeatterisampo.fi/esityskalenteri/?performance=babygonia" }, "description": null, "price": { "fi": "15 €", "en": "15 €" } } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151472, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-17T11:13:41.195745Z", "last_modified_time": "2024-06-17T11:13:41.195762Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751692.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151472/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-06-17T11:13:41.161544Z", "last_modified_time": "2024-08-29T05:13:19.137167Z", "date_published": null, "start_time": "2024-08-28T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.", "en": "We invite babies from eight months to two and a half years old to arrive at a theatre." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/283F92309CDB61338CDD16B2CC35B6F0/SAMPO_Festivaali_Babygonia", "en": "http://www.annantalo.fi/en/events/event/283F92309CDB61338CDD16B2CC35B6F0/SAMPO_Festival_Babygonia" }, "description": { "fi": "<p>Babygonia on esitys, joka kutsuu vauvat (8 kk–2,5 v) teatteriin, aikuisväen seurassa.</p><p>Pienimmät saapuvat esitykseen kuin kuninkaalliset, vaunuissa seurueensa saattelemina. Teatteritilaa ei jaeta katsomoon ja näyttämöön, vaan vieras astuu sisään esityksen maailmaan. Esityksessä on lupa kulkea rohkeasti esityksen virran mukana tai sitä vastaan, voi katsella kuinka tila muuttuu, osallistua, tunnustella tai vain olla ja kuunnella ääniä ympärillään.</p><p>Vauvakatsoja on kuin pieni Buddha: hän ei tiedä sitä mitä aikuiset tietävät, mutta hän muistaa vielä sen, minkä aikuiset ovat unohtaneet. Hänellä on hämmästyttävä uteliaisuus kaikkea ympärillä olevaa kohtaan. Hän kyseenalaistaa ja tutkii jokaista pientä huomaamaansa asiaa jonka ja nauttii tutkimisen ja jakamisen prosessista.</p><p>Esityksessä syntyvät mikro- ja makrouniversumit muodostuvat erivärisistä, -kokoisista ja -tuntuisista objekteista. Esiintyjät luovat assosiatiivisia kuvia, sommitelmia, tunnelmia ja tapahtumia live-muusikon avustuksella. Jokainen Babygonia-näytös on ainutlaatuinen.</p><p><b>TYÖRYHMÄ</b><br>Esiintyjät: Anna Nekrassova ja Jenni Rutanen<br>Konsepti, ohjaus: Anna Ivanova<br>Visuaalisuus, tila ja objektit: Jenni Rutanen<br>Äänisuunnittelu, muusikko lavalla: Roosa Halme<br>Valosuunnittelu: Antton Kainulainen<br>Koreografia: Mantas Stabačinskas</p><p>Kesto: 30 min<br>Ikäsuositus: 8 kk – 2,5-v (aikuisten kanssa)<br>Kielet: sanaton</p><p>Lippuvaraukset: 020 735 2235, toimisto@nukketeatterisampo.fi<br>Lipputoimisto: Nukketeatteri Sampo, Erottajankatu 7, Helsinki.</p><p><b>SAMPO Festivaali</b> <br>Kansainvälinen nukketeatteritapahtuma SAMPO Festivaali toteutuu nyt jo kahdeksatta kertaa! Luvassa sanatonta nukketeatteria aikuisille ja lapsille, elävää musiikkia, vauvateatteria, sirkusta, absurdia minimalismia ja suuren näyttämön varjoteatteria.</p><p>Ohjelmassa on kotimaisia uutuuksia ja kansainvälisiä huippunimiä ensimmäistä kertaa Suomessa!<br> <br>Tutustu koko ohjelmaan: https://sampofestival.fi/</p>", "en": "<p>We invite babies from eight months to two and a half years old to arrive at a theatre.</p><p>They always come like royalty in carriages, accompanied by an adult retinue. And they enter the show as a river can be entered – they can bravely go with its flow or against it; they can watch how it flows; they can lie down and look into it, or just listen to the sound of water.</p><p>The theatre is not divided into an auditorium and a stage. The actors create a variety of images and compositions in space, where, if desired and ready, large and small spectators can enter. The audience chooses the degree of their participation and activity in the action organized by the actors.<br> <br>Baby spectator is a little Buddha: s/he does not know what adults do know. But s/he still remembers what grown-ups have forgotten. S/he has an amazing curiosity about everything around. S/he questions and explores every tiny thing s/he notices. S/he enjoys this devising process.</p><p>The performance is based on associative forms, shapes and tactile-sensory perception of space, in which micro- and macro-universes are formed, assembled from objects of different colors, sizes, textures and sounds (the visual story is accompanied by live music).</p><p>We borrow from little buddhas their method of communication with reality and we are using it as a professional approach in creating baby theatre.</p><p><b>WORKING GROUP</b><br>Performers: Anna Nekrassova and Jenni Rutanen<br>Concept, directing: Anna Ivanova<br>Visual realization, space and objects: Jenni Rutanen<br>Sound designer and musician on stage: Roosa Halme<br>Light designer: Antton Kainulainen<br>Movement designer: Mantas Stabačinskas</p><p>Duration: 30 minutes<br>Age recommendation: 8 months – 2,5 years old (with adults)<br>Language: Non-verbal</p><p>Reservations and inquires: phone 020 735 2235, email toimisto@nukketeatterisampo.fi</p><p>SAMPO Festival in Helsinki</p><p>The international puppet theatre event SAMPO Festival is coming for the eighth time! There will be nonverbal puppet theatre for adults and children, live music, circus, theatre for babies, absurd minimalism and shadow theatre of grand proportions!</p><p>New domestic performances and international top names for the first time in Finland!<br> <br>Check out the entire program: https://sampofestival.fi/en/</p>" }, "name": { "fi": "SAMPO Festivaali: Babygonia", "en": "SAMPO Festival: Babygonia" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63581/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64135", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151540, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T11:13:02.176434Z", "last_modified_time": "2024-06-26T11:13:02.176455Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_745185.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151540/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T11:13:02.145720Z", "last_modified_time": "2024-08-29T05:13:19.085805Z", "date_published": null, "start_time": "2024-08-28T07:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Konsertti on suunnattu lapsille sekä lapsenmielisille ja sisältää lastenmusiikkia, laulua, leikitystä ja valistusta.", "sv": "Konserten riktar sig till barn och personer med barnasinnet i behåll, och omfattar barnmusik, sång, lek och upplysning.", "en": "The concert is aimed at children and child-minded people; the set includes children's music, singing, playing and education." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/C4F32DB9ADDED7C223FC7CB8431823BB/Helsingin_Poliisisoittokunnan_lastenyhtye_Nallekopla", "sv": "http://www.espanlava.fi/sv/evenemang/event/C4F32DB9ADDED7C223FC7CB8431823BB/Helsingfors_polismusikkars_barnband_Nallekopla", "en": "http://www.espanlava.fi/en/events/event/C4F32DB9ADDED7C223FC7CB8431823BB/Children_s_Ensemble_Nallekopla_of_the_Helsinki_Police_Band" }, "description": { "fi": "<p>Konsertti on suunnattu lapsille sekä lapsenmielisille ja sisältää lastenmusiikkia, laulua, leikitystä ja valistusta.</p><p>Konsertissa vierailee myös Helsingin poliisileijona, jolta ei puutu vauhtia ja vaarattomia tilanteita.</p><p>Mukaan ovat tervetulleita päiväkotiryhmät, alakoululuokat ja toki kaikki muutkin lastenmusiikista ja hyvästä meiningistä nauttivat!</p><p>Konsertti on osa Suomen Kulttuurirahaston Uudenmaan rahaston tukemaa Meidän Uusimaa -konserttikokonaisuutta.</p>", "sv": "<p>Konserten riktar sig till barn och personer med barnasinnet i behåll, och omfattar barnmusik, sång, lek och upplysning.</p><p>Konserten besöks också av Helsingfors fartfyllda polislejon, som är välbekant med ofarliga situationer.</p><p>Dagisgrupper, grundskoleklasser och naturligtvis alla andra som tycker om barnmusik och gott humör är välkomna!</p><p>Konserten är en del av konserthelheten Meidän Uusimaa (Vårt Nyland) som stöds av Finska kulturfondens Nylandsfond.</p>", "en": "<p>The concert is aimed at children and child-minded people; the set includes children's music, singing, playing and education.</p><p>The concert will also be attended by the Helsinki Police Lion, who is not lacking in speed and danger-free situations.</p><p>Day-care groups, elementary school classes and, of course, everyone else who enjoys children's music and a good atmosphere is welcome!</p><p>The concert is part of the Meidän Uusimaa concert series supported by the Finnish Cultural Foundation’s Uusimaa Regional Fund.</p>" }, "name": { "fi": "Helsingin Poliisisoittokunnan lastenyhtye Nallekopla", "sv": "Helsingfors polismusikkårs barnband Nallekopla", "en": "Children's Ensemble Nallekopla of the Helsinki Police Band" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64135/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64134", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151539, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T10:13:04.544996Z", "last_modified_time": "2024-06-26T10:13:04.545013Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746696.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151539/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:04.530746Z", "last_modified_time": "2024-08-29T05:13:19.018043Z", "date_published": null, "start_time": "2024-08-27T14:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Komisarion Koirapartio johdattaa kuulijansa elämänmakuisiin tarinoihin kitaran ja synan maalatessa maisemaa.", "sv": "Komisarion Koirapartio leder sina lyssnare in i berättelser som smakar av livet, medan gitarren och synthen målar upp landskapet.", "en": "Komisarion Koirapartio leads its listeners to life-flavored stories while the guitar and synth paints the landscape." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/BB90DD7AEBC10F4468E44052DCA43258/Komisarion_Koirapartio", "sv": "http://www.espanlava.fi/sv/evenemang/event/BB90DD7AEBC10F4468E44052DCA43258/Komisarion_Koirapartio", "en": "http://www.espanlava.fi/en/events/event/BB90DD7AEBC10F4468E44052DCA43258/Komisarion_Koirapartio" }, "description": { "fi": "<p>Komisarion Koirapartio johdattaa kuulijansa elämänmakuisiin tarinoihin kitaran ja synan maalatessa maisemaa.</p><p>Yhtye tarjoilee melodista, popahtavaa uuden ajan suomirockia vahvoilla lauluilla ja stemmoilla. Komisarion Koirapartion kolmas pitkäsoitto julkaistiin keväällä 2023, jonka jälkeen yhtyeen on voinut spotata keikkalavoilta. Yhtye vaikuttaa pääkaupunkiseudulla ja työstää aktiivisesti uutta musiikkia.<br> <br>Komisarion Koirapartio on helsinkiläinen kokoonpano, joka syntyi kohtalokkaan karaokeillan tuloksena loppuvuodesta 2011. Laulaja löysi lauluntekijän (vai oliko se toisinpäin) ja yhdestä kertosäkeestä kasvoi usean albumin mittainen tarina. Löydä sinäkin suosikkisi tarinoiden joukosta!</p>", "sv": "<p>Komisarion Koirapartio leder sina lyssnare in i berättelser som smakar av livet, medan gitarren och synthen målar upp landskapet.</p><p>Bandet bjuder på melodisk, poppig och modern suomirock med starka låtar och stämmor. Komisarion Koirapartios tredje lp-skiva släpptes våren 2023, varefter bandet har skymtats på konsertscenerna. Bandet är verksamt i huvudstadsregionen och jobbar aktivt med ny musik.<br> <br>Komisarion Koirapartion är en helsingforsensemble som uppstod till följd av en ödesdiger karaokekväll i slutet av 2011. Sångaren hittade låtskrivaren (eller var det tvärtom) och en refräng växte till en berättelse som sträckte sig över flera album. Kom och hitta din favorit bland berättelserna!</p>", "en": "<p>Komisarion Koirapartio leads its listeners to life-flavored stories while the guitar and synth paints the landscape.</p><p>The band serves melodic, modern Finnish pop-rock music with strong vocals and harmonies. Komisarion Koirapartio's third full-length album was released in the spring of 2023 and since then the band has been spotted at live stages.</p><p>Komisarion Koirapartio was born as a result of a fateful karaoke night at 2011. A singer found a songwriter (or was it the other way around) and one chorus grew into a story spanning several albums. Find your favorite story among the many!</p>" }, "name": { "fi": "Komisarion Koirapartio – Open Stage", "sv": "Komisarion Koirapartio – Open Stage", "en": "Komisarion Koirapartio – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64134/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64133", "has_user_editable_resources": false, "location": null, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:48/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151548, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-06-26T13:12:51.396803Z", "last_modified_time": "2024-06-26T13:12:51.396826Z", "url": "http://www.espanlava.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_746695.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151548/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-06-26T10:13:04.425579Z", "last_modified_time": "2024-08-29T05:13:18.969826Z", "date_published": null, "start_time": "2024-08-27T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Noitaperho soittaa kansanmusiikilla ja progella maustettua folkrockia. Suomalaisen melankolian kanssa käsikynkässä tamppaavat Irlannin rantojen kaiho, Balkanin vuorten poljento ja Kalifornian hippikesä.", "sv": "Noitaperho spelar folkrock kryddad med folkmusik och prog. Hand i hand med finsk melankoli trampar längtan vid Irlands stränder, takten i Balkans berg och Kaliforniens hippiesommar.", "en": "Noitaperho performs folk rock seasoned with prog and folk music. Hand in hand with Finnish melancholy tread the longing of Ireland's shores, the beat of the Balkan mountains, and the summer of California's hippie era." }, "info_url": { "fi": "http://www.espanlava.fi/fi/tapahtumat/event/6625CF7C16AF2B725410D8AE73851C5A/Noitaperho", "sv": "http://www.espanlava.fi/sv/evenemang/event/6625CF7C16AF2B725410D8AE73851C5A/Noitaperho", "en": "http://www.espanlava.fi/en/events/event/6625CF7C16AF2B725410D8AE73851C5A/Noitaperho" }, "description": { "fi": "<p>Noitaperho soittaa kansanmusiikilla ja progella maustettua folkrockia. Suomalaisen melankolian kanssa käsikynkässä tamppaavat Irlannin rantojen kaiho, Balkanin vuorten poljento ja Kalifornian hippikesä.</p><p>Musiikkimatka Noitaperhon seurassa on vierailu ajan ja paikan tuolle puolen. Taikamaton nostavat ilmaan irlantilaisen bouzoukin ja avaraksi kaiutetun sähkökitaran vuoropuhelu, jonka selkärankana on rytmisektion perkussioiden ja basson hypnoottinen soitanta.</p><p>Vaikutteita Noitaperhon musiikissa voi kuulla idästä länteen, suomalaisesta pelimannimusiikista tuomiopäivän countryyn, vanhaan progeen, psykedeliaan ja kelttiläisestä folkista punkin rytkeeseen. Lopputuloksena on omaperäisellä tavalla orgaaninen äänimaailma, joka soljuu kuin puro tumman metsän sylissä kohti merta.</p><p><b>Soittajat:</b><br>Miikka Järvinen: bouzouki ja laulu<br>Tero Lappalainen: kitara<br>Jari Vanne: basso<br>Teppo Tolvanen: lyömäsoittimet</p>", "sv": "<p>Noitaperho spelar folkrock kryddad med folkmusik och prog. Hand i hand med finsk melankoli trampar längtan vid Irlands stränder, takten i Balkans berg och Kaliforniens hippiesommar.</p><p>En musikresa med Noitaperho är ett besök bortom tid och rum. En magisk matta lyfts av dialogen mellan den irländska bouzoukin och den vidgade elektriska gitarren, vars ryggrad är den hypnotiska spelningen av rytmsektionens slagverk och bas. Influenser i</p><p>Noitaperhos musik kan höras från öst till väst, från finsk spelmansmusik till domedagscountry, från gammal prog till psykedelia, och från keltisk folk till punkens rytm. Resultatet är ett på ett originellt sätt organiskt ljudlandskap, som flyter som en bäck i famnen av en mörk skog mot havet.</p><p><b>Musiker:</b><br>Miikka Järvinen: bouzouki och sång<br>Tero Lappalainen: gitarr<br>Jari Vanne: bas<br>Teppo Tolvanen: slaginstrument</p>", "en": "<p>Noitaperho performs folk rock seasoned with prog and folk music. Hand in hand with Finnish melancholy tread the longing of Ireland's shores, the beat of the Balkan mountains, and the summer of California's hippie era.</p><p>A musical journey with Noitaperho is a visit beyond time and place. A magic carpet is lifted by the dialogue between the Irish bouzouki and the echoed electric guitar, with a backbone formed by the hypnotic playing of the rhythm section's percussions and bass. Influences in</p><p>Noitaperho’s music can be heard from east to west, from Finnish folk music to doomsday country, from old prog to psychedelia, and from Celtic folk to the pulse of punk. The result is an uniquely organic soundscape that flows like a stream cradled by a dark forest towards the sea.</p><p><b>Musicians:</b><br>Miikka Järvinen: bouzouki and vocals<br>Tero Lappalainen: guitar<br>Jari Vanne: bass<br>Teppo Tolvanen: percussion instruments</p>" }, "name": { "fi": "Noitaperho – Open Stage", "sv": "Noitaperho – Open Stage", "en": "Noitaperho – Open Stage" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64133/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63386", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150626, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T15:13:07.733671Z", "last_modified_time": "2024-04-16T15:13:07.733686Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749090.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150626/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-16T15:13:07.720839Z", "last_modified_time": "2024-08-29T05:13:18.918482Z", "date_published": null, "start_time": "2024-08-27T07:40:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.", "en": "Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/CB3FF1DB8CA0FDF105922F5C836945E0/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/CB3FF1DB8CA0FDF105922F5C836945E0/Musikstund_pa_sommaren", "en": "http://www.annantalo.fi/en/events/event/CB3FF1DB8CA0FDF105922F5C836945E0/Music_playschool_in_summer_" }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin.</p><p>Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>", "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk.</p><p>Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>", "en": "<p>Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>" }, "name": { "fi": "Kesämuskari – Summer Music Play School", "sv": "Musikstund på sommaren", "en": "Music playschool in summer" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63386/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63385", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7254/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:46/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 150625, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-04-16T15:13:07.655997Z", "last_modified_time": "2024-04-16T15:13:07.656013Z", "url": "http://www.annantalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_749089.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150625/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-04-16T15:13:07.643172Z", "last_modified_time": "2024-08-29T05:13:18.863670Z", "date_published": null, "start_time": "2024-08-27T06:30:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.", "sv": "Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.", "en": "Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish." }, "info_url": { "fi": "http://www.annantalo.fi/fi/tapahtumat/event/B4A0D44A9B8C1BA7F07E5D1142E11173/Kesamuskari", "sv": "http://www.annantalo.fi/sv/evenemang/event/B4A0D44A9B8C1BA7F07E5D1142E11173/Musikstund_pa_sommaren", "en": "http://www.annantalo.fi/en/events/event/B4A0D44A9B8C1BA7F07E5D1142E11173/Music_playschool_in_summer_" }, "description": { "fi": "<p>Annantalon Kesämuskari kutsuu laulamaan, leikkimään ja loruttelemaan yhdessä muskariope Tuuli Paasolaisen kanssa.</p><p>Kesämuskari on suunnattu 0–7-vuotiaille, mutta koko perhe on tervetullut mukaan! Muskarit kestävät 40 minuuttia ja ne järjestetään A-lavalla Annantalon takapihalla.</p><p>Muskarit järjestetään suomeksi mutta osallistumiseen ei tarvita suomenkielen taitoa. Musiikki kantaa ja yhdistää kielestä riippumatta.</p><p>Huom! 4.6. sekä 18.6. muskarit järjestetään kahdella kielellä, suomeksi ja englanniksi.</p><p>A-lava on katettu, mutta kannattaa varautua sään mukaan. Katoksen sisällä on rajatusti istumapaikkoja, joten halutessasi voit ottaa mukaan istuinalustan tai viltin.</p><p>Mahdolliset viime hetken peruutukset ilmoitetaan Annantalon Facebook-sivulla.</p><p>Ei ennakkoilmoittautumista. Vapaa pääsy. <br>Lämpimästi tervetuloa!</p><p>Kieli: suomi <br>Ikäsuositus: 0–7-vuotiaat<br>Kesto: 40 min.</p>", "sv": "<p>Musikstund på sommaren i Annegården inbjuder att sjunga, leka, och rimma tillsammans med musikskolelärare Tuuli Paasolainen.</p><p>Musikstund på sommaren är riktad till 0–7-åringar, men hela familjen är välkommen med! Musikskolans längd är 40 minuter och den ordnas på A-scenen på Annegårdens bakgård.</p><p>På sommaren hålls musikstunder på finska, men det krävs inga kunskaper i finska för att delta. Musik bär och förenar oavsett språk.</p><p>Observera! Den 4.6. och 18.6. kommer sommarmusikskolor att hållas på två språk, finska och engelska.</p><p>A-scenen har ett skyddstak, men det är bra att förbereda sig enligt vädret. Antalet sittplatser innanför skyddstaket är begränsat, så om du vill kan du ta med dig ett sittunderlag eller en filt. Eventuella sista minutens avbokningar meddelas på Annegårdens Facebook-sida. Ingen förhandsanmälan.</p><p>Varmt välkommen! <br>Fritt inträde</p><p>Plats: Annegårdens bakgård, A-scenen.<br>Språk: finska <br>Åldersrekommendation: 0–7-åringar<br>Längd: 40 min.</p>", "en": "<p>Annantalo Art Centre’s music playschool in summer invites children to sing and play with music playschool teacher Tuuli Paasolainen. In Finnish.</p><p>The music playschool is intended for children aged 0–7, but is open for their whole family! Each session lasts 40 minutes and is held on the A stage in the Annantalo backyard.</p><p>The music playschools are held in Finnish but no Finnish language skills are required to participate. Music carries and unites regardless of language.</p><p>Note! On 4.6. and 18.6. the music playschools will be held in two languages, Finnish and English.</p><p>The A stage is covered, but dress for the weather. There is limited seating under the canopy, so bring a picnic pad or quilt. Last-minute cancellations are announced on the Annantalo Facebook page. No advance registration.</p><p>You’re warmly welcome! <br>Free admission</p><p>Location: Annantalo backyard, A stage.<br>Language: Finnish<br>Age recommendation: 0-7 years</p>" }, "name": { "fi": "Kesämuskari – Summer Music Play School", "sv": "Musikstund på sommaren", "en": "Music playschool in summer" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63385/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63481", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7255/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:354/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:41/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151618, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-03T13:13:19.526041Z", "last_modified_time": "2024-07-03T13:13:19.526059Z", "url": "http://www.kanneltalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_751046.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151618/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2433/?format=api" } ], "created_time": "2024-07-03T13:13:19.506665Z", "last_modified_time": "2024-08-29T05:13:18.812404Z", "date_published": null, "start_time": "2024-08-26T15:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!", "sv": "Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!", "en": "Nothing is more fun than singing – except for singing together!" }, "info_url": { "fi": "http://www.kanneltalo.fi/fi/tapahtumat/event/10C1ECB582FD3F3A1BD474A608E9DB58/Nyt_lauletaan_", "sv": "http://www.kanneltalo.fi/sv/evenemang/event/10C1ECB582FD3F3A1BD474A608E9DB58/Nu_sjunger_vi_", "en": "http://www.kanneltalo.fi/en/events/event/10C1ECB582FD3F3A1BD474A608E9DB58/Let_us_sing_" }, "description": { "fi": "<p>Mikään ei ole niin mukavaa kuin laulaminen – paitsi tietenkin yhdessä laulaminen!</p><p>Kanneltalon kahvilan yhteislauluilloissa on tunnelmaa ja yhteisöllisyyttä. Laulattajana toimii muusikko <b>Mari Kätkä.</b></p><p>Kesto: 1 t<br>Vapaa pääsy</p><p>Maksuttomat maanantait ovat sarja Kanneltalon maanantai-iltojen ilmaistapahtumia. Tapahtumien joukkoon mahtuu keikkoja, kirjailijavierailuja, elokuvia ja yhteislauluiltoja. Nimensä mukaisesti kaikille avoimiin Maksuttomat maanantait -tapahtumiin ei ole pääsymaksua. Käynnistä viikkosi kulttuurilla Kanneltalossa!</p>", "sv": "<p>Inget är lika roligt som att sjunga – förutom att sjunga tillsammans förstås!</p><p>Allsångskvällarna på Gamlasgårdens kafé är fyllda med stämning och gemenskap. <b>Mari Kätkä</b> leder allsången.</p><p>Längd: 1 timme</p><p>Kostnadsfria måndagar är en serie gratisevenemang i Gamlasgården på måndagskvällar. Evenemangen omfattar spelningar, författarbesök, filmer och allsångskvällar. Såsom namnet anger, är inträdet till Kostnadsfria måndagar-evenemang, som är öppna för alla, kostnadsfritt. Starta din vecka med kultur i Gamlasgården!</p>", "en": "<p>Nothing is more fun than singing – except for singing together!</p><p>Nothing is more fun than singing – except for singing together!</p><p>Come and enjoy the wonderful atmosphere and sense of community at the singalong events at Kanneltalo café. The singing is led by <b>Mari Kätkä.</b></p><p>Duration: 1 hour</p><p>Free Mondays is a series of Monday-night free events at Kanneltalo. The events include gigs, author visits, films and sing-alongs. As the name suggests, no admission fee is collected for Free Mondays’ events that are open to all. Start your week with a dose of culture at Kanneltalo!</p>" }, "name": { "fi": "Nyt lauletaan! – Maksuttomat maanantait", "sv": "Nu sjunger vi! – Kostnadsfria måndagar", "en": "Let us sing! – Free Mondays" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63481/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:64150", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7259/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:105/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:348/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:44/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1278/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "registration": null, "super_event": null, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151591, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-07-01T13:12:57.344382Z", "last_modified_time": "2024-07-01T13:12:57.344396Z", "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_755942.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151591/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api" } ], "created_time": "2024-07-01T13:12:57.308873Z", "last_modified_time": "2024-08-29T05:13:18.732067Z", "date_published": null, "start_time": "2024-08-24T13:00:00Z", "end_time": null, "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Lastenkonsertti Indaba on lämminhenkinen ja energinen show, jossa esiintyjät ja yleisö kohtaavat. Esityksessä lauluun yhdistyvät improvisaatio, perkussiogroovet sekä freestyle-tanssi.", "sv": "INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities.", "en": "INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities." }, "info_url": { "fi": "http://www.stoa.fi/fi/tapahtumat/event/5626CEB9C780CF739CAE9122D810FE80/Kolibr_Festivaali_INDABA", "sv": "http://www.stoa.fi/sv/evenemang/event/5626CEB9C780CF739CAE9122D810FE80/Kolibr_Festivaali_INDABA", "en": "http://www.stoa.fi/en/events/event/5626CEB9C780CF739CAE9122D810FE80/Kolibr_Festivaali_INDABA" }, "description": { "fi": "<p>Lastenkonsertti Indaba on lämminhenkinen ja energinen show, jossa esiintyjät ja yleisö kohtaavat. Esityksessä lauluun yhdistyvät improvisaatio, perkussiogroovet sekä freestyle-tanssi.</p><p>Rytmeissä kuullaan vaikutteita tansanialaisesta perinnemusiikista sekä modernista eteläafrikkalaisesta house-musiikista.</p><p>Konsertissa pureudutaan kysymyksiin identiteetistä. Miten yhteen ihmiseen mahtuu monta identiteettiä? Entä kuka saa kertoa ihmisen tarinan? Esityksen kantava ajatus on, että paras tietäjä ja tarinankertoja on ihminen itse.</p><p>Konsertti rohkaisee lempeästi jokaista kertomaan oman tarinansa haluamallaan tavalla.</p><p>Indaba-lastenkonsertissa on kyse nähdyksi ja kuulluksi tulemisesta – ja samalla toisten näkemisestä ja kuuntelemisesta.<br>Indaba tarkoittaa zulun kielellä kokoontumista, jossa ihmiset päättävät heitä itseään koskevista asioista. Sana on vakiintunut osaksi myös muita eteläafrikkalaisia kieliä.</p><p>Indabassa esiintyvät muusikko Ayla Brinkmann (FIN/RSA), multi-instrumentalisti Kasheshi Makena (TZA/FIN) sekä tanssija ja dj Pietari Kauppinen (FIN/ETH). Esiintyjiä yhdistää suomalaisafrikkalainen tausta sekä intohimo tehdä kiinnostavaa ja ajankohtaista lastenkulttuuria.</p><p>Esityksessä käytetään ainakin suomen, englannin sekä swahilin kieltä.</p><p><u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p><p>Instagram: @kolibrifestivaali</p>", "sv": "<p>INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities.</p><p>Derived from the isiZulu word for a meeting or a meaningful discussion, INDABA invites you to experience a vibrant merge of bamboo flute grooves, Tanzanian rhythms and a taste of South African amapiano and solos on voice, trombone, flutes, timbila, percussion, storytelling and dance. The performers speak and sing in Finnish, English, Kiswahili and Kisumbwa.</p><p>Let’s have an indaba!</p><p>Kolibrí Festivaali (LINK www.kolibrifestivaali.org) celebrates the Opening of its 13th edition at STOA, with the warm-hearted children's performance INDABA. This is a free activity for all ages to discover the spirit of this unique, multicultural, open art festival for children and their families. This is a Kulttuurikeskus NINHO ry production.</p><p><u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p><p>Instagram: @kolibrifestivaali</p>", "en": "<p>INDABA, performed by Ayla Brinkmann, Kasheshi Makena and Pietari Kauppinen, explores the rich tapestry of Afro-Finnish identities.</p><p>How does it feel to be Finnish, African, or both? Who tells our stories best?</p><p>Derived from the isiZulu word for a meeting or a meaningful discussion, INDABA invites you to experience a vibrant merge of bamboo flute grooves, Tanzanian rhythms and a taste of South African amapiano and solos on voice, trombone, flutes, timbila, percussion, storytelling and dance. The performers speak and sing in Finnish, English, Kiswahili and Kisumbwa.</p><p>Let’s have an indaba!</p><p>Kolibrí Festivaali celebrates the Opening of its 13th edition at STOA, with the warm-hearted children's performance INDABA. This is a free activity for all ages to discover the spirit of this unique, multicultural, open art festival for children and their families. This is a Kulttuurikeskus NINHO ry production.</p><p><u><a href=\"https://www.kolibrifestivaali.org/\">Kolibrifestivaali.org</a></u></p><p>Instagram: @kolibrifestivaali</p>" }, "name": { "fi": "Kolibrí Festivaali: INDABA", "sv": "Kolibrí Festivaali: INDABA", "en": "Kolibrí Festivaali: INDABA" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64150/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" }, { "id": "kulke:63886", "has_user_editable_resources": false, "location": { "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:8740/?format=api" }, "keywords": [ { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:31/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:42/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:53/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:54/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:55/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:755/?format=api" }, { "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p29865/?format=api" } ], "registration": null, "super_event": { "@id": "https://linkedevents.api.test.hel.ninja/v1/event/linkedevents:agg-74/?format=api" }, "event_status": "EventRescheduled", "type_id": "General", "external_links": [], "offers": [ { "is_free": true, "offer_price_groups": [], "info_url": null, "description": null, "price": null } ], "data_source": "kulke", "publisher": "ahjo:u48040010", "sub_events": [], "images": [ { "id": 151287, "has_user_editable_resources": false, "license": "event_only", "license_url": "", "created_time": "2024-05-23T12:13:00.894369Z", "last_modified_time": "2024-05-23T12:13:00.894388Z", "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_744939.jpg", "name": "", "cropping": "", "photographer_name": null, "alt_text": null, "data_source": "kulke", "publisher": "ahjo:u48040010", "@id": "https://linkedevents.api.test.hel.ninja/v1/image/151287/?format=api", "@context": "http://schema.org", "@type": "ImageObject" } ], "videos": [], "in_language": [], "audience": [], "created_time": "2024-05-23T12:13:00.870539Z", "last_modified_time": "2024-08-29T05:13:18.669045Z", "date_published": null, "start_time": "2024-08-24T09:00:00Z", "end_time": "2024-08-24T17:00:00Z", "custom_data": null, "environmental_certificate": null, "environment": null, "audience_min_age": null, "audience_max_age": null, "super_event_type": null, "deleted": false, "maximum_attendee_capacity": null, "minimum_attendee_capacity": null, "enrolment_start_time": null, "enrolment_end_time": null, "local": false, "replaced_by": null, "short_description": { "fi": "Juhlaviikonlopun lauantai on täynnä rytmiä riemukkaan Faso Kanin sekä psykedeelisen Honey B. & T-Bonesin myötä.", "sv": "Honey B & T-Bones som räknas bland den finländska rytmmusikens kultensembler bjuder på garanterad kvalitet på Malms 30-årsfest!", "en": "Saturday on the anniversary weekend is filled with rhythm with jubilant Faso Kan and psychedelic Honey B & T-bones." }, "info_url": { "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/F3D55D7062E61237C85726AEC8B7BE6D/Malmitalo_30_vuotta_Faso_Kan_Honey_B_T-bones_ja_kaiken_maailman_kulttuuria", "sv": "http://www.malmitalo.fi/sv/evenemang/event/F3D55D7062E61237C85726AEC8B7BE6D/Malms_kulturhus_30_ar_Faso_Kan_Honey_B_T-bones_och_all_varldens_kultur", "en": "http://www.malmitalo.fi/en/events/event/F3D55D7062E61237C85726AEC8B7BE6D/Malmitalo_30th_Anniversary_Faso_Kan_Honey_B_T-bones_and_all_sorts_of_world_culture" }, "description": { "fi": "<p>Juhlaviikonlopun lauantai on täynnä rytmiä riemukkaan Faso Kanin sekä psykedeelisen Honey B. & T-Bonesin myötä.</p><p>Tule mukaan tanssahtelemaan saippuakuplien siivittämänä, tutustumaan työpajoihin ja todellakin tutustumaan kaiken maailman kulttuuriin!</p><p>Päivän aikana myös kuvataide-, djembe- ja tanssityöpajoja sekä tanssikoulu Hilpeiden Helmojen tanssiesitys. Jos rakkaan kaupunginosamme historia kiinnostaa, tervetuloa mukaan kuulemaan siitä lisää yhteisellä kävelykierroksella.</p><p><b>Ohjelma:</p><p>klo 12–14.15<br>Kuviskoulun Kuviot ja kuosit! -työpaja</b><br>Yhteisöllistä kuvataidetta kesään: matkaa muotojen ja kuosien maailmaan! Työpajassa suunnittelemme värikkäitä kuoseja ja maalaamme niitä pitkälle rullapaperille yhteisöllisissä tunnelmissa. Sateen sattuessa toteutamme työpajan sisätiloissa.</p><p>Työpajan ohjaavat Pohjois-Helsingin kuvataidekoulun opettajat Elina Gyldén ja Aleksi Marjamaa.</p><p>Paikka: Työpaja-alue<br>Kieli: suomi</p><p><b>klo 13–16<br>Kupla Kopla</b><br>Tehdään yhdessä pieniä ja suuria saippuakuplia! Kuplakopla luo maagista ja leikkisää tunnelmaa sekä lapsille että aikuisille.</p><p>Kupla Kopla on performanssiryhmä, joka koostuu ammattiesiintyjistä ja tanssijoista eri puolilta Suomea. <br>Kupla Koplan ensisijainen tarkoitus on tuoda ihmisille iloa sekä jättimäisten ja runsautta henkivien saippuakuplien että värikkäiden asujen ja lähestyttävien hahmojen kautta.</p><p>Kuplakopla luo osallistavaa ja yhteisöllistä tunnelmaa missä tahansa liikkuukin ja antaa mahdollisuuden kokeilla saippuakuplien ja jättikuplien tekemistä.</p><p><b>klo 14–15<br>Faso Kan</b><br>Faso Kan esittää Länsi-Afrikan rikkaasta musiikkiperinteestä ponnistavaa melodista ja vauhdikasta musiikkia, joka ei jätä yhtäkään yleisöä kylmäksi. Lavalla yhtye antaa soiton, tanssin ja laulun ilon näkyä!</p><p>Faso Kan –yhtyeen ohjelma käsittelee musiikin välityksellä ympäristön ja yhteisön hyvinvoinnin teemoja. Aurinkoinen esitys soi ystävyyden ja rauhan hengessä ja välittää kuulijoille positiivista energiaa.</p><p>Yhtyeen perinteiset länsiafrikkalaiset soittimet on valmistettu puusta ja luonnonmateriaaleista ja niiden syvä soundi antaa äänen metsälle. Ilmastokriisi koskettaa koko maailmaa ja metsät voivat toimia tärkeänä osana sen ratkaisemista.</p><p><b>klo 15–16<br>Faso Kan rumpu- & tanssityöpaja</b><br>Kokeile djemberummun soittoa ja afrikkalaista tanssia Faso Kan muusikoiden johdolla.</p><p>Soitamme, tanssimme ja laulamme länsiafrikkalaisia rytmejä ja pidämme hauskaa yhdessä. Tule uuden rentouttavan harrastuksen pariin!</p><p>Työpajaan osallistuminen ei vaadi aikaisempaa kokemusta tai omaa soitinta. Osallistujamäärä maksimissaan 20 henkilöä.</p><p>Paikka: Konttilavan edusta</p><p><b>klo 16–16:30<br>Tanssiesitys Ay romale</b><br>Tanssiryhmä Ay romale tulkitsee romanimusiikkia leveiden hameenhelmojen ja huivien pyörteissä.</p><p>Juurevien rytmien kiihtyvässä tempossa romanitanssi ilmaisee laajaa tunneskaalaa: voimaa, herkkyyttä, melankoliaa, ystävyyttä ja etenkin elämäniloa. Ay romale on toiminut Helsingissä lähes 10 vuotta tanssinopettaja Anita Kurvisen ohjauksessa.</p><p>Kurvisen lisäksi ryhmässä tanssii Silja Koivisto, Olga Kemppinen, Marjo Kopra, Milla Laaksonen, Linda Lemmetty, Lina Machmouchi sekä Lotta Ora.</p><p>Paikka: Konttilavan edusta</p><p><b>klo 17–18<br>Honey B & T-Bones</b><br>Suomalaisen rytmimusiikin kulttikokoonpanoihin lukeutuva Honey B & T-Bones tarjoaa taattua laatua Malmin 30-vuotisjuhlassa!<br>Yhtye on tunnettu korkeatasoisesta soitannasta ja yllättävyydestä. Soundissa psykedeeliset värit tyrskyävät yhteen bluesin, funkin ja popin kanssa. Tuloksena on persoonallista ja tässä ajassa elävää musiikkia, joka saa kuulijankin jammailemaan mukana.</p><p>Bändin jäsenet:<br>Aija Puurtinen: laulu, kosketinsoittimet ja basso <br>Esa Kuloniemi: kitarat ja laulu<br>Mooses Kuloniemi: rummut ja laulu<br>Pekka Rajamäki: basso, kakkoskitara ja laulu</p>", "sv": "<p>Honey B & T-Bones som räknas bland den finländska rytmmusikens kultensembler bjuder på garanterad kvalitet på Malms 30-årsfest!</p><p>Kom med och få fart på dansen av såpbubblor, ta del av workshoppar och bekanta sig med all världens kultur! Under dagen ordnas även workshoppar i bildkonst, djembe och dans samt dansskolan Hilpeät Helmats dansuppvisning. Om du är intresserad av historian för vår kära stadsdel, välkommen med och höra mer om den på en gemensam promenadrunda.</p><p><b>kl. 12–14.15<br>Bildkonstskolans workshop Figurer och mönster!</b><br>Samhällelig bildkonst på sommaren: vi reser in i formernas och mönstrens värld! I workshoppen planerar vi färggranna mönster och målar dem på långa rullpapper i gemenskaplig stämning. Vid regn genomför vi workshoppen inomhus.</p><p>Workshoppen dras av Elina Gyldén och Aleksi Marjamaa som är lärare vid Pohjois-Helsingin kuvataidekoulu.</p><p>Språk: finska</p><p><b>kl. 14–15<br>Faso Kan</b><br>Faso Kan framför melodisk och fartfylld musik med rötterna i Västafrikas rika musiktradition, som inte lämnar en enda publik kall. På scenen låter bandet musiken, dansen och glädjen synas!<br>Faso Kan-bandets program behandlar miljön och samhällets välmående via musiken. Det soliga framträdandet klingar i vänskapens och fredens anda och förmedlar positiv energi till åhörarna.</p><p>Bandets traditionella västafrikanska instrument har tillverkats av trä och naturmaterial och deras djupa sound ger ljud åt skogen. Klimatkrisen påverkar hela världen och skogarna kan vara en viktig del av lösningen på den.</p><p><b>kl. 15–16<br>Faso Kan trum- & dansworkshop</b><br>Pröva på att spela djembetrumma och afrikansk dans med ledning av musikerna i Faso Kan.</p><p>Vi spelar, dansar och sjunger västafrikanska rytmer och har roligt tillsammans. Var med om en ny avslappnande hobby!</p><p>Deltagande i workshoppen kräver ingen<br>tidigare erfarenhet eller eget instrument. Deltagarantal max. 20 personer.</p><p><b<kl. 16–16.30<br>Dansföreställning Ay romale</b><br>Dansgruppen Ay romale tolkar rommusik i de vida kjolfållarnas och scarfarnas virvlar.</p><p>I ett ökande rotfast tempo uttrycker romdansen ett brett känsloregister: styrka, känslighet, melankoli, vänskap och framför allt livsglädje. Ay romale har fungerat nästan 10 år i Helsingfors under ledning av danslärare Anita Kurvinen.</p><p>Utöver Kurvinen består gruppen av Silja Koivisto, Olga Kemppinen, Marjo Kopra, Milla Laaksonen, Linda Lemmetty, Lina Machmouchi samt Lotta Ora.</p><p><b>kl. 17–18<br>Honey B & T-Bones</b><br>Honey B & T-Bones som räknas bland den finländska rytmmusikens kultensembler bjuder på garanterad kvalitet på Malms 30-årsfest!</p><p>Banden är känt för högklassig musik och överraskningar. I soundet forsar psykedeliska färger ihop med blues, funk och pop. Resultatet är personlig och samtida musik som även får åhöraren att jamma med.</p><p>Honey B & T-Bones framträder i dag som en kvartett.<br>Bandets medlemmar:<br>Aija Puurtinen: sång, keyboard och bas <br>Esa Kuloniemi: gitarr och sång<br>Mooses Kuloniemi: trummor och sång<br>Pekka Rajamäki: bas, andra gitarr och sång</p>", "en": "<p>Saturday on the anniversary weekend is filled with rhythm with jubilant Faso Kan and psychedelic Honey B & T-bones.</p><p>Join us and dance among the soap bubbles, tour the workshops and truly get to know lots of different world cultures! We will also holding visual arts, djembe and dance workshops as well as a dance show by dance school Hilpeät Helmat. If you’re interested in our district’s history, join the common walking tour to hear more.</p><p><b>12 noon to 2:15 pm<br>Art School’s Patterns and Designs! workshop</b></p><p>Visual community art for the summer: take a trip into the world of patterns and designs! At this workshop, we will be designing colourful patterns and painting them on long rolls of paper with everyone. The workshop will move indoors if it rains.</p><p>The workshop instructors are Art School of Northern Helsinki teachers Elina Gyldén and Aleksi Marjamaa.<br>Language: Finnish</p><p><b>2 pm to 3 pm<br>Faso Kan</b><br>Faso Kan performs melodic and upbeat music that draws on West African tradition that will not disappoint any audience. On stage, the group lets loose with the joy of music, dance, and singing!</p><p>Faso Kan’s musical programme focuses on the themes of community and environmental wellbeing. Their bright performance conveys a sense of friendship and peace, along with positive energy for the audience.</p><p>The group’s traditional West African instruments are made from wood and natural materials, and their deep sound evokes the sounds of a forest. The climate crisis impacts our whole planet, and the forests could be an important part of the solution.</p><p><b>3 pm to 4 pm<br>Faso Kan drum and dance workshop</b><br>Try out a djembe drum and African dances with the help of Faso Kan’s musicians.</p><p>We can play, dance and sing West African rhythms and have fun together. Come and discover a new, relaxing hobby!</p><p>You do not need prior experience or your own instruments to join. Maximum number of participants: 20 persons.</p><p><b>4 pm to 4:30 pm<br>Dance show Ay romale</b><br>Dance group Ay romale presents Roma music, with wide spinning hems and large scarves.</p><p>With an accelerating tempo of sturdy rhythms, Roma dances express a wide range of emotions. power, sensibility, melancholy, friendship, and the joy of living. Ay romale have been active in Helsinki for almost a decade under dance teacher Anita Kurvinen.</p><p>In addition to Kurvinen, the group’s performers include Silja Koivisto, Olga Kemppinen, Marjo Kopra, Milla Laaksonen, Linda Lemmetty, Lina Machmouchi and Lotta Ora.</p><p><b>5 pm to 6 pm<br>Honey B & T-Bones</b><br>Honey B & T-Bones, a staple cult classic of Finnish rhythm music bring their familiar performance to the Malmitalo 30th anniversary!</p><p>The band is known for its high-quality musicianship and surprises on stage. Their sound is mix of psychedelic colours, blues, funk and pop. What this turns into is a very characteristic and current style of music that gets listeners to feel the rhythm. <br>Currently, Honey B & T-Bones performs as a quartet.</p><p>Band members:<br>Aija Puurtinen: vocals, keyboard, bass <br>Esa Kuloniemi: guitar, vocals<br>Mooses Kuloniemi: drums, vocals<br>Pekka Rajamäki: bass, rhythm guitar, vocals</p>" }, "name": { "fi": "Malmitalo 30 vuotta: Faso Kan, Honey B & T-bones ja kaiken maailman kulttuuria – Malmin tapahtumakesä", "sv": "Malms kulturhus 30 år: Faso Kan, Honey B & T-bones och all världens kultur – Malms evenemangssommar", "en": "Malmitalo 30th Anniversary: Faso Kan, Honey B & T-bones and all sorts of world culture – Malmi Summer of Events" }, "provider_contact_info": null, "location_extra_info": null, "provider": null, "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:63886/?format=api", "@context": "http://schema.org", "@type": "Event/LinkedEvent" } ] }