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

See the result

event/?local_ongoing_OR_set1=lapsi,musiikki&local_ongoing_OR_set2=leiri,kurssi

See the result

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

See the result

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

See the result

Internet based

Filter for all the events that happen in the internet, both past and upcoming.

Example:

event/?internet_based=true

See the result

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

See the result

event/?start=now&end=today

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?keyword_OR_set1=yso:p1235,yso:p1947&keyword_OR_set2=yso:p14004,yso:p11185

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

event/?suitable_for=12,14

See the result

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

See the result

event/?publisher_ancestor=ahjo:00001

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Event with registration

To find out events with or without a registration, use the query parameterregistration.

Example:

event/?registration=true

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

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

See the result

Only editable events for registration

registration_admin_user parameter displays all events whose registration the user can modify

Example:

event/?registration_admin_user=true

See the result

Events created by the user

created_by parameter only displays events by the authenticated user

Example:

event/?created_by=true

See the result

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

See the result

Ordering

Default ordering is descending order by -last_modified_time. 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

See the result

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&hide_recurring_children=true&page=114
HTTP 200 OK
Allow: GET, POST, PUT, PATCH, HEAD, OPTIONS
Content-Type: application/json ;utf-8
Vary: Accept

{
    "meta": {
        "count": 19453,
        "next": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=115",
        "previous": "https://linkedevents.api.test.hel.ninja/v1/event/?format=api&hide_recurring_children=true&page=113"
    },
    "data": [
        {
            "id": "kulke:64733",
            "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:348/?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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/antti-autio-yksin-konserttisalikiertue-malmitalo-19324313/",
                        "sv": "https://www.lippu.fi/event/antti-autio-yksin-konserttisalikiertue-malmitalo-19324313/",
                        "en": "https://www.lippu.fi/event/antti-autio-yksin-konserttisalikiertue-malmitalo-19324313/"
                    },
                    "price": {
                        "fi": "34,90 €",
                        "sv": "34,90 €",
                        "en": "34,90 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 152853,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-10-22T12:15:18.980407Z",
                    "last_modified_time": "2024-10-22T12:15:18.980421Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759428.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/152853/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-10-22T12:15:18.956468Z",
            "last_modified_time": "2025-01-15T13:15:32.222200Z",
            "date_published": null,
            "start_time": "2025-03-28T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Antti Aution Yksin-konserttisalikiertueesta saadaan nauttia myös Malmitalossa.",
                "sv": "Publiken får njuta av Antti Autios konsertsalturné Yksin även i Malms kulturhus.",
                "en": "Antti Autio’s Yksin concert hall tour will also arrive at Malmitalo!"
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/146E8B44381F15018219F8974EEC30B5/LOPPUUNMYYTY_Antti_Autio_Yksin",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/146E8B44381F15018219F8974EEC30B5/SLUTSALD_Antti_Autio_Yksin_",
                "en": "http://www.malmitalo.fi/en/events/event/146E8B44381F15018219F8974EEC30B5/SOLD_OUT_Antti_Autio_Yksin"
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Antti Autio: Yksin – konserttisalikiertue",
                "sv": "SLUTSÅLD Antti Autio: Yksin – konsertsalturné",
                "en": "SOLD OUT Antti Autio: Yksin – concert hall tour"
            },
            "description": {
                "fi": "<p>Antti Aution Yksin-konserttisalikiertueesta saadaan nauttia myös Malmitalossa.</p><p>Luvassa on rakastetun lauluntekijän musiikkia niin kuin se on sävelletty, yksin kitaralla säestäen.</p><p>Suomen rakastetuimpiin uuden polven laulaja-lauluntekijöihin kuuluva Antti Autio suuntaa alkuvuodesta 2025 Yksin-konserttisalikiertueelle.</p><p>Helmikuussa neljännen albuminsa “Täällä sinua kaivataan” julkaissut artisti esiintyy 11 keikkaa kattavalla kiertueella intiimisti soolona. Luvassa on kappaleita lauluntekijän koko uran varrelta niin kuin ne ovat saaneet alkunsa, yksin kitaralla säestäen.</p><p>\"Kaikki mun biisit on tehty kitaran kanssa, joten esitän kappaleita niin kuin ne ovat syntyneet. Jokainen konsertti tulee olemaan ainutlaatuinen. Soolona esiintyessä keikan dramaturgia syntyy aina hetkessä, ilman varsinaisia settilistoja, mikä on kiehtovaa ja jännittävää. Nautin siitä, kun ihmiset voivat esittää myös omia toiveitaan keikkojen aikana”, Autio kertoo kiertueesta.</p><p>Vuonna 2017 debyyttialbuminsa julkaisseen Aution voimakkaat ja vilpittömät kappaleet kaipuusta ja rakkaudesta ovat lumonneet sekä kuulijat että kriitikot ympäri Suomen. Autiolla on hurmaava taito onnistua maalaamaan esiin kuulijoiden tunteita hienovaraisen lohdullisesti. Pehmeyden ja tunnelmallisuuden sidosaineena toimii häkellyttävä intensiivisen rohkea voima ja etenkin lyyrinen ilmaisu on täynnä painavaa kuultavaa.</p><p>Kesto 1 h 40 min (sis. väliajan)<br>Liput: 34,90 €</p>",
                "sv": "<p>Publiken får njuta av Antti Autios konsertsalturné Yksin även i Malms kulturhus.</p><p>Den älskade låtskrivarens musik spelas såsom den är komponerad, ackompanjerad endast på gitarr.</p><p>Antti Autio, en av Finlands mest älskade sångare-låtskrivare som hör till den nya generationen, uppträder på konsertsalturnén Yksin i början av 2025. Artisten, som gav ut sitt fjärde album ”Täällä sinua kaivataan” i februari, uppträder intimt solo på turnén som omfattar 11 konserter. På konserterna hörs låtar från sångare-låtskrivarens hela karriär såsom de har kommit till, ackompanjerade endast på gitarr.</p><p>”Jag har komponerat alla mina låtar på gitarr, så jag spelar låtarna såsom de har kommit till. Varje konsert kommer att vara unik. När man uppträder solo, uppstår konsertens dramaturgi alltid i ett ögonblick, utan egentliga setlistor, vilket är fascinerande och spännande. Jag njuter av när publiken också kan framföra sina egna önskemål under konserterna”, berättar Autio om turnén.</p><p>Autio, som gav ut sitt debutalbum 2017, har förtjust både lyssnare och kritiker runtom i Finland med sina kraftfulla och uppriktiga låtar om längtan och kärlek. Autio har en charmig förmåga att måla fram sina lyssnares känslor på ett lyhört och trösterikt sätt. En häpnadsväckande intensivt modig kraft och i synnerhet en lyrisk uttrycksform binder mjukheten och stämningsfullheten och är fyllda av betydelse.</p><p>Längd 1 h 40 min (inkl. paus)</p>",
                "en": "<p>Antti Autio’s Yksin concert hall tour will also arrive at Malmitalo!</p><p>The music of the beloved songwriter as it was composed, just a man and his guitar.</p><p>Antti Autio, one of Finland’s most beloved next generation singer-songwriters, will start his Yksin (Alone) concert hall tour in early 2025. The artist, who released his fourth album Here You Are Missed last February, will do a solo tour of eleven concerts covering songs spanning his entire career as the were originally composed, just for him and his guitar.</p><p>‘I have written all my songs with a guitar, and I’ll play them as they were created. Every concert will be unique. When you perform alone, the dramaturgy is created in the moment, without any set lists, which is fascinating and exciting. I enjoy it when people can also express their wishes during the concert,’ Autio explains his tour.</p><p>The powerful and sincere songs about longing and love by Autio, who released his debut album in 2017, have charmed both listeners and critics all over Finland. Autio is charmingly skilful and able to paint out the emotions of the listeners with subtle comfort. His softness and moodiness are bound together by his overwhelming, intense strength: his lyrical expression in particular is a powerful experience.</p><p>Duration 1h 40min (incl. an interval)</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64733/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64826",
            "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": null,
            "event_status": "EventRescheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": false,
                    "offer_price_groups": [],
                    "info_url": {
                        "fi": "https://www.lippu.fi/event/litku-klemetti-malmitalo-19319746/",
                        "sv": "https://www.lippu.fi/event/litku-klemetti-malmitalo-19319746/",
                        "en": "https://www.lippu.fi/event/litku-klemetti-malmitalo-19319746/"
                    },
                    "price": {
                        "fi": "20 € / 15 €",
                        "sv": "20 € / 15 €",
                        "en": "20 € / 15 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153065,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-11-21T09:14:14.193411Z",
                    "last_modified_time": "2024-11-21T09:14:14.193426Z",
                    "name": "",
                    "url": "http://www.malmitalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_760345.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153065/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-11-21T09:14:14.142459Z",
            "last_modified_time": "2025-01-15T13:15:26.528012Z",
            "date_published": null,
            "start_time": "2025-02-28T17: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Litku Klemetti on lauluntekijä Sanna Klemetin rohkea alter ego, sekä 2015 perustettu ja kahdesti Emma-palkittu yhtye."
            },
            "info_url": {
                "fi": "http://www.malmitalo.fi/fi/tapahtumat/event/0D673D965C1160B5CC8A19517F9D923E/LOPPUUNMYYTY_Litku_Klemetti_",
                "sv": "http://www.malmitalo.fi/sv/evenemang/event/0D673D965C1160B5CC8A19517F9D923E/SLUTSALD_Litku_Klemetti_FULLBOKAT_",
                "en": "http://www.malmitalo.fi/en/events/event/0D673D965C1160B5CC8A19517F9D923E/SOLD_OUT_Litku_Klemetti"
            },
            "location_extra_info": null,
            "name": {
                "fi": "LOPPUUNMYYTY Litku Klemetti – A la Malmi",
                "sv": "SLUTSÅLD Litku Klemetti (FULLBOKAT)",
                "en": "SOLD OUT Litku Klemetti"
            },
            "description": {
                "fi": "<p>Litku Klemetti on lauluntekijä Sanna Klemetin rohkea alter ego, sekä 2015 perustettu ja kahdesti Emma-palkittu yhtye.</p><p>Litku Klemetti teki läpimurtonsa 2017 hittilevyllään Juna Kainuuseen. Lokakuussa 2024 julkaistiin yhtyeen kahdeksas albumi Funny Girl, jonka tiimoilta yhtye kiertää jälleen Suomea. Tuhansia albumeita myyneen ja miljoonia kuunteluita suoratoistopalveluissa keränneen Litku Klemetin musiikki on omaehtoista, hauskaa ja koskettavaa. Kriitikoiden ja yleisön rakastaman Litkun keikoilla käyvät niin musadiggarit kuin heidän mutsitkin.</p><p><b>A la Malmi</b> on Malmitalon klubisarja, joka esittelee kiinnostavinta, tuoreinta ja kovimmassa nosteessa olevaa kotimaista musiikkia. A la Malmi ei välitä genrerajoista, vaan tarjoilee kuulijoille parhaat itsenäisen musiikin tekijät.</p><p>Laadukas konserttisaliympäristö nousevine katsomoineen tarjoaa jokaiselle asiakkaalle oman mukavan istumapaikan ja hyvän näkymän esiintymislavalle. Akustiset, äänentoistolliset ja valaistukselliset puitteet ovat Malmisalissa huippuluokkaa.</p><p>Kesto: 1 tunti, 20 min</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64826/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23ejrq",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66aa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?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:p2787/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ei2q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejgi/?format=api"
                }
            ],
            "images": [
                {
                    "id": 150454,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-03-15T07:37:14.621279Z",
                    "last_modified_time": "2024-03-15T07:37:14.621301Z",
                    "name": "",
                    "url": "https://tapahtumasyotto.espoo.fi/media/images/ENTERry-20_1.jpg",
                    "cropping": "149,0,531,382",
                    "photographer_name": "",
                    "alt_text": "Opastustilanne",
                    "data_source": "espoo_le",
                    "publisher": null,
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/150454/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7axy/?format=api"
                }
            ],
            "created_time": "2025-01-15T12:57:42.115002Z",
            "last_modified_time": "2025-01-15T12:57:42.115028Z",
            "date_published": null,
            "start_time": "2025-01-21T08:00:00Z",
            "end_time": "2025-05-21T09:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. ",
                "sv": "Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.",
                "en": "Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish."
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Kokoustila Kari"
            },
            "name": {
                "fi": "ENTER ry Tietotekniikkaopastusta senioreille",
                "sv": "ENTER ry IT utbildning för seniorer",
                "en": "ENTER ry IT tutoring for seniors"
            },
            "description": {
                "fi": "<p>Henkilökohtaista opastusta älypuhelimien, tablettien ja tietokoneiden sekä sähköisten palveluiden käytössä. Ota mukaan oma laite, tarvittavat tunnukset ja salasanat.</p><p>Opastajina toimivat ENTER ry:n vapaaehtoiset vertaisopastajat.</p>",
                "sv": "<p>Personligt stöd i att använda smartphones, surfplattor, datorer och e-tjänster på finska.</p>",
                "en": "<p>Personalised guidance in the use of smartphones, tablets, computers and e-services in Finnish.</p>"
            },
            "provider": {
                "fi": "Enter ry",
                "sv": "Enter ry",
                "en": "Enter ry"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ejrq/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65450",
            "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: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: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"
                }
            ],
            "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-spring-break-festival-2025-stoa-19510659/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510659/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510659/"
                    },
                    "price": {
                        "fi": "20 € / 17 €",
                        "sv": "20 € / 17 €",
                        "en": "20 € / 17 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153771,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-15T10:13:48.191924Z",
                    "last_modified_time": "2025-01-15T10:13:48.191936Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763441.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153771/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-15T10:13:48.179873Z",
            "last_modified_time": "2025-01-15T10:13:48.226046Z",
            "date_published": null,
            "start_time": "2025-05-10T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?",
                "sv": "Vad händer när tre vänners liv har fastnat i hemmet?",
                "en": "What happens when the lives of three friends have become stuck at home?"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen_Block_Maybe_We_Go_Out",
                "sv": "http://www.stoa.fi/sv/evenemang/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen_Block_Maybe_We_Go_Out",
                "en": "http://www.stoa.fi/en/events/event/CEEE0AA7AA4263657867AEC684F5EDAC/Oskari_Turpeinen_Block_Maybe_We_Go_Out"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025",
                "sv": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025",
                "en": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025"
            },
            "description": {
                "fi": "<p>Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?</p><p>Heillä on visioita tulevaisuudesta, mutta muutoksen huoli ja kodin luoma turva valavat jatkuvasti sementtiä sandaaleihin. Suunnitelmia löytyy, mutta toteutus tuntuu ylitsepääsemättömältä. Haaveet, pelot, kaipuu ja kärsimättömyys myllertävät kodin nuhjuisten huonekalujen päällä notkuvien ystävysten mielessä.</p><p>Aika valuu, venyy ja puuhastelu menee asunnosta ulos pääsemisen edelle. Koti, huonekalut ja asukkaat järjestetään jatkuvasti uudelleen, ja aina tuntuu löytyvän jotain muuta tekemistä kuin tulevaisuuden kohtaaminen. Ulos olisi joskus lähdettävä, vaan kun se ei vain tunnu onnistuvan.</p><p>Block – Maybe We Go Out on tanssiteos, jossa tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen kuvaten kaoottista ja odottavaa tilaa. Teoksessa lavalla nähdään kolme ystävystä, jotka kelluskelevat kodissaan yrittäen poissulkea tulevan. Teos pohtii nuorten ja nuorten aikuisten tulevaisuuden näkymiä. Kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?</p><p>Ohjaus ja koreografia: Oskari Turpeinen<br>Dramaturgia: Sanni Giordani<br>Esiintyjät: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musiikki ja äänisuunnittelu: Eetu Hölttä, Josu Mämmi<br>Valosuunnittelu: Lauri Hietala</p><p>Osatuotanto: Kinetic Orchestra<br>Teoksen on mahdollistanut: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Kesto noin 60 min</p>",
                "sv": "<p>Vad händer när tre vänners liv har fastnat i hemmet?</p><p>De har visioner för framtiden, men oron för förändring och tryggheten i hemmet fortsätter att hälla cement i deras sandaler. Planerna finns där, men att genomföra dem verkar oöverstigligt. Drömmar, rädslor, längtan och otålighet snurrar i huvudet på polarna som vaggas i hemmets sjabbiga möbler. Tiden rinner iväg, dras ut och plottrande går före att ta sig ut ur lägenheten. Hemmet, möblerna och invånarna omorganiseras ständigt, och det verkar alltid finnas något annat att göra än att möta framtiden. Ibland borde man gå ut, men då det bara inte blir av.</p><p>Block – Maybe We Go Out är ett dansverk där dans, musik, akrobatik och teater smälter samman och skapar ett tillstånd av kaos och väntan. På scenen ser vi tre polare som flyter omkring i sitt hem och försöker stänga ute framtiden. Verket behandlar framtidsutsikterna för ungdomar och unga vuxna. Hur skrämmande och osäkert är inte livet utan hemmets trygghet och vännernas skydd?</p><p>Regi och koreografi: Oskari Turpeinen<br>Dramaturgi: Sanni Giordani<br>Framträdande: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musik och ljuddesign: Eetu Hölttä, Josu Mämmi<br>Ljusdesign: Lauri Hietala</p><p>Delproduktion: Kinetic Orchestra<br>Verket möjliggjordes av: Centret för konstfrämjande & Kinetic Orchestra</p><p>Längd ca 60 min</p>",
                "en": "<p>What happens when the lives of three friends have become stuck at home?</p><p>They have grand visions for the future, but the fear of change and the comfort of home constantly pour cement into their sandals. Planning the future comes easily, but putting those plans into action seems impossible. Dreams, fears, longing, and impatience swirl in the minds of these friends. Time slips by, stretches on, and procrastination turns every little task into a reason to avoid stepping outside. The home, its furniture, and the residents are constantly being rearranged, yet there’s always something else to do rather than face the future. Maybe we go out at some point, but it just never seems to happen.</p><p>Block – Maybe We Go Out is a dance piece where dance, music, acrobatics, and theater merge to portray the chaotic and expectant state of the friends. On stage, we see three friends floating through their home, trying to shut out what lies ahead. The piece reflects on the future prospects of young people and young adults. How terrifying and uncertain life feels without the safety of home and friends?</p><p>Directing and Choreography: Oskari Turpeinen<br>Dramaturgy: Sanni Giordani<br>Performers: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Music and sound design: Eetu Hölttä, Josu Mämmi<br>Light design: Lauri Hietala</p><p>Co-production: Kinetic Orchestra<br>Supported by: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Duration: 1 hour</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65450/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65449",
            "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: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: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"
                }
            ],
            "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-spring-break-festival-2025-stoa-19510658/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510658/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510658/"
                    },
                    "price": {
                        "fi": "20 € / 17 €",
                        "sv": "20 € / 17 €",
                        "en": "20 € / 17 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153770,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-15T10:13:48.027389Z",
                    "last_modified_time": "2025-01-15T10:13:48.027402Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763440.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153770/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-15T10:13:48.012393Z",
            "last_modified_time": "2025-01-15T10:13:48.065333Z",
            "date_published": null,
            "start_time": "2025-05-09T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?",
                "sv": "Vad händer när tre vänners liv har fastnat i hemmet?",
                "en": "What happens when the lives of three friends have become stuck at home?"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen_Block_Maybe_We_Go_Out",
                "sv": "http://www.stoa.fi/sv/evenemang/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen_Block_Maybe_We_Go_Out",
                "en": "http://www.stoa.fi/en/events/event/C835E3F5F3924AAA1D24FE60A00BD8D3/Oskari_Turpeinen_Block_Maybe_We_Go_Out"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025",
                "sv": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025",
                "en": "Oskari Turpeinen: Block – Maybe We Go Out – Spring Break Festival 2025"
            },
            "description": {
                "fi": "<p>Kuinka käy, kun kolmen ystävän elämä on jämähtänyt kotiin?</p><p>Heillä on visioita tulevaisuudesta, mutta muutoksen huoli ja kodin luoma turva valavat jatkuvasti sementtiä sandaaleihin. Suunnitelmia löytyy, mutta toteutus tuntuu ylitsepääsemättömältä. Haaveet, pelot, kaipuu ja kärsimättömyys myllertävät kodin nuhjuisten huonekalujen päällä notkuvien ystävysten mielessä.</p><p>Aika valuu, venyy ja puuhastelu menee asunnosta ulos pääsemisen edelle. Koti, huonekalut ja asukkaat järjestetään jatkuvasti uudelleen, ja aina tuntuu löytyvän jotain muuta tekemistä kuin tulevaisuuden kohtaaminen. Ulos olisi joskus lähdettävä, vaan kun se ei vain tunnu onnistuvan.</p><p>Block – Maybe We Go Out on tanssiteos, jossa tanssi, musiikki, akrobatia ja teatteri sulautuvat yhteen kuvaten kaoottista ja odottavaa tilaa. Teoksessa lavalla nähdään kolme ystävystä, jotka kelluskelevat kodissaan yrittäen poissulkea tulevan. Teos pohtii nuorten ja nuorten aikuisten tulevaisuuden näkymiä. Kuinka pelottavaa ja epävarmaa elämä onkaan ilman kodin ja ystävien turvaa?</p><p>Ohjaus ja koreografia: Oskari Turpeinen<br>Dramaturgia: Sanni Giordani<br>Esiintyjät: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musiikki ja äänisuunnittelu: Eetu Hölttä, Josu Mämmi<br>Valosuunnittelu: Lauri Hietala</p><p>Osatuotanto: Kinetic Orchestra<br>Teoksen on mahdollistanut: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Kesto noin 60 min</p>",
                "sv": "<p>Vad händer när tre vänners liv har fastnat i hemmet?</p><p>De har visioner för framtiden, men oron för förändring och tryggheten i hemmet fortsätter att hälla cement i deras sandaler. Planerna finns där, men att genomföra dem verkar oöverstigligt. Drömmar, rädslor, längtan och otålighet snurrar i huvudet på polarna som vaggas i hemmets sjabbiga möbler. Tiden rinner iväg, dras ut och plottrande går före att ta sig ut ur lägenheten. Hemmet, möblerna och invånarna omorganiseras ständigt, och det verkar alltid finnas något annat att göra än att möta framtiden. Ibland borde man gå ut, men då det bara inte blir av.</p><p>Block – Maybe We Go Out är ett dansverk där dans, musik, akrobatik och teater smälter samman och skapar ett tillstånd av kaos och väntan. På scenen ser vi tre polare som flyter omkring i sitt hem och försöker stänga ute framtiden. Verket behandlar framtidsutsikterna för ungdomar och unga vuxna. Hur skrämmande och osäkert är inte livet utan hemmets trygghet och vännernas skydd?</p><p>Regi och koreografi: Oskari Turpeinen<br>Dramaturgi: Sanni Giordani<br>Framträdande: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Musik och ljuddesign: Eetu Hölttä, Josu Mämmi<br>Ljusdesign: Lauri Hietala</p><p>Delproduktion: Kinetic Orchestra<br>Verket möjliggjordes av: Centret för konstfrämjande & Kinetic Orchestra</p><p>Längd ca 60 min</p>",
                "en": "<p>What happens when the lives of three friends have become stuck at home?</p><p>They have grand visions for the future, but the fear of change and the comfort of home constantly pour cement into their sandals. Planning the future comes easily, but putting those plans into action seems impossible. Dreams, fears, longing, and impatience swirl in the minds of these friends. Time slips by, stretches on, and procrastination turns every little task into a reason to avoid stepping outside. The home, its furniture, and the residents are constantly being rearranged, yet there’s always something else to do rather than face the future. Maybe we go out at some point, but it just never seems to happen.</p><p>Block – Maybe We Go Out is a dance piece where dance, music, acrobatics, and theater merge to portray the chaotic and expectant state of the friends. On stage, we see three friends floating through their home, trying to shut out what lies ahead. The piece reflects on the future prospects of young people and young adults. How terrifying and uncertain life feels without the safety of home and friends?</p><p>Directing and Choreography: Oskari Turpeinen<br>Dramaturgy: Sanni Giordani<br>Performers: Eetu Hölttä, Iiro Näkki, Oskari Turpeinen<br>Music and sound design: Eetu Hölttä, Josu Mämmi<br>Light design: Lauri Hietala</p><p>Co-production: Kinetic Orchestra<br>Supported by: Taiteen Edistämiskeskus & Kinetic Orchestra</p><p>Duration: 1 hour</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65449/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65448",
            "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: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: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"
                }
            ],
            "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-spring-break-festival-2025-stoa-19510657/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510657/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510657/"
                    },
                    "price": {
                        "fi": "20 € / 17 €",
                        "sv": "20 € / 17 €",
                        "en": "20 € / 17 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153769,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-15T10:13:47.702511Z",
                    "last_modified_time": "2025-01-15T10:13:47.702526Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763438.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153769/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-15T10:13:47.687570Z",
            "last_modified_time": "2025-01-15T10:13:47.746496Z",
            "date_published": null,
            "start_time": "2025-05-07T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ulkomaisen vierailuteoksen HITO koreografit ja esiintyjät, Akira Yoshida ja Chey Jurado, kuvaavat teoksessaan elämän suunnan löytämistä ja sen kadottamista.",
                "sv": "I det utländska gästspelet HITO beskriver koreograferna och artisterna Akira Yoshida och Chey Jurado hur det är att hitta riktning i livet och förlora den.",
                "en": "“HITO” features choreographer-performers Akira Yoshida and Chey Jurado, presenting a depiction of finding and losing the right direction in life."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida_Chey_Jurado_HITO",
                "sv": "http://www.stoa.fi/sv/evenemang/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida_Chey_Jurado_HITO",
                "en": "http://www.stoa.fi/en/events/event/65B61116E798792CA6190FD7B42EC878/Akira_Yoshida_Chey_Jurado_HITO"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Akira Yoshida & Chey Jurado: HITO – Spring Break Festival 2025",
                "sv": "Akira Yoshida & Chey Jurado: HITO – Spring Break Festival 2025",
                "en": "Akira Yoshida & Chey Jurado: HITO – Spring Break Festival 2025"
            },
            "description": {
                "fi": "<p>Ulkomaisen vierailuteoksen HITO koreografit ja esiintyjät, Akira Yoshida ja Chey Jurado, kuvaavat teoksessaan elämän suunnan löytämistä ja sen kadottamista.</p><p>Tässä yksinkertaisuuden etsinnässä löytyy monimutkaisuus. Hito näyttää kaksi ystävää puhtaassa olemassaolon tilassa, etsimässä jotain niin yksinkertaista kuin elämää. Etsintä ravitsee heitä keskinäisellä läheisyydellä ja tuella, mutta samalla etäännyttää heitä toisistaan.</p><p>Chey Jurado ja Akira Yoshida ovat molemmat tanssijoita, jotka aloittivat breakingista ja jatkoivat uraansa esittävien taiteiden parissa. He ovat työskennelleet yhdessä Roberto Olivánin kanssa sekä mm. Peeping Tomin, La Veronalin, Lali Ayguadén, Yoann Bourgeoisin, Hungry Sharksin kanssa. Tällä hetkellä he yhdistävät työssään esiintymisen ja opettamisen ympäri maailmaa.</p><p>Koreografia ja esitys: Akira Yoshida & Chey Jurado<br>Tuotanto: Patty Hinchado, Eduardo Torres <br>Levitys: Patty Hinchado<br>Yhteistuotannossa: Kulturschiene, QuéTalEstás producciones, Teatro Pérez Galdós, Fundación Auditorio Las Palmas de Gran Canarias</p><p>Kesto: noin 50 min</p>",
                "sv": "<p>I det utländska gästspelet HITO beskriver koreograferna och artisterna Akira Yoshida och Chey Jurado hur det är att hitta riktning i livet och förlora den.</p><p>I denna strävan efter enkelhet uppstår komplexitet. Hito visar två vänner som befinner sig i ett tillstånd av ren existens, på jakt efter något så enkelt som livet. Sökandet ger dem näring i form av ömsesidig närhet och stöd, men fjärmar dem samtidigt från varandra.</p><p>Chey Jurado och Akira Yoshida är båda dansare som började med breaking och fortsatte sina karriärer inom scenkonsten. De har arbetat med bland andra Roberto Oliván, Peeping Tom, La Veronal, Lali Ayguadé, Yoann Bourgeois och Hungry Sharks. För närvarande går deras arbete ut på att kombinera uppträdanden med undervisning runtom i världen.</p><p>Längd: ca 50 min</p><p>Koreografi och framförande: Akira Yoshida & Chey Jurado<br>Produktion: Patty Hinchado, Eduardo Torres <br>Distribution: Patty Hinchado</p><p>I samproduktion: Kulturschiene, QuéTalEstás producciones, Teatro Pérez Galdós, Fundación Auditorio Las Palmas de Gran Canarias</p>",
                "en": "<p>“HITO” features choreographer-performers Akira Yoshida and Chey Jurado, presenting a depiction of finding and losing the right direction in life.</p><p>In the search for the simple, it´s where the complex is found. Hito shows the mere existence of two friends looking for something as simple as living, and how this nourishes them with closeness and support, and at the same time distances them.</p><p>Chey Jurado and Akira Yoshida are two dancers that after starting with Breaking, they begun their careers in performing arts. They both worked together with Roberto Oliván, and separately with Peeping Tom, La Veronal, Lali Ayguadé Company, Yoann Bourgeois, Hungry Sharks, etc. Right now they combine the performing arts with workshops all around the globe.</p><p>Duration: 50 min</p><p>Artists: Akira Yoshida & Chey Jurado<br>Production: Patty Hinchado, Eduardo Torres <br>Distribution: Patty Hinchado</p><p>Co-produced: Kulturschiene, QuéTalEstás producciones, Teatro Pérez Galdós, Fundación Auditorio Las Palmas de Gran Canarias</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65448/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65447",
            "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: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: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"
                }
            ],
            "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-spring-break-festival-2025-stoa-19510656/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510656/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-stoa-spring-break-festival-2025-stoa-19510656/"
                    },
                    "price": {
                        "fi": "20 € / 17 €",
                        "sv": "20 € / 17 €",
                        "en": "20 € / 17 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153768,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-15T10:13:47.463499Z",
                    "last_modified_time": "2025-01-15T10:13:47.463513Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763436.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153768/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-15T10:13:47.439411Z",
            "last_modified_time": "2025-01-15T10:13:47.525538Z",
            "date_published": null,
            "start_time": "2025-05-06T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "\"We Do This. We Don’t Talk” on sukkela ja loistokkaasti ylilyövä soolo aitouden tavoittelusta.",
                "sv": "”We Do This. We Don’t Talk” är ett kvickt och briljant överdrivet solo om strävan efter äkthet.",
                "en": "“We do this. We don’t talk” is a witty and gloriously over-the-top solo about the pursuit of authenticity."
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/BB360600F12622B28BDFA0C013812F45/Yhteisilta_9_We_Do_This_We_Don_t_Talk_",
                "sv": "http://www.stoa.fi/sv/evenemang/event/BB360600F12622B28BDFA0C013812F45/Gemensam_kvall_9_We_Do_This_We_Don_t_Talk_",
                "en": "http://www.stoa.fi/en/events/event/BB360600F12622B28BDFA0C013812F45/Double_Bill_9_We_Do_This_We_Don_t_Talk_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Yhteisilta: 9 & We Do This. We Don’t Talk. – Spring Break Festival 2025",
                "sv": "Gemensam kväll: 9 & We Do This. We Don’t Talk. – Spring Break Festival 2025",
                "en": "Double Bill: 9 & We Do This. We Don’t Talk. – Spring Break Festival 2025"
            },
            "description": {
                "fi": "<p>\"We Do This. We Don’t Talk” on sukkela ja loistokkaasti ylilyövä soolo aitouden tavoittelusta.</p><p>Huolellisesti muotoiltujen internet-persoonien aikakaudella tämä soolo juhlistaa tanssin esittämisen ainutlaatuista rehellisyyttä.<br>Soolo on syntynyt koreografi Barnaby Boothin kiinnostuksesta lähestyä koreografiaa henkilökuvauksen muotona, jossa yleisö tutustuu esiintyjä Samuli Emeryyn katsoessaan hänen tanssimistaan.</p><p>\"Henkilökuvassa on kyse identiteetin tutkimisesta, ja se on hyvin herkkä, haavoittuva asia... Henkilökuva on kädenpuristus, syleily, sopimus, jossa kohtaamme kuvattavan kanssa yhteistyömme puolessa välissä\" -Valokuvaaja Tim Walker.</p><p>Vuonna 2017 \"We Do This. We Don't Talk.\" voitti 2. palkinnon \"Best Performance\" Stuttgartin kansainvälisessä tanssiteatterikilpailussa Saksassa ja \"Audience's Favourite\" -palkinnon Gdanskin tanssifestivaaleilla Puolassa. Tämän jälkeen esitys on kiertänyt laajasti lähes kahdessakymmenessä eri kaupungissa ympäri Eurooppaa.</p><p>Koreografia: Barnaby Booth<br>Esitys: Samuli Emery<br>Musiikki: “I Want You Back”, The Shivers<br>Tukijat: Susan Quinn, Salzburg Experimental Academy of Dance, Solo Tanz Theater Festival Stuttgart, Gdanski Festival Tanca</p><p>Laajasalon opiston tanssijan koulutus on monipuolinen ja fyysinen opintolinja, joka toimii yhteistyössä Kinetic Orchestra tanssiryhmän kanssa. Linjan opinnot kestävät vuoden, ja sen tavoitteena on tukea opiskelijoiden omaa kehitystä tanssijana, vahvistaa tanssisuhdetta sekä valmistaa kiinnostuneita opiskelijoita tanssin jatko-opintoihin.</p><p>Osana yhteisiltaa nähtävä teos rakentuu osana Tanssijana työskentely produktiossa -opintojaksoa, jonka aikana opiskelijat tutustuvat tanssijan työnkuvaan käytännön harjoittelun kautta. Opintojakson aikana opiskelijat pääsevät harjoittelemaan ryhmässä toimimista sekä vastuullisen ja ammattimaisen toiminnan periaatteita osana tanssijana toimimista taiteellisessa prosessissa. Opintojakso tarjoaa mahdollisuuden kurkistaa tanssijan työnkuvaan turvallisessa ympäristössä itseään haastaen. Ryhmäkoreografian “9” linjan opiskelijoille valmistaa Jarkko Mandelin kevään 2025 aikana.</p><p>Koreografia: Jarkko Mandelin<br>Esitys: Laajasalon opiston tanssilinjan opiskelijat<br>Kesto noin 1 tunti, sisältäen väliajan (teos n. 20minuuttia + väliaika 15min + teos n.15min)</p>",
                "sv": "<p>”We Do This. We Don’t Talk” är ett kvickt och briljant överdrivet solo om strävan efter äkthet.</p><p>I en tid av noggrant utformade internetpersonligheter hyllar det här solot den unika ärligheten i dansuppträdanden.<br>Solot föddes ur koreografen Barnaby Booths intresse för att närma sig koreografi som en form av personskildring, där publiken lär känna artisten Samuli Emery genom att se honom dansa.</p><p>”Personskildring handlar om att utforska identitet, och det är en mycket känslig, sårbar sak... En personskildring är en handtryckning, en omfamning, ett avtal där vi möter motivet halvvägs genom vårt samarbete” – Tim Walker, fotograf.</p><p>År 2017 vann ”We Do This. We Don't Talk.” andrapris för ”Best Performance” vid den internationella tävlingen för dansteater i Stuttgart i Tyskland och ”Audience's Favourite” vid dansfestivalen i Gdansk i Polen. Sedan dess har föreställningen turnerat flitigt i närmare tjugo städer runtom i Europa.</p><p>Koreografi: Barnaby Booth<br>Framförande: Samuli Emery<br>Musik: ”I Want You Back”, The Shivers<br>Stödd av: Susan Quinn, Salzburg Experimental Academy of Dance, Solo Tanz Theater Festival Stuttgart, Gdański Festiwal Tańca</p><p>Dansutbildningen på Laajasalon opisto är en mångsidig och fysisk studielinje som samarbetar med dansgruppen Kinetic Orchestra. Studierna pågår under ett år och syftar till att stödja de studerandes egen utveckling som dansare, stärka deras förhållande till dans och förbereda intresserade studerande för vidare studier inom dans.</p><p>Verket, som kommer att visas som en del av den gemensamma kvällen, är en del av studieavsnittet om att arbeta som dansare i en produktion, där de studerande får lära sig om dansarens jobb genom praktisk övning. Under studieavsnittet får de studerande möjlighet att öva på att arbeta i grupp och principerna för ansvarsfullt och professionellt förfarande som en del av att vara dansare i en konstnärlig process. Kursen ger möjlighet att i en trygg miljö få smakprov av dansarens arbete och utmana sig själv. Gruppkoreografin ”9” för de studerande på linjen kommer att utarbetas av Jarkko Mandelin under våren 2025.</p><p>Koreografi: Jarkko Mandelin<br>Framförande: Studerande på danslinjen på Laajasalon opisto</p><p>Längd ca 1 timme, inklusive paus (framförande ca 20 minuter + paus 15 minuter + framförande ca 15 minuter)</p>",
                "en": "<p>“We do this. We don’t talk” is a witty and gloriously over-the-top solo about the pursuit of authenticity.</p><p>In a time of meticulously crafted online personas, this short solo celebrates the unique honesty of dance performance.</p><p>The solo is the result of choreographer Barnaby Booth’s interest in approaching choreography as a form of portraiture, so that the audience might get to know performer Samuli Emery as they watch them dance.</p><p>“Portraiture is about exploring someone’s identity and that’s a very tender, vulnerable thing… The portrait is a handshake, the embrace, the agreement where we meet halfway along a collaborative path” – Photographer Tim Walker.</p><p>In 2017 \"We Do This. We Don't Talk.\" won the 2nd prize for \"Best Performance\" in the Stuttgart International Dance Theatre Competition in Germany and the \"Audience's Favourite\" prize in the Gdansk Dance Festival in Poland. After this the performance has toured extensively in almost twenty different cities and venues all over Europe.</p><p>Choreography: Barnaby Booth<br>Performing: Samuli Emery<br>Music: “I Want You Back”, The Shivers<br>Supporters: Susan Quinn, Salzburg Experimental Academy of Dance, Solo Tanz Theater Festival Stuttgart, Gdanski Festival Tanca</p><p>Laajasalo Folk High School’s dance programme is a versatile and physical study line that collaborates with the Kinetic Orchestra dance company. The program lasts for one year and aims to support students' personal development as dancers, strengthen their relationship with dance, and prepare interested students for further studies in dance.</p><p>The piece presented in the evening is part of the Working as a Dancer course, during which students explore the role of a dancer through practical training. Throughout the course, students practice working as a group and the principles of responsible and professional conduct as part of the artistic process. The course offers a chance to gain insight into the dancer's role in a safe environment while challenging themselves. The group choreography “9” for the students of the programme will be created by Jarkko Mandelin during the spring 2025.</p><p>Choreography: Jarkko Mandelin<br>Performance: students of Laajasalo Folk High School’s dance programme</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65447/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65443",
            "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: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/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153749,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T12:15:20.174370Z",
                    "last_modified_time": "2025-01-14T12:15:20.174386Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759328.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153749/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-14T12:15:20.145908Z",
            "last_modified_time": "2025-01-14T13:15:16.128670Z",
            "date_published": null,
            "start_time": "2025-03-06T13:30:00Z",
            "end_time": "2025-03-06T14:30: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!",
                "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!",
                "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/EAC1B147CF16E450FFC954D4DEC32AB3/Suojelevat_symbolit_-taidepaja",
                "sv": "http://www.stoa.fi/sv/evenemang/event/EAC1B147CF16E450FFC954D4DEC32AB3/Skyddande_symboler_konstworkshop",
                "en": "http://www.stoa.fi/en/events/event/EAC1B147CF16E450FFC954D4DEC32AB3/Protective_Symbols_art_workshop"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Suojelevat symbolit -taidepaja – Helsinki Biennaali",
                "sv": "Skyddande symboler – konstworkshop – Helsingforsbiennalen",
                "en": "Protective Symbols art workshop – The Helsinki Biennial"
            },
            "description": {
                "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.<br>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule Stoan aulaan ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa! Taidepaja on avoinna tiistaista torstaihin 4.–6.3. klo 15.30–16.30.</p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi. www.helsinkibiennaali.fi</p>",
                "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Gamlasgårdens galleri och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen 4–6.3. kl. 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>",
                "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come visit the Kanneltalo gallery, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open 3–6<br>March, from 15:30 to 16:30.</p><p>Free admission.</p><p>The Helsinki Biennial will take place from 8 June to 21 September 2025, and the event venues will be HAM Helsinki Art Museum, Vallisaari and the Esplanade.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65443/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65439",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@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:47/?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:613/?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: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/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/"
                    },
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153747,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T12:15:16.423774Z",
                    "last_modified_time": "2025-01-14T12:15:16.423792Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761469.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153747/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-14T12:15:16.392716Z",
            "last_modified_time": "2025-01-14T12:15:16.504200Z",
            "date_published": null,
            "start_time": "2025-04-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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.",
                "sv": "Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.",
                "en": "Every year, the twins prepare to celebrate the birthday of someone who is absent."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/3EAE7699447B551FD07A615F0A94DC3C/Vuosipaiva_Anniversary_Un_Anniversaire",
                "sv": "http://www.caisa.fi/sv/evenemang/event/3EAE7699447B551FD07A615F0A94DC3C/Vuosipaiva_Anniversary_Un_Anniversaire",
                "en": "http://www.caisa.fi/en/events/event/3EAE7699447B551FD07A615F0A94DC3C/Vuosipaiva_Anniversary_Un_Anniversaire"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas",
                "sv": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas",
                "en": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas"
            },
            "description": {
                "fi": "<p>Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.</p><p>Juuttuneina omiin mietiskelyihinsä, yksinäisinä, lapsettomina ja tarpeettomina, he jakavat tappionsa. Huolimatta synkkiin ajatuksiin vaipumisista he pysyvät optimisteina ja odottavat yhä pientä kipinää, joka valaisee hetkeksi hauraan onnen pimeydessä.</p><p>Vuosipäivä on ranskan-guyanalais-martiniquelais-suomalainen yhteistyö. Teos on osa palkitun nykynäytelmäkirjailija <b>Alfred Alexandren</b> trilogiaa, joka käsittelee poissaolevaa henkilöä. Alkuperäisteksti on kirjoitettu ranskaksi.</p><p>Tämän fyysisen komedian tragedian on ohjannut ranskalais-guyanalainen Ewlyne Guillame ja esiintyjinä ovat suomalaiset fyysisen teatterin ja komedian taitajat Jenni Kallo ja Niina Rinta-Opas aka Kylmä ja Kalma, jotka syntyivät vuonna 2000 Q-teatterin Lumotussa Saaressa.</p><p>Esityksen pääkieli on fyysinen teatteri, mutta klovnerian ja tragedian summanmutikassa saattaa vilahtaa eri kieliä esimerkiksi ranskaa ja englantia suomen lisäksi. Teos käsittelee syvällisiä ja universaaleja teemoja, jotka koskettavat ihmisiä taustasta riippumatta. Hahmojen elämänkokemukset ja tunteet tarjoavat samaistumispintaa ja korostavat inhimillisten kokemusten moninaisuutta.</p><p>Tämä kansainvälisen yhteistyön hedelmä sai maailman ensi-iltansa Rovaniemellä Kulttuuritalo Wiljamissa osana Rimpparemmin vierailunäyttämöä elokuussa 2024. Ranskankielisen version ensi-ilta puolestaan näkee päivänvalon Les Tréteaux du Maroni festivaaleilla Ranskan Guayanassa huhtikuussa 2025.</p><p>Kesto: 45 minuuttia<br>Ikäsuositus: 16+<br>Kieli: suomi, ranska <br>Sisältöhuomio: Esitys sisältää kovia ääniä, alkoholia, vahvoja tunteita, voimakkaita hajuja ja huumoria.</p><p><b>Työryhmä</b><br>Ohjaus Ewelyne Guillame <br>Esiintyjät Jenni Kallo & Niina Rinta-Opas <br>Teksti Alfred Alexandre <br>Musiikki Harri Kuusijärvi <br>Valot Michael Creusy & Atte Herd <br>Pukusuunnittelu Reija Laine</p><p><b>Kulttuurikaveri-etu</b> <br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a><br>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.</p><p>Fast i sina egna grubblerier, ensamma, barnlösa och värdelösa, delar de med sig av sina förluster. Trots sina dystra tankar är de optimistiska och väntar fortfarande på att en liten gnista ska lysa upp den bräckliga lyckans mörker för en stund.</p><p>Årsdagen är ett fransk-guyansk-martinikansk-finskt samarbete. Verket ingår i en trilogi av den prisbelönte martinikanske författaren <b>Alfred Alexandre</b> om en frånvarande person. Originaltexten är skriven på franska.</p><p>Denna tragedi inom fysisk komedi har regisserats av fransk-guyanske Ewlyne Guillame och framförs av de finländska artisterna inom fysisk teater och komedi Jenni Kallo och Niina Rinta-Opas aka Kylmä ja Kalma, som föddes år 2000 i Q-teatteris Lumottu Saari.</p><p>Föreställningens huvudspråk är fysisk teater, men i den slumpmässiga blandningen av clowneri och tragedi kan olika språk förekomma, utöver finska även franska och engelska. Verket behandlar djupa och universella teman som berör människor från alla bakgrunder. Karaktärernas livserfarenheter och känslor erbjuder igenkänningspunkter och framhäver mångfalden av mänskliga upplevelser.</p><p>Längd: 45 minuter<br>Åldersrekommendation: 16+<br>Språk: finska, franska <br>Observation om innehållet: Föreställningen innehåller höga ljud, alkohol, starka känslor, starka dofter och humor.</p><p><b>Arbetsgrupp</b><br>Regi Ewelyne Guillame <br>Artister Jenni Kallo & Niina Rinta-Opas <br>Text Alfred Alexandre <br>Musik Harri Kuusijärvi <br>Ljus Michael Creusy & Atte Herd <br>Kostymdesign Reija Laine</p>",
                "en": "<p>Every year, the twins prepare to celebrate the birthday of someone who is absent.</p><p>Stuck in their private reflections, lonely, childless and useless, they share their losses. Despite their lapses into gloomy thoughts, they remain optimists, waiting for a small spark to momentarily light up the darkness with fragile happiness.</p><p>Vuosipäivä (Anniversary) is a French-Guyanese-Martiniquan-Finnish collaboration. The work is part of a trilogy by award-winning Martiniquan author Alfred Alexandre that explores the absence of a person. The original text is written in French.</p><p>This physical tragicomedy is directed by French-Guyanese Ewlyne Guillame and performed by two Finnish talents in physical theatre and comedy, Jenni Kallo and Niina Rinta-Opas, also known as Kylmä and Kalma, who first performed at Q-teatteri’s Enchanted Island in 2000.</p><p>The main language of the performance is physical theatre, but in the mixture of clownery and tragedy, there may be a few snippets of different languages, such as French and English, in addition to Finnish. The work deals with profound and universal themes that will touch people from all backgrounds. The characters’ life experiences and emotions provide a space for identifying with them, highlighting the diversity of human experience.</p><p>Duration: 45 minutes<br>Age recommendation: 16+<br>Language: Finnish, French <br>Content warning: The performance includes loud sounds, alcohol, strong emotions, strong odours and humour.</p><p><b>Working Group</b><br>Director: Ewelyne Guillame <br>Performers: Jenni Kallo & Niina Rinta-Opas <br>Text: Alfred Alexandre <br>Music: Harri Kuusijärvi <br>Lights: Michael Creusy & Atte Herd <br>Costume design: Reija Laine</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65439/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65438",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@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:47/?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:613/?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: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/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/"
                    },
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153746,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T12:15:16.148814Z",
                    "last_modified_time": "2025-01-14T12:15:16.148838Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761468.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153746/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-14T12:15:16.117314Z",
            "last_modified_time": "2025-01-14T12:15:16.217484Z",
            "date_published": null,
            "start_time": "2025-04-25T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.",
                "sv": "Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.",
                "en": "Every year, the twins prepare to celebrate the birthday of someone who is absent."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/55E9A9AA5984EE56A3DAFBF3A724D987/Vuosipaiva_Anniversary_Un_Anniversaire",
                "sv": "http://www.caisa.fi/sv/evenemang/event/55E9A9AA5984EE56A3DAFBF3A724D987/Vuosipaiva_Anniversary_Un_Anniversaire",
                "en": "http://www.caisa.fi/en/events/event/55E9A9AA5984EE56A3DAFBF3A724D987/Vuosipaiva_Anniversary_Un_Anniversaire"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas",
                "sv": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas",
                "en": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas"
            },
            "description": {
                "fi": "<p>Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.</p><p>Juuttuneina omiin mietiskelyihinsä, yksinäisinä, lapsettomina ja tarpeettomina, he jakavat tappionsa. Huolimatta synkkiin ajatuksiin vaipumisista he pysyvät optimisteina ja odottavat yhä pientä kipinää, joka valaisee hetkeksi hauraan onnen pimeydessä.</p><p>Vuosipäivä on ranskan-guyanalais-martiniquelais-suomalainen yhteistyö. Teos on osa palkitun nykynäytelmäkirjailija <b>Alfred Alexandren</b> trilogiaa, joka käsittelee poissaolevaa henkilöä. Alkuperäisteksti on kirjoitettu ranskaksi.</p><p>Tämän fyysisen komedian tragedian on ohjannut ranskalais-guyanalainen Ewlyne Guillame ja esiintyjinä ovat suomalaiset fyysisen teatterin ja komedian taitajat Jenni Kallo ja Niina Rinta-Opas aka Kylmä ja Kalma, jotka syntyivät vuonna 2000 Q-teatterin Lumotussa Saaressa.</p><p>Esityksen pääkieli on fyysinen teatteri, mutta klovnerian ja tragedian summanmutikassa saattaa vilahtaa eri kieliä esimerkiksi ranskaa ja englantia suomen lisäksi. Teos käsittelee syvällisiä ja universaaleja teemoja, jotka koskettavat ihmisiä taustasta riippumatta. Hahmojen elämänkokemukset ja tunteet tarjoavat samaistumispintaa ja korostavat inhimillisten kokemusten moninaisuutta.</p><p>Tämä kansainvälisen yhteistyön hedelmä sai maailman ensi-iltansa Rovaniemellä Kulttuuritalo Wiljamissa osana Rimpparemmin vierailunäyttämöä elokuussa 2024. Ranskankielisen version ensi-ilta puolestaan näkee päivänvalon Les Tréteaux du Maroni festivaaleilla Ranskan Guayanassa huhtikuussa 2025.</p><p>Kesto: 45 minuuttia<br>Ikäsuositus: 16+<br>Kieli: suomi, ranska <br>Sisältöhuomio: Esitys sisältää kovia ääniä, alkoholia, vahvoja tunteita, voimakkaita hajuja ja huumoria.</p><p><b>Työryhmä</b><br>Ohjaus Ewelyne Guillame <br>Esiintyjät Jenni Kallo & Niina Rinta-Opas <br>Teksti Alfred Alexandre <br>Musiikki Harri Kuusijärvi <br>Valot Michael Creusy & Atte Herd <br>Pukusuunnittelu Reija Laine</p><p><b>Kulttuurikaveri-etu</b> <br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a><br>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.</p><p>Fast i sina egna grubblerier, ensamma, barnlösa och värdelösa, delar de med sig av sina förluster. Trots sina dystra tankar är de optimistiska och väntar fortfarande på att en liten gnista ska lysa upp den bräckliga lyckans mörker för en stund.</p><p>Årsdagen är ett fransk-guyansk-martinikansk-finskt samarbete. Verket ingår i en trilogi av den prisbelönte martinikanske författaren <b>Alfred Alexandre</b> om en frånvarande person. Originaltexten är skriven på franska.</p><p>Denna tragedi inom fysisk komedi har regisserats av fransk-guyanske Ewlyne Guillame och framförs av de finländska artisterna inom fysisk teater och komedi Jenni Kallo och Niina Rinta-Opas aka Kylmä ja Kalma, som föddes år 2000 i Q-teatteris Lumottu Saari.</p><p>Föreställningens huvudspråk är fysisk teater, men i den slumpmässiga blandningen av clowneri och tragedi kan olika språk förekomma, utöver finska även franska och engelska. Verket behandlar djupa och universella teman som berör människor från alla bakgrunder. Karaktärernas livserfarenheter och känslor erbjuder igenkänningspunkter och framhäver mångfalden av mänskliga upplevelser.</p><p>Längd: 45 minuter<br>Åldersrekommendation: 16+<br>Språk: finska, franska <br>Observation om innehållet: Föreställningen innehåller höga ljud, alkohol, starka känslor, starka dofter och humor.</p><p><b>Arbetsgrupp</b><br>Regi Ewelyne Guillame <br>Artister Jenni Kallo & Niina Rinta-Opas <br>Text Alfred Alexandre <br>Musik Harri Kuusijärvi <br>Ljus Michael Creusy & Atte Herd <br>Kostymdesign Reija Laine</p>",
                "en": "<p>Every year, the twins prepare to celebrate the birthday of someone who is absent.</p><p>Stuck in their private reflections, lonely, childless and useless, they share their losses. Despite their lapses into gloomy thoughts, they remain optimists, waiting for a small spark to momentarily light up the darkness with fragile happiness.</p><p>Vuosipäivä (Anniversary) is a French-Guyanese-Martiniquan-Finnish collaboration. The work is part of a trilogy by award-winning Martiniquan author Alfred Alexandre that explores the absence of a person. The original text is written in French.</p><p>This physical tragicomedy is directed by French-Guyanese Ewlyne Guillame and performed by two Finnish talents in physical theatre and comedy, Jenni Kallo and Niina Rinta-Opas, also known as Kylmä and Kalma, who first performed at Q-teatteri’s Enchanted Island in 2000.</p><p>The main language of the performance is physical theatre, but in the mixture of clownery and tragedy, there may be a few snippets of different languages, such as French and English, in addition to Finnish. The work deals with profound and universal themes that will touch people from all backgrounds. The characters’ life experiences and emotions provide a space for identifying with them, highlighting the diversity of human experience.</p><p>Duration: 45 minutes<br>Age recommendation: 16+<br>Language: Finnish, French <br>Content warning: The performance includes loud sounds, alcohol, strong emotions, strong odours and humour.</p><p><b>Working Group</b><br>Director: Ewelyne Guillame <br>Performers: Jenni Kallo & Niina Rinta-Opas <br>Text: Alfred Alexandre <br>Music: Harri Kuusijärvi <br>Lights: Michael Creusy & Atte Herd <br>Costume design: Reija Laine</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65438/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65437",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@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:47/?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:613/?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: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/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/",
                        "sv": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/",
                        "en": "https://www.lippu.fi/artist/kulttuurikeskus-caisa/vuosipaeivae-anniversary-un-anniversaire-3806848/"
                    },
                    "price": {
                        "fi": "15 € / 6 €",
                        "sv": "15 € / 6 €",
                        "en": "15 € / 6 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153745,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T12:15:15.780613Z",
                    "last_modified_time": "2025-01-14T12:15:15.780632Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761466.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153745/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-14T12:15:15.738327Z",
            "last_modified_time": "2025-01-14T12:15:15.867770Z",
            "date_published": null,
            "start_time": "2025-04-24T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.",
                "sv": "Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.",
                "en": "Every year, the twins prepare to celebrate the birthday of someone who is absent."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/B273F270195009939C1D1D9211A78038/Vuosipaiva_Anniversary_Un_Anniversaire",
                "sv": "http://www.caisa.fi/sv/evenemang/event/B273F270195009939C1D1D9211A78038/Vuosipaiva_Anniversary_Un_Anniversaire",
                "en": "http://www.caisa.fi/en/events/event/B273F270195009939C1D1D9211A78038/Vuosipaiva_Anniversary_Un_Anniversaire"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas",
                "sv": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas",
                "en": "Vuosipäivä – Anniversary – Un Anniversaire – Centre dramatique Kokolampoe, Kallo § Rinta-Opas"
            },
            "description": {
                "fi": "<p>Joka vuosi kaksoset valmistautuvat juhlimaan erään poissaolevan syntymäpäivää.</p><p>Juuttuneina omiin mietiskelyihinsä, yksinäisinä, lapsettomina ja tarpeettomina, he jakavat tappionsa. Huolimatta synkkiin ajatuksiin vaipumisista he pysyvät optimisteina ja odottavat yhä pientä kipinää, joka valaisee hetkeksi hauraan onnen pimeydessä.</p><p>Vuosipäivä on ranskan-guyanalais-martiniquelais-suomalainen yhteistyö. Teos on osa palkitun nykynäytelmäkirjailija <b>Alfred Alexandren</b> trilogiaa, joka käsittelee poissaolevaa henkilöä. Alkuperäisteksti on kirjoitettu ranskaksi.</p><p>Tämän fyysisen komedian tragedian on ohjannut ranskalais-guyanalainen Ewlyne Guillame ja esiintyjinä ovat suomalaiset fyysisen teatterin ja komedian taitajat Jenni Kallo ja Niina Rinta-Opas aka Kylmä ja Kalma, jotka syntyivät vuonna 2000 Q-teatterin Lumotussa Saaressa.</p><p>Esityksen pääkieli on fyysinen teatteri, mutta klovnerian ja tragedian summanmutikassa saattaa vilahtaa eri kieliä esimerkiksi ranskaa ja englantia suomen lisäksi. Teos käsittelee syvällisiä ja universaaleja teemoja, jotka koskettavat ihmisiä taustasta riippumatta. Hahmojen elämänkokemukset ja tunteet tarjoavat samaistumispintaa ja korostavat inhimillisten kokemusten moninaisuutta.</p><p>Tämä kansainvälisen yhteistyön hedelmä sai maailman ensi-iltansa Rovaniemellä Kulttuuritalo Wiljamissa osana Rimpparemmin vierailunäyttämöä elokuussa 2024. Ranskankielisen version ensi-ilta puolestaan näkee päivänvalon Les Tréteaux du Maroni festivaaleilla Ranskan Guayanassa huhtikuussa 2025.</p><p>Kesto: 45 minuuttia<br>Ikäsuositus: 16+<br>Kieli: suomi, ranska <br>Sisältöhuomio: Esitys sisältää kovia ääniä, alkoholia, vahvoja tunteita, voimakkaita hajuja ja huumoria.</p><p><b>Työryhmä</b><br>Ohjaus Ewelyne Guillame <br>Esiintyjät Jenni Kallo & Niina Rinta-Opas <br>Teksti Alfred Alexandre <br>Musiikki Harri Kuusijärvi <br>Valot Michael Creusy & Atte Herd <br>Pukusuunnittelu Reija Laine</p><p><b>Kulttuurikaveri-etu</b> <br>Voit pyytää esitykseen mukaasi kulttuurikaverin, jonka seurassa maksat lipusta 5 € ja kulttuurikaveri pääsee esitykseen ilmaiseksi. <br><u><a href=\"https://www.helsinkimissio.fi/tarvitsetko-apua/kulttuurikaveri/\">Lue lisää kulttuurikavereista täältä</u></a><br>Kulttuurikaverilippujen varaukset sähköpostitse Caisan vahtimestarille: caisa.vahtimestari@hel.fi.</p>",
                "sv": "<p>Varje år förbereder sig tvillingarna för att fira födelsedagen för en frånvarande person.</p><p>Fast i sina egna grubblerier, ensamma, barnlösa och värdelösa, delar de med sig av sina förluster. Trots sina dystra tankar är de optimistiska och väntar fortfarande på att en liten gnista ska lysa upp den bräckliga lyckans mörker för en stund.</p><p>Årsdagen är ett fransk-guyansk-martinikansk-finskt samarbete. Verket ingår i en trilogi av den prisbelönte martinikanske författaren <b>Alfred Alexandre</b> om en frånvarande person. Originaltexten är skriven på franska.</p><p>Denna tragedi inom fysisk komedi har regisserats av fransk-guyanske Ewlyne Guillame och framförs av de finländska artisterna inom fysisk teater och komedi Jenni Kallo och Niina Rinta-Opas aka Kylmä ja Kalma, som föddes år 2000 i Q-teatteris Lumottu Saari.</p><p>Föreställningens huvudspråk är fysisk teater, men i den slumpmässiga blandningen av clowneri och tragedi kan olika språk förekomma, utöver finska även franska och engelska. Verket behandlar djupa och universella teman som berör människor från alla bakgrunder. Karaktärernas livserfarenheter och känslor erbjuder igenkänningspunkter och framhäver mångfalden av mänskliga upplevelser.</p><p>Längd: 45 minuter<br>Åldersrekommendation: 16+<br>Språk: finska, franska <br>Observation om innehållet: Föreställningen innehåller höga ljud, alkohol, starka känslor, starka dofter och humor.</p><p><b>Arbetsgrupp</b><br>Regi Ewelyne Guillame <br>Artister Jenni Kallo & Niina Rinta-Opas <br>Text Alfred Alexandre <br>Musik Harri Kuusijärvi <br>Ljus Michael Creusy & Atte Herd <br>Kostymdesign Reija Laine</p>",
                "en": "<p>Every year, the twins prepare to celebrate the birthday of someone who is absent.</p><p>Stuck in their private reflections, lonely, childless and useless, they share their losses. Despite their lapses into gloomy thoughts, they remain optimists, waiting for a small spark to momentarily light up the darkness with fragile happiness.</p><p>Vuosipäivä (Anniversary) is a French-Guyanese-Martiniquan-Finnish collaboration. The work is part of a trilogy by award-winning Martiniquan author Alfred Alexandre that explores the absence of a person. The original text is written in French.</p><p>This physical tragicomedy is directed by French-Guyanese Ewlyne Guillame and performed by two Finnish talents in physical theatre and comedy, Jenni Kallo and Niina Rinta-Opas, also known as Kylmä and Kalma, who first performed at Q-teatteri’s Enchanted Island in 2000.</p><p>The main language of the performance is physical theatre, but in the mixture of clownery and tragedy, there may be a few snippets of different languages, such as French and English, in addition to Finnish. The work deals with profound and universal themes that will touch people from all backgrounds. The characters’ life experiences and emotions provide a space for identifying with them, highlighting the diversity of human experience.</p><p>Duration: 45 minutes<br>Age recommendation: 16+<br>Language: Finnish, French <br>Content warning: The performance includes loud sounds, alcohol, strong emotions, strong odours and humour.</p><p><b>Working Group</b><br>Director: Ewelyne Guillame <br>Performers: Jenni Kallo & Niina Rinta-Opas <br>Text: Alfred Alexandre <br>Music: Harri Kuusijärvi <br>Lights: Michael Creusy & Atte Herd <br>Costume design: Reija Laine</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65437/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65442",
            "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: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/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153744,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T12:15:06.573191Z",
                    "last_modified_time": "2025-01-14T12:15:06.573217Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759327.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153744/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-14T12:15:06.540735Z",
            "last_modified_time": "2025-01-14T12:15:06.653696Z",
            "date_published": null,
            "start_time": "2025-03-05T13:30:00Z",
            "end_time": "2025-03-05T14:30: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!",
                "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!",
                "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B33A3EA76134EB84AD59C2E50A13C1FA/Suojelevat_symbolit_-taidepaja",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B33A3EA76134EB84AD59C2E50A13C1FA/Skyddande_symboler_konstworkshop",
                "en": "http://www.stoa.fi/en/events/event/B33A3EA76134EB84AD59C2E50A13C1FA/Protective_Symbols_art_workshop"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Suojelevat symbolit -taidepaja – Helsinki Biennaali",
                "sv": "Skyddande symboler – konstworkshop – Helsingforsbiennalen",
                "en": "Protective Symbols art workshop – The Helsinki Biennial"
            },
            "description": {
                "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.<br>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule Stoan aulaan ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa! Taidepaja on avoinna tiistaista torstaihin 4.–6.3. klo 15.30–16.30.</p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi. www.helsinkibiennaali.fi</p>",
                "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Gamlasgårdens galleri och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen 4–6.3. kl. 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>",
                "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come visit the Kanneltalo gallery, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open 3–6<br>March, from 15:30 to 16:30.</p><p>Free admission.</p><p>The Helsinki Biennial will take place from 8 June to 21 September 2025, and the event venues will be HAM Helsinki Art Museum, Vallisaari and the Esplanade.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65442/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:64720",
            "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: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/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153743,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-14T12:15:06.124426Z",
                    "last_modified_time": "2025-01-14T12:15:06.124444Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759326.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153743/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-14T12:15:06.083489Z",
            "last_modified_time": "2025-01-14T12:15:06.233049Z",
            "date_published": null,
            "start_time": "2025-03-04T13:30:00Z",
            "end_time": "2025-03-04T14:30: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!",
                "sv": "Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!",
                "en": "We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/B2709185721034C03957E87FCCC15403/Suojelevat_symbolit_-taidepaja",
                "sv": "http://www.stoa.fi/sv/evenemang/event/B2709185721034C03957E87FCCC15403/Skyddande_symboler_konstworkshop",
                "en": "http://www.stoa.fi/en/events/event/B2709185721034C03957E87FCCC15403/Protective_Symbols_art_workshop"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Suojelevat symbolit -taidepaja – Helsinki Biennaali",
                "sv": "Skyddande symboler – konstworkshop – Helsingforsbiennalen",
                "en": "Protective Symbols art workshop – The Helsinki Biennial"
            },
            "description": {
                "fi": "<p>Tervetuloa toteuttamaan ympäristötaideteosta, joka on osa ensi kesänä avautuvaa Helsinki Biennaalia!</p><p>Teoskokonaisuus on taidepajoissa tehtyjen osasten summa, joten jokaisen osallistujan panos ja kädenjälki on merkittävä sen syntymisen kannalta.</p><p>Filippiiniläisen taiteilijan Geraldine Javierin ideoima Earth, Water, Air, Fire, Void (Maa, Ilma, Vesi, Tuli, Tyhjiö) käsittelee ihmisen suhdetta luontoon ja sitä, miten voimme elää vastavuoroisessa suhteessa ympäristömme kanssa. Teoksen yhtenä osana ovat suojelevat talismaanit, joita teemme taidepajoissa. Ne ovat eri symboleihin taivutettua rautalankaa, joka on kääritty kierrätyskankaisiin.</p><p>Talismaanien symbolit ammentavat luonnosta ja ne ovat sekä suomalaisesta että filippiiniläisestä kulttuurista poimittuja. Kesäkuussa ne ripustetaan kuuteen vaahteraan Esplanadilla, missä ne muodostavat yhden suuren kokonaisuuden. Talismaanien tehtävänä on suojella puita, joihin ne on ripustettu.<br>Taidepajat ovat ilmaisia ja kaikki materiaalit löytyvät paikan päältä. Tule Stoan aulaan ja anna kättenjälkesi loistaa Helsinki Biennaalin tulevassa taideteoksessa! Taidepaja on avoinna tiistaista torstaihin 4.–6.3. klo 15.30–16.30.</p><p>Helsinki Biennaalia vietetään 8.6.-21.9.2025 ja tapahtumapaikkoina ovat HAM Helsingin taidemuseo, Vallisaari sekä Esplanadi. www.helsinkibiennaali.fi</p>",
                "sv": "<p>Välkommen att göra ett miljökonstverk, som blir en del av Helsingforsbiennalen nästa sommar!</p><p>Verket som helhet är summan av de delar som görs under konstworkshopparna, och därför är varje deltagares insats och avtryck betydelsefullt för verkets uppkomst.</p><p>Earth, Water, Air, Fire, Void (Jord, Lyft, Vatten, Eld, Tomrum) grundar sig på en idé av den filippinska konstnären Geraldine Javier, och behandlar människans förhållande till naturen och hur vi kan leva interaktivt i förhållande till vår miljö. En del av verket är de skyddande talismaner, som vi gör i workshopparna. De består av ståltråd som har böjts till olika symboler och svepts in i återvinningstyger.</p><p>Talismanernas symboler inhämtar inspiration ur naturen, och har plockats från både den finländska och den filippinska kulturen. I juni hängs de upp i sex lönnar på Esplanaden, där de bildar en enda stor helhet. Talismanernas uppgift är att skydda de träd i vilka de hängts upp.</p><p>Konstworkshopparna är avgiftsfria och allt material finns på plats. Kom till Gamlasgårdens galleri och låt ditt handarbete stråla i det kommande konstverket för Helsingforsbiennalen! Konstworkshoppen är öppen 4–6.3. kl. 15.30–16.30.</p><p>Fritt inträde.</p><p>Helsingforsbiennalen firas 8.6.–21.9.2025 och evenemangsplatserna är HAM Helsingfors konstmuseum, Skanslandet och Esplanaden.</p>",
                "en": "<p>We welcome you to create an environmental artwork that will be part of the Helsinki Biennial that opens next summer!</p><p>The collection of artwork will be the sum of the pieces made in the workshops, so each participant’s contribution and handprint will be important to creating it.</p><p>Earth, Water, Air, Fire, Void, the work conceived by Filipino artist Geraldine Javier, explores the human relationship with nature and how we can live in a reciprocal relationship with our environment. One part of the work will be the protective talismans that we will make in art workshops. They are made with wire bent into different symbols and wrapped in recycled fabric.</p><p>The symbols of the talismans are drawn from nature and inspired by both Finnish and Filipino culture. In June, they will be hung on six maples on the Esplanade, where they will form one large collection. The talismans are meant to protect the trees on which they are hung.</p><p>The workshops are free of charge, and all materials will be available on-site. Come visit the Kanneltalo gallery, and let your handiwork shine in the upcoming Helsinki Biennial artwork! The art workshop is open 3–6<br>March, from 15:30 to 16:30.</p><p>Free admission.</p><p>The Helsinki Biennial will take place from 8 June to 21 September 2025, and the event venues will be HAM Helsinki Art Museum, Vallisaari and the Esplanade.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:64720/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65277",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:7256/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:32/?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:47/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:51/?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:p22193/?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:p6529/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153427,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-12T15:14:24.531681Z",
                    "last_modified_time": "2024-12-12T15:14:24.531695Z",
                    "name": "",
                    "url": "http://www.caisa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_759685.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153427/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-12T15:14:24.505179Z",
            "last_modified_time": "2025-01-14T12:14:59.000007Z",
            "date_published": null,
            "start_time": "2025-02-07T08: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.",
                "sv": "MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.",
                "en": "MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned."
            },
            "info_url": {
                "fi": "http://www.caisa.fi/fi/tapahtumat/event/52FD896328F923555A49305972E9C9F8/MUIAT_-_nykysirkusesitys",
                "sv": "http://www.caisa.fi/sv/evenemang/event/52FD896328F923555A49305972E9C9F8/MUIAT_-_nykysirkusesitys",
                "en": "http://www.caisa.fi/en/events/event/52FD896328F923555A49305972E9C9F8/MUIAT_-_nykysirkusesitys"
            },
            "location_extra_info": null,
            "name": {
                "fi": "MUIAT - nykysirkusesitys – koululaisnäytös | ilmoittautuminen kultus.fi",
                "sv": "MUIAT - nykysirkusesitys – koululaisnäytös | ilmoittautuminen kultus.fi",
                "en": "MUIAT - nykysirkusesitys – koululaisnäytös | ilmoittautuminen kultus.fi"
            },
            "description": {
                "fi": "<p>MUIAT on ihmispyramideja, nuorallatanssia ja huumoria sisältävä nykysirkusesitys.</p><p>Huulet painautuvat mutrulle, kun Anniinan posket liiskautuvat toisiaan vasten Kamillan reisilihasten väliin. Kamillan jalkapohjat ovat juurtuneet maahan ja hänen kylkiluunsa painautuvat sisäänpäin, kun Anniina puristaa käsiään niiden ympärille. Iitun hikinen tossu astuu Kamillan pään päälle sotkien juuri tehdyn kampauksen. Paine kasvaa Iitun pään sisällä, kun hän asettaa hartiansa Anniina jalkaterien päälle ja nostaa omat jalkansa ilmaan. Hameen helma nousee Iitun korvien ohi. Kamilla hymyilee.</p><p>MUIAT on rehellinen nykysirkusteos, jossa naiset saavat olla juuri sellaisia kuin he ovat, eikä heidän ominaisuuksiaan kyseenalaisteta. Teoksessa esiintyjät Kamilla Nisso, Iitu Kivimäki ja Anniina Peltovako tutkailevat naiseutta omien kokemustensa kautta hyödyntäen sirkusteniikan mahdollisuuksia ja fyysisen ilmaisun keinoja. Ihmispyramideja, nuorallatanssia ja akrobatiaa sisältävä esitys kyseenalaistaa vanhanaikaisia sukupuolirooleja ja pyrkii avartamaan katsojien mieltä, huumoria unohtamatta.</p><p>Ryhmille ilmoittautuminen: https://kultus.fi/fi</p><p>Esiintyjät/konsepti: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Pukusuunnittelu: Kitte Klemettilä  <br>Sävellys/musiikit: Joona Kukkola  <br>Valosuunnittelu: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Kieli: sanaton <br>Ikäsuositus: + 6-v <br>Tapahtuman kesto: 40 min, ei väliaikaa</p>",
                "sv": "<p>MUIAT är en samtida cirkusföreställning med mänskliga pyramider, lindans och humor.</p><p>Anniinas läppar pressas ihop när hennes kinder trycks samman mellan Kamillas lårmuskler. Kamillas fotsulor är rotade i marken och hennes revben pressas inåt när Anniina trycker sina händer runt dem. Iitu trampar på Kamillas huvud med sin svettiga toffel och förstör hennes nylagade frisyr. Trycket ökar i Iitu's huvud när hon lägger sina axlar på Anniina's fötter och lyfter sina egna ben upp i luften. Kjolens fåll lyfts upp över Iitus öron. Kamilla ler.</p><p>MUIAT är en ärlig modern cirkusföreställning där kvinnor får vara precis som de är och deras egenskaper inte ifrågasätts. Artisterna Kamilla Nisso, Iitu Kivimäki och Anniina Peltovako utforskar kvinnlighet genom sina egna erfarenheter, med hjälp av cirkusteknikens möjligheter och fysiska uttryck. Med mänskliga pyramider, lindans och akrobatik ifrågasätter föreställningen gammalmodiga könsroller och syftar till att öppna publikens sinnen, utan att glömma bort humorn.</p><p>Inget språk <br>Artister/koncept: Iitu Kivimäki, Kamilla Nisso, Anniina Peltovako <br>Kostymdesign: Kitte Klemettilä  <br>Komposition/musik: Joona Kukkola  <br>Ljusdesign: Jaakko Sirainen <br>Outside eye: Taina Kopra</p><p>Åldersrekommendation: 6+ <br>Evenemangets längd: 40 min, ingen paus</p>",
                "en": "<p>MUIAT is an honest contemporary circus show, where women are allowed to be exactly as they are and their qualities are not questioned.</p><p>Finnish circus artists Iitu Kivimäki, Kamilla Nisso and Anniina Peltovako explore feminity and their experience of living as female through their own experiences, using circus techniques as a way of expressing. The show includes human pyramids, tightwire dancing and acrobatics. It aims to question old fashioned gender roles and tries to broaden the minds of the public, without forgetting humour.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65277/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agj3jxlf7y",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:15395/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz656q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66by/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ru/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz675q/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/helmet:11733/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2149/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2901/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p556/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlcxm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxldd4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxldju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxldpe/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxldue/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxldye/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxld4a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxleay/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlefq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxleju/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxleoa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlesi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlewm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxle3a/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxle74/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlfem/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlfja/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlfnq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlfsa/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlfwe/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-11T08:10:00.925859Z",
            "last_modified_time": "2025-01-14T07:13:59.535932Z",
            "date_published": null,
            "start_time": "2025-01-14T15:00:00Z",
            "end_time": "2025-05-27T15:30:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Haluatko harjoitella suomen puhumista? ",
                "sv": "Vill du öva på att tala finska?",
                "en": "Would you like to practice speaking Finnish?"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Pääasiassa kokoustilat Meri ja Kari",
                "sv": "Främst i mötesrummen Meri och Kari.",
                "en": "Primarily in the meeting rooms Meri and Kari."
            },
            "name": {
                "fi": "Kielikahvila",
                "sv": "Språkcafé",
                "en": "Language café"
            },
            "description": {
                "fi": "<p>Kielikahvila on kaikille eri kulttuureista ja suomen kielestä kiinnostuneille avoin keskusteluhetki suomenkielellä.</p><p>Kielikahvila järjestetään kokoushuoneissa Meri ja Kari, joka tiistai klo 17–18.30.</p><p>Mukaan mahtuu 24 hlöä (12 / kokoushuone).</p>",
                "sv": "<p>Språkcaféet är en öppen diskussionsstund för alla som är intresserade av olika kulturer och det finska språket. Vi talar bara finska.</p><p>Språkcaféet hålls i mötesrummen Meri och Kari varje tisdag kl. 17–18.30.</p><p>Det finns plats för 24 personer (12 per mötesrum)</p>",
                "en": "<p>The language café is an open discussion session for everyone interested in different cultures and the Finnish language. We discuss in Finnish language only.</p><p>The language café is held in the meeting rooms Meri and Kari every Tuesday from 5:00 PM to 6:30 PM.</p><p>There is space for 24 people (12 per meeting room).</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agj3jxlf7y/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65171",
            "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:29/?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:p16919/?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-vuotalo-kino-vuotalo-vuotalo-19539958/",
                        "sv": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539958/",
                        "en": "https://www.lippu.fi/event/helsingin-kulttuurikeskus-vuotalo-kino-vuotalo-vuotalo-19539958/"
                    },
                    "price": {
                        "fi": "10 €",
                        "sv": "10 €",
                        "en": "10 €"
                    },
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153237,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-03T16:14:51.857661Z",
                    "last_modified_time": "2024-12-03T16:14:51.857678Z",
                    "name": "",
                    "url": "http://www.vuotalo.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_761728.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153237/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-03T16:14:51.819113Z",
            "last_modified_time": "2025-01-13T15:13:56.902653Z",
            "date_published": null,
            "start_time": "2025-01-22T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Ei koskaan yksin kertoo toisen maailmansodan aatosta, jolloin Euroopassa eletään pimeää aikaa ja Suomi ottaa vastaan pakolaisia Saksasta ja Itävallasta.",
                "sv": "Aldrig ensam berättar om tiden strax före utbrottet av andra världskriget, då man lever i en mörk tid i Europa och Finland tar emot flyktingar från Tyskland och Österrike.",
                "en": "Never Alone tells the story of the eve of World War II, when Europe is in a dark time and Finland accepts refugees from Germany and Austria."
            },
            "info_url": {
                "fi": "http://www.vuotalo.fi/fi/tapahtumat/event/77BCC5C2FAC5C370B072589C5082EF19/Ei_koskaan_yksin_12_",
                "sv": "http://www.vuotalo.fi/sv/evenemang/event/77BCC5C2FAC5C370B072589C5082EF19/Aldrig_ensam_12_",
                "en": "http://www.vuotalo.fi/en/events/event/77BCC5C2FAC5C370B072589C5082EF19/Never_Alone_12_"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Ei koskaan yksin (12) – Ensi-iltaviikon elokuva",
                "sv": "Aldrig ensam (12) – Premiärveckans film",
                "en": "Never Alone (12) – Premiere week film"
            },
            "description": {
                "fi": "<p>Ei koskaan yksin kertoo toisen maailmansodan aatosta, jolloin Euroopassa eletään pimeää aikaa ja Suomi ottaa vastaan pakolaisia Saksasta ja Itävallasta.</p><p>Pakolaisten auttamisen keskiössä on suomalainen liikemies ja hyväntekijä Abraham Stiller. Hän tekee kaikkensa auttaakseen Suomeen tulleita juutalaispakolaisia, jotka luovutetaan Suomesta keskitysleirille Auschwitziin. Elokuva kertoo heidän tarinansa.</p><p>Ohjaus: Klaus Härö<br>Näyttelijät: Ville Virtanen, Nina Hukkinen, Rony Herman, Naemi Latzer, Kari Hietalahti, Peter Kanerva, Hannu-Pekka Björkman</p><p>Kesto: 85 min<br>Kieli: suomi<br>Tekstitykset: ruotsi</p>",
                "sv": "<p>Aldrig ensam berättar om tiden strax före utbrottet av andra världskriget, då man lever i en mörk tid i Europa och Finland tar emot flyktingar från Tyskland och Österrike.</p><p>I filmens centrum står den finländske affärsmannen och välgöraren Abraham Stiller som hjälper flyktingar. Han gör allt han kan för att hjälpa de judiska flyktingar som kommer till Finland och som skickas till koncentrationslägret i Auschwitz. Filmen berättar deras historia.</p><p>Regi: Klaus Härö<br>I rollerna: Ville Virtanen, Nina Hukkinen, Rony Herman, Naemi Latzer, Kari Hietalahti, Peter Kanerva, Hannu-Pekka Björkman</p><p>Biljetter: 10 €<br>Längd: 85 min.<br>Språk: finska, textning: svenska</p>",
                "en": "<p>Never Alone tells the story of the eve of World War II, when Europe is in a dark time and Finland accepts refugees from Germany and Austria.</p><p>At the heart of helping refugees is Finnish businessman and philanthropist Abraham Stiller. He will do everything he can to help Jewish refugees who have come to Finland and are being handed over from Finland to a concentration camp in Auschwitz. The film tells their story.</p><p>Director: Klaus Härö<br>Cast: Ville Virtanen, Nina Hukkinen, Rony Herman, Naemi Latzer, Kari Hietalahti, Peter Kanerva, Hannu-Pekka Björkman</p><p>Tickets: €10<br>Duration: 85 min<br>Language: Finnish, subtitles: Swedish</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65171/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65276",
            "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: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/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153731,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-13T14:14:22.435581Z",
                    "last_modified_time": "2025-01-13T14:14:22.435598Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764377.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153731/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-13T14:14:22.400684Z",
            "last_modified_time": "2025-01-13T14:14:22.536305Z",
            "date_published": null,
            "start_time": "2025-05-07T14:00:00Z",
            "end_time": "2025-05-07T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tee arkeen luova tauko ja istahda hetkeksi iltateelle Box Stoaan!",
                "sv": "Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!",
                "en": "Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/5110FAD2C0C118ED637155A25435E800/Taidetauko-tyopajat",
                "sv": "http://www.stoa.fi/sv/evenemang/event/5110FAD2C0C118ED637155A25435E800/Konstpaus-workshoppar",
                "en": "http://www.stoa.fi/en/events/event/5110FAD2C0C118ED637155A25435E800/Art_break_workshops"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Taidetauko-työpajat – Perhosen siivet",
                "sv": "Konstpaus-workshoppar – Fjärilsvingar",
                "en": "Art break workshops – Butterfly wings"
            },
            "description": {
                "fi": "<p>Tee arkeen luova tauko ja istahda hetkeksi iltateelle Box Stoaan!</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Ravintola Box Stoassa on osallistujille tarjolla iltateetä tai mehua.</p><p><b>Ke 7.5. Perhosen siivet (Indian Ink ja Nan King -tussit) </b><br>Pyydystetään perhosia mustepiirroksiin – voit taiteilla vaikka kortin äitienpäiväksi.<br> <br>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Ravintola Box Stoa<br>Kesto: 120 min per kerta</p><p>Pajojen ohjauskieli: suomi, ranska ja englanti</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>",
                "sv": "<p>Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!</p><p>I Konstpaus-workshopparna berikas din vardag med lugnt konsthantverk som är lätt att lära sig. Restaurang Box Stoa bjuder deltagarna på kvällste eller saft.</p><p><b>Ons. 7.5 Fjärilsvingar (Indian Ink- och Nan King-tuscher) </b><br>Kom och fånga fjärilar i bläckteckningar! Du kan till exempel laga ett morsdagskort.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Restaurang Box Stoa<br>Längd: 120 min per gång</p><p>Workshopparna handleds på finska, franska och engelska</p><p>Fritt inträde. Ingen förhandsanmälan. <br>Stoa bjuder deltagarna på kvällste.</p>",
                "en": "<p>Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!</p><p>In art break workshops, you get to enrich your daily life with easy-to-acquire, unhurried craftsmanship. Restaurant Box Stoa provides participants evening tea or juice.</p><p><b>Wed, 7 May Butterfly wings (India Ink and Nan King markers) </b><br>We’ll be catching butterflies with ink drawings – you can even make a card for Mother’s Day.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Restaurant Box Stoa<br>Duration: 120 min per session<br>Workshop instruction language: Finnish, French and English</p><p>Admission is free. No advance registration. <br>Stoa provides evening tea for participants.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65276/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65271",
            "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: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/kulke:668/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/kulke:732/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p1377/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p38064/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p39924/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p40387/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p6455/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153730,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2025-01-13T13:14:30.196353Z",
                    "last_modified_time": "2025-01-13T13:14:30.196369Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_764376.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153730/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2025-01-13T13:14:30.170368Z",
            "last_modified_time": "2025-01-13T14:14:19.141467Z",
            "date_published": null,
            "start_time": "2025-04-09T14:00:00Z",
            "end_time": "2025-04-09T16: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tee arkeen luova tauko ja istahda hetkeksi iltateelle Box Stoaan!",
                "sv": "Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!",
                "en": "Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/43BC584A9530A220FF6B43C7BD38DBDA/Taidetauko-tyopajat",
                "sv": "http://www.stoa.fi/sv/evenemang/event/43BC584A9530A220FF6B43C7BD38DBDA/Konstpaus-workshoppar",
                "en": "http://www.stoa.fi/en/events/event/43BC584A9530A220FF6B43C7BD38DBDA/Art_break_workshops"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Taidetauko-työpajat – Pörröiset pääsiäismunat",
                "sv": "Konstpaus-workshoppar – Fluffiga påskägg",
                "en": "Art break workshops – Fluffy Easter eggs"
            },
            "description": {
                "fi": "<p>Tee arkeen luova tauko ja istahda hetkeksi iltateelle Box Stoaan!</p><p>Taidetauko -pajoissa arki rikastuu helposti haltuun otettavilla, kiireettömillä kädentaidoilla. Ravintola Box Stoassa on osallistujille tarjolla iltateetä tai mehua.</p><p><b>Ke 9.4. Pörröiset pääsiäismunat (huovutus)</b><br>Saippuahuovutus on kaikkien aistien menetelmä. Pajassa valmistaudutaan pääsiäiseen huovuttamalla värikkäitä pääsiäismunia.</p><p>Ohjaaja: Chloé Mahy-Hulkko <br>Paikka: Ravintola Box Stoa<br>Kesto: 120 min per kerta</p><p>Pajojen ohjauskieli: suomi, ranska ja englanti</p><p>Vapaa pääsy. Ei ennakkoilmoittautumista. Stoa tarjoaa osallistujille iltateetä.</p>",
                "sv": "<p>Ta en kreativ paus i vardagen och slå ner dig en stund i Stoas restaurang på kvällste!</p><p>I Konstpaus-workshopparna berikas din vardag med lugnt konsthantverk som är lätt att lära sig. Restaurang Box Stoa bjuder deltagarna på kvällste eller saft.</p><p><b>Ons. 9.4 Fluffiga påskägg (tovning)</b><br>Tvåltovning är en metod för alla sinnen. Under verkstaden förbereder vi oss för påsken genom att tova färggranna påskägg.</p><p>Handledare: Chloé Mahy-Hulkko <br>Plats: Restaurang Box Stoa</p><p>Längd: 120 min per gång<br>Workshopparna handleds på finska, franska och engelska</p><p>Fritt inträde. Ingen förhandsanmälan. <br>Stoa bjuder deltagarna på kvällste.</p>",
                "en": "<p>Take a creative break from everyday life and sit down for evening tea at Stoa's restaurant!</p><p>In art break workshops, you get to enrich your daily life with easy-to-acquire, unhurried craftsmanship. Restaurant Box Stoa provides participants evening tea or juice.</p><p><b>Wed, 9 April Fluffy Easter eggs (felting)</b><br>Soap felting is a method that involves all the senses. In this workshop, we’ll prepare for Easter by felting colourful Easter eggs.</p><p>Instructor: Chloé Mahy-Hulkko <br>Location: Restaurant Box Stoa<br>Duration: 120 min per session</p><p>Workshop instruction language: Finnish, French and English</p><p>Admission is free. No advance registration. <br>Stoa provides evening tea for participants.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65271/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "kulke:65054",
            "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: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:51/?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:625/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p16650/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p17089/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p22193/?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:p5578/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p7277/?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,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "kulke",
            "publisher": "ahjo:u48040010",
            "sub_events": [],
            "images": [
                {
                    "id": 153487,
                    "has_user_editable_resources": false,
                    "license": "event_only",
                    "license_url": "",
                    "created_time": "2024-12-18T12:14:45.245268Z",
                    "last_modified_time": "2024-12-18T12:14:45.245285Z",
                    "name": "",
                    "url": "http://www.stoa.fi/instancedata/prime_product_resurssivaraus/kulke/embeds/EventPic_763746.jpg",
                    "cropping": "",
                    "photographer_name": null,
                    "alt_text": null,
                    "data_source": "kulke",
                    "publisher": "ahjo:u48040010",
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/image/153487/?format=api",
                    "@context": "http://schema.org",
                    "@type": "ImageObject"
                }
            ],
            "videos": [],
            "in_language": [],
            "audience": [],
            "created_time": "2024-12-18T12:14:45.218788Z",
            "last_modified_time": "2025-01-13T14:14:04.709855Z",
            "date_published": null,
            "start_time": "2025-01-28T14:00:00Z",
            "end_time": "2025-04-15T14: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,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Stoan suositut sirkuskurssit tulevat taas!",
                "sv": "Stoas populära cirkuskurser är tillbaka! - KURSEN ÄR FULL",
                "en": "Stoa's popular circus courses are back! - FULLY BOOKED"
            },
            "info_url": {
                "fi": "http://www.stoa.fi/fi/tapahtumat/event/A54B6E67ADF18B82D656A37D289D1F3A/Sirkuskurssi_senioreille_2",
                "sv": "http://www.stoa.fi/sv/evenemang/event/A54B6E67ADF18B82D656A37D289D1F3A/Cirkus_for_seniorer_2",
                "en": "http://www.stoa.fi/en/events/event/A54B6E67ADF18B82D656A37D289D1F3A/Circus_course_for_seniors_2"
            },
            "location_extra_info": null,
            "name": {
                "fi": "Sirkuskurssi senioreille 2 – Seikkailun mestarit - KURSSI ON TÄYNNÄ",
                "sv": "Cirkus för seniorer 2",
                "en": "Circus course for seniors 2 – The Master Class of Adventure"
            },
            "description": {
                "fi": "<p>Stoan suositut sirkuskurssit tulevat taas!</p><p>Liikunnan ei tarvitse olla tylsää! Senioreiden kymmenen opetuskerran sirkuskurssilla tehdään muun muassa tasapaino- ja liikkuvuusharjoituksia sirkusvälineillä.</p><p>Sirkusliikuntataidot pidentävät elinikää ja parantavat elämänlaatua, sillä ne keskittyvät etenkin ikääntyviä koskeviin tarpeisiin, kuten tasapainoon ja notkeuteen, muistiin ja virkeyteen, kiputilojen vähentämiseen ja sosiaaliseen kanssakäymiseen. Kevyet ja tehokkaat venytys- ja liikerataharjoitukset parantavat ja ylläpitävät vartalon koordinaatiota, tasapainoa ja kehonhallintaa. Laji ei vaadi pohjakuntoa, vaan pelkkä halu oppia uusia taitoja hauskalla tavalla riittää. Tervetuloa mukaan – rohkeus palkitaan!</p><p>”Seniorisirkuskurssi Stoassa on paljon enemmän kuin pelkkä aktiviteettien sarja – se on matka itseen, itsensä löytämiseen ja itseilmaisuun. Tarjoamme opiskelijoillemme ilmapiirin, joka ei ainoastaan tue ja kehitä taitoja, vaan myös vahvistaa itsevarmuutta, sinnikkyyttä, luovuutta, kehotietoisuutta ja koordinaatiota. Kurssi yhdistää ainutlaatuisella tavalla hyvinvointia, sirkustaiteita ja sosiaalista vuorovaikutusta sekä rohkaisee opiskelijoitamme tutkimaan, innovoimaan ja loistamaan omalla ainutlaatuisella tavalla.” <br>- Sirkusohjaaja <b>Enrique Salas</b></p><p><b>Huom! Sirkuskurssia ei järjestetä 4.3.2025.</b></p><p>Aika: ti 28.1.–15.4. (ei 4.3.) klo 14.30–15.30 <br>Paikka: Stoan musiikkisali<br>Kesto: 10 x 60 min    <br>Ohjaaja: sirkusohjaaja Enrique Salas <br>Kieli: englanti, espanja, suomi <br>Maksuton</p><p>Ennakkoilmoittautuminen ma 7.1. klo 10 alkaen: stoa.fi, tapahtuman kohdalla, ruudun oikealla olevan Ilmoittaudu-näppäimen kautta.</p>",
                "sv": "<p>Stoas populära cirkuskurser är tillbaka! - KURSEN ÄR FULL</p><p>Under den roliga cirkuskursen får man bland annat göra balans- och rörlighetsövningar med cirkusredskap.</p><p>Cirkuskonst är ett förträfflig sätt att förlänga livet och öka livskvaliteten genom att fokusera på behov som är specifikt kopplade till åldrande, inklusive balans och vighet, minne och minnesprocesser, smärthantering och sociala relationer. Inga krav ställs på kondition eller former – det enda målet är att ha roligt och lära sig nya saker, göra lätta till moderata stretchövningar samt en rad konditionsaktiviteter som syftar till förbättrad och bibehållen koordination mellan händerna, balans och hållning. Aktiviteterna kan göras sittande eller stående.</p><p><b>Obs! Cirkuskursen ordnas inte den 4.3.2025.</b></p><p>Tid: ti 28.1–15.4 (inte 4.3) kl. 14.30–15.30<br>Åldersrekommendation: för seniorer <br>Längd: 10 x 60 min <br>Instruktör: cirkusinstruktören och artisten Enrique Salas<br>Språk: engelska, spanska och finska</p><p>Fritt inträde<br>Obligatorisk förhandsregistrering fr.o.m. 7.1.2025 kl 10</p>",
                "en": "<p>Stoa's popular circus courses are back! - FULLY BOOKED</p><p>At the senior circus course, the participants get to, for example, practice their balance and mobility using circus equipment.</p><p>Circus skills are excellent to increase longevity and boost the quality of life by addressing needs specific to aging including balance and flexibility, memory and processing, pain management, and social connection. It is not necessary for any condition or shape just the aim for fun and learning new skills, light to moderate stretching and range of motion activities to improve and maintain bi-manual coordination, balance, and postural control.</p><p>“Our Senior Circus Programme at Stoa is more than just a series of activities; it's a journey of self-discovery and self-expression. We immerse our students in an atmosphere that not only fosters and develops skills but also builds confidence, resilience, creativity, proprioception, and coordination among others. We offer a unique blend of well-being, circus arts, and social interaction encouraging our students to explore, innovate, and shine on their own unique stage of age.” <br>- Circus instructor and performer <b>Enrique Salas</b></p><p><b>Note! The circus course will not be held on 4 March 2025.</b></p><p>Time: Tue 28 Jan–15 Apr (except 4 Mar) at 14:30–15:30 <br>Age recommendation: for senior citizens <br>Duration: 10 x 60 min <br>Instructor: circus instructor and performer Enrique Salas <br>Languages: English, Spanish, Finnish</p><p>Free entry <br>Pre-registration starting from 7.1. at 10 a.m.</p>"
            },
            "provider": null,
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/kulke:65054/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        },
        {
            "id": "espoo_le:agmk23elk4",
            "has_user_editable_resources": false,
            "location": {
                "@id": "https://linkedevents.api.test.hel.ninja/v1/place/tprek:63115/?format=api"
            },
            "keywords": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66fq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66hi/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66ky/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz66mq/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz67i4/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p10727/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p2787/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p360/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/yso:p4354/?format=api"
                }
            ],
            "registration": null,
            "super_event": null,
            "event_status": "EventScheduled",
            "type_id": "General",
            "external_links": [],
            "offers": [
                {
                    "is_free": true,
                    "offer_price_groups": [],
                    "info_url": null,
                    "price": null,
                    "description": null
                }
            ],
            "data_source": "espoo_le",
            "publisher": "espoo:sito",
            "sub_events": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ekgm/?format=api"
                },
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23ekzm/?format=api"
                }
            ],
            "images": [],
            "videos": [],
            "in_language": [],
            "audience": [
                {
                    "@id": "https://linkedevents.api.test.hel.ninja/v1/keyword/espoo_le:agggfz7av4/?format=api"
                }
            ],
            "created_time": "2025-01-13T14:05:45.658041Z",
            "last_modified_time": "2025-01-13T14:05:45.658065Z",
            "date_published": null,
            "start_time": "2025-01-20T07:30:00Z",
            "end_time": "2025-05-26T08:00:00Z",
            "custom_data": null,
            "environmental_certificate": null,
            "environment": null,
            "audience_min_age": null,
            "audience_max_age": null,
            "super_event_type": "recurring",
            "deleted": false,
            "maximum_attendee_capacity": null,
            "minimum_attendee_capacity": null,
            "enrolment_start_time": null,
            "enrolment_end_time": null,
            "local": false,
            "replaced_by": null,
            "provider_contact_info": null,
            "short_description": {
                "fi": "Tervetuloa Lippulaivan perhekahvilaan maanantaisin klo 9.30 - 11.00!",
                "sv": "Välkommen till Lippulaivan-bibliotekets familjecafé på måndagar kl. 9.30-11.00!",
                "en": "Welcome to the Lippulaiva Library's Family Café on Mondays at 9.30 - 11.00!"
            },
            "info_url": null,
            "location_extra_info": {
                "fi": "Kajuutta",
                "sv": "Kajuutta",
                "en": "Kajuutta"
            },
            "name": {
                "fi": "MLL-perhekahvila",
                "sv": "MLL Familjecafé",
                "en": "MLL Family Café"
            },
            "description": {
                "fi": "<p>Tervetuloa Lippulaivan perhekahvilaan!</p><p>MLL:n perhekahvilassa voit tutustua oman alueen vanhempiin, löytää lapselle leikkiseuraa ja ihan vain hengähtää hetken.</p><p>MLL Soukan yhdistys käynnistää perhekahvilan Lippulaivan kirjaston suuressa kokoustila Kajuutassa 13.1. klo 9.30 - 11.00 alkaen</p><p>Tarjolla pientä purtavaa.</p>",
                "sv": "<p>Välkommen till Lippulaiva biblioteks familjecafé! Familjecaféet ordnas av Mannerheims Barnskyddsförbund (Mannerheimin lastensuojeluliitto/Soukka regionen).</p><p><br></p><p>På MLL:s familjecafé kan du lära känna andra föräldrar i närområdet, hitta en lekkamrat till ditt barn och bara ta en stund för att hämta andan.</p><p><br></p><p>Familjecaféet samlas i det stora mötesrummet Kajuuta 13.1. - 26.5. från kl. 9.30 till 11.00 varje måndag.</p><p><br></p><p>Lättare tilltugg serveras.</p>",
                "en": "<p>Welcome to the Lippulaiva library's family café! The family cafe is organised by Mannerheim League for Child Welfare (Mannerheimin lastensuojeluliitto/Soukka region).</p><p><br></p><p>At the MLL Family Café you can get to know other parents in your local area, find a playmate for your child and just take a moment to catch your breath.</p><p><br></p><p>The Family Café gathers in large meeting room Kajuuta 13.1. - 26.5.&nbsp;from klo 9.30 to 11.00 every Monday.</p><p><br></p><p>Light snacks will be served.</p>"
            },
            "provider": {
                "fi": "Mannerheimin lastensuojeluliitto, Soukan yhdistys",
                "sv": "Mannerheimin lastensuojeluliitto, Soukan yhdistys",
                "en": "Mannerheimin lastensuojeluliitto, Soukan yhdistys"
            },
            "@id": "https://linkedevents.api.test.hel.ninja/v1/event/espoo_le:agmk23elk4/?format=api",
            "@context": "http://schema.org",
            "@type": "Event/LinkedEvent"
        }
    ]
}