He Died with a Felafel in His Hand

Cast (41)

  • Noah Taylor

    Noah Taylor

    Danny

  • Emily Hamilton

    Emily Hamilton

    Sam

  • Romane Bohringer

    Romane Bohringer

    Anya

  • Alex Menglet

    Alex Menglet

    Taylor

  • Brett Stewart

    Brett Stewart

    Flip

  • Damian Walshe-Howling

    Damian Walshe-Howling

    Milo

  • Sophie Lee

    Sophie Lee

    Nina

  • Francis McMahon

    Francis McMahon

    Dirk

  • Ian Hughes

    Ian Hughes

    Iain the Socialist

  • Robert H. Rimmer

    Robert H. Rimmer

    Derek the Bank Clerk

  • Sayuri Tanoue

    Sayuri Tanoue

    Satomi Tiger

  • Linal Haft

    Linal Haft

    Brisbane Goon #1

  • Nathan Kotzur

    Nathan Kotzur

    Brisbane Goon #2

  • Haskel Daniel

    Haskel Daniel

    Jabber

  • Skye Wansey

    Skye Wansey

    Detective O'Neill

  • Ivan Tatarovic

    Ivan Tatarovic

    Uptight

  • Tim Robertson

    Tim Robertson

    Melbourne Detective #1

  • Robert Morgan

    Robert Morgan

    Melbourne Detective #2

  • Clayton Jacobson

    Clayton Jacobson

    Repo Man

  • Scott Major

    Scott Major

    Welfare Officer

  • Pascal Delair

    Pascal Delair

    The Bride

  • Wendy Roberts

    Wendy Roberts

    Cashmere Sweater Babe

  • Graeme Carroll

    Graeme Carroll

    Rugby Man

  • Terry Serio

    Terry Serio

    Sydney Policeman #1

  • Steve Bastoni

    Steve Bastoni

    Sydney Policeman #2

  • Chris Samios

    Chris Samios

    Young Singing Skin

  • Keeryn Gill

    Keeryn Gill

    Walking Mother

  • Benjamin Rich

    Benjamin Rich

    Baby in Stroller

  • Rebecca Cutler

    Rebecca Cutler

    Bridesmaid

  • Rani Hayman

    Rani Hayman

    Flowergirl

  • Stuart Nicholls

    Stuart Nicholls

    Groom

  • Harry Brentnall

    Harry Brentnall

    Groomsman

  • Norris Blanks

    Norris Blanks

    Male Guest

  • Jilly Ferguson

    Jilly Ferguson

    Female Guest

  • Jon Wicks

    Jon Wicks

    Photographer

  • Simon Wheeler

    Simon Wheeler

    O'Neill's Partner

  • Matt Dunk

    Matt Dunk

    Dirk's Friend

  • Michael Fawaz

    Michael Fawaz

    Taxi Driver

  • Skye Gamblin

    Skye Gamblin

    Cashmere Sweater orgasmic vocals

  • Torquil Neilson

    Torquil Neilson

    Rugby Man animalistic grunts

  • Glenn Newnham

    Glenn Newnham

    Brisbane Landlord phone vocal

Crew (51)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
He Died with a Felafel in His Hand

Cast (41)

  • Noah Taylor

    Noah Taylor

    Danny

  • Emily Hamilton

    Emily Hamilton

    Sam

  • Romane Bohringer

    Romane Bohringer

    Anya

  • Alex Menglet

    Alex Menglet

    Taylor

  • Brett Stewart

    Brett Stewart

    Flip

  • Damian Walshe-Howling

    Damian Walshe-Howling

    Milo

  • Sophie Lee

    Sophie Lee

    Nina

  • Francis McMahon

    Francis McMahon

    Dirk

  • Ian Hughes

    Ian Hughes

    Iain the Socialist

  • Robert H. Rimmer

    Robert H. Rimmer

    Derek the Bank Clerk

  • Sayuri Tanoue

    Sayuri Tanoue

    Satomi Tiger

  • Linal Haft

    Linal Haft

    Brisbane Goon #1

  • Nathan Kotzur

    Nathan Kotzur

    Brisbane Goon #2

  • Haskel Daniel

    Haskel Daniel

    Jabber

  • Skye Wansey

    Skye Wansey

    Detective O'Neill

  • Ivan Tatarovic

    Ivan Tatarovic

    Uptight

  • Tim Robertson

    Tim Robertson

    Melbourne Detective #1

  • Robert Morgan

    Robert Morgan

    Melbourne Detective #2

  • Clayton Jacobson

    Clayton Jacobson

    Repo Man

  • Scott Major

    Scott Major

    Welfare Officer

  • Pascal Delair

    Pascal Delair

    The Bride

  • Wendy Roberts

    Wendy Roberts

    Cashmere Sweater Babe

  • Graeme Carroll

    Graeme Carroll

    Rugby Man

  • Terry Serio

    Terry Serio

    Sydney Policeman #1

  • Steve Bastoni

    Steve Bastoni

    Sydney Policeman #2

  • Chris Samios

    Chris Samios

    Young Singing Skin

  • Keeryn Gill

    Keeryn Gill

    Walking Mother

  • Benjamin Rich

    Benjamin Rich

    Baby in Stroller

  • Rebecca Cutler

    Rebecca Cutler

    Bridesmaid

  • Rani Hayman

    Rani Hayman

    Flowergirl

  • Stuart Nicholls

    Stuart Nicholls

    Groom

  • Harry Brentnall

    Harry Brentnall

    Groomsman

  • Norris Blanks

    Norris Blanks

    Male Guest

  • Jilly Ferguson

    Jilly Ferguson

    Female Guest

  • Jon Wicks

    Jon Wicks

    Photographer

  • Simon Wheeler

    Simon Wheeler

    O'Neill's Partner

  • Matt Dunk

    Matt Dunk

    Dirk's Friend

  • Michael Fawaz

    Michael Fawaz

    Taxi Driver

  • Skye Gamblin

    Skye Gamblin

    Cashmere Sweater orgasmic vocals

  • Torquil Neilson

    Torquil Neilson

    Rugby Man animalistic grunts

  • Glenn Newnham

    Glenn Newnham

    Brisbane Landlord phone vocal

Crew (51)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
He Died with a Felafel in His Hand

Cast (41)

  • Noah Taylor

    Noah Taylor

    Danny

  • Emily Hamilton

    Emily Hamilton

    Sam

  • Romane Bohringer

    Romane Bohringer

    Anya

  • Alex Menglet

    Alex Menglet

    Taylor

  • Brett Stewart

    Brett Stewart

    Flip

  • Damian Walshe-Howling

    Damian Walshe-Howling

    Milo

  • Sophie Lee

    Sophie Lee

    Nina

  • Francis McMahon

    Francis McMahon

    Dirk

  • Ian Hughes

    Ian Hughes

    Iain the Socialist

  • Robert H. Rimmer

    Robert H. Rimmer

    Derek the Bank Clerk

  • Sayuri Tanoue

    Sayuri Tanoue

    Satomi Tiger

  • Linal Haft

    Linal Haft

    Brisbane Goon #1

  • Nathan Kotzur

    Nathan Kotzur

    Brisbane Goon #2

  • Haskel Daniel

    Haskel Daniel

    Jabber

  • Skye Wansey

    Skye Wansey

    Detective O'Neill

  • Ivan Tatarovic

    Ivan Tatarovic

    Uptight

  • Tim Robertson

    Tim Robertson

    Melbourne Detective #1

  • Robert Morgan

    Robert Morgan

    Melbourne Detective #2

  • Clayton Jacobson

    Clayton Jacobson

    Repo Man

  • Scott Major

    Scott Major

    Welfare Officer

  • Pascal Delair

    Pascal Delair

    The Bride

  • Wendy Roberts

    Wendy Roberts

    Cashmere Sweater Babe

  • Graeme Carroll

    Graeme Carroll

    Rugby Man

  • Terry Serio

    Terry Serio

    Sydney Policeman #1

  • Steve Bastoni

    Steve Bastoni

    Sydney Policeman #2

  • Chris Samios

    Chris Samios

    Young Singing Skin

  • Keeryn Gill

    Keeryn Gill

    Walking Mother

  • Benjamin Rich

    Benjamin Rich

    Baby in Stroller

  • Rebecca Cutler

    Rebecca Cutler

    Bridesmaid

  • Rani Hayman

    Rani Hayman

    Flowergirl

  • Stuart Nicholls

    Stuart Nicholls

    Groom

  • Harry Brentnall

    Harry Brentnall

    Groomsman

  • Norris Blanks

    Norris Blanks

    Male Guest

  • Jilly Ferguson

    Jilly Ferguson

    Female Guest

  • Jon Wicks

    Jon Wicks

    Photographer

  • Simon Wheeler

    Simon Wheeler

    O'Neill's Partner

  • Matt Dunk

    Matt Dunk

    Dirk's Friend

  • Michael Fawaz

    Michael Fawaz

    Taxi Driver

  • Skye Gamblin

    Skye Gamblin

    Cashmere Sweater orgasmic vocals

  • Torquil Neilson

    Torquil Neilson

    Rugby Man animalistic grunts

  • Glenn Newnham

    Glenn Newnham

    Brisbane Landlord phone vocal

Crew (51)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
He Died with a Felafel in His Hand

Cast (41)

  • Noah Taylor

    Noah Taylor

    Danny

  • Emily Hamilton

    Emily Hamilton

    Sam

  • Romane Bohringer

    Romane Bohringer

    Anya

  • Alex Menglet

    Alex Menglet

    Taylor

  • Brett Stewart

    Brett Stewart

    Flip

  • Damian Walshe-Howling

    Damian Walshe-Howling

    Milo

  • Sophie Lee

    Sophie Lee

    Nina

  • Francis McMahon

    Francis McMahon

    Dirk

  • Ian Hughes

    Ian Hughes

    Iain the Socialist

  • Robert H. Rimmer

    Robert H. Rimmer

    Derek the Bank Clerk

  • Sayuri Tanoue

    Sayuri Tanoue

    Satomi Tiger

  • Linal Haft

    Linal Haft

    Brisbane Goon #1

  • Nathan Kotzur

    Nathan Kotzur

    Brisbane Goon #2

  • Haskel Daniel

    Haskel Daniel

    Jabber

  • Skye Wansey

    Skye Wansey

    Detective O'Neill

  • Ivan Tatarovic

    Ivan Tatarovic

    Uptight

  • Tim Robertson

    Tim Robertson

    Melbourne Detective #1

  • Robert Morgan

    Robert Morgan

    Melbourne Detective #2

  • Clayton Jacobson

    Clayton Jacobson

    Repo Man

  • Scott Major

    Scott Major

    Welfare Officer

  • Pascal Delair

    Pascal Delair

    The Bride

  • Wendy Roberts

    Wendy Roberts

    Cashmere Sweater Babe

  • Graeme Carroll

    Graeme Carroll

    Rugby Man

  • Terry Serio

    Terry Serio

    Sydney Policeman #1

  • Steve Bastoni

    Steve Bastoni

    Sydney Policeman #2

  • Chris Samios

    Chris Samios

    Young Singing Skin

  • Keeryn Gill

    Keeryn Gill

    Walking Mother

  • Benjamin Rich

    Benjamin Rich

    Baby in Stroller

  • Rebecca Cutler

    Rebecca Cutler

    Bridesmaid

  • Rani Hayman

    Rani Hayman

    Flowergirl

  • Stuart Nicholls

    Stuart Nicholls

    Groom

  • Harry Brentnall

    Harry Brentnall

    Groomsman

  • Norris Blanks

    Norris Blanks

    Male Guest

  • Jilly Ferguson

    Jilly Ferguson

    Female Guest

  • Jon Wicks

    Jon Wicks

    Photographer

  • Simon Wheeler

    Simon Wheeler

    O'Neill's Partner

  • Matt Dunk

    Matt Dunk

    Dirk's Friend

  • Michael Fawaz

    Michael Fawaz

    Taxi Driver

  • Skye Gamblin

    Skye Gamblin

    Cashmere Sweater orgasmic vocals

  • Torquil Neilson

    Torquil Neilson

    Rugby Man animalistic grunts

  • Glenn Newnham

    Glenn Newnham

    Brisbane Landlord phone vocal

Crew (51)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
He Died with a Felafel in His Hand

Cast (41)

  • Noah Taylor

    Noah Taylor

    Danny

  • Emily Hamilton

    Emily Hamilton

    Sam

  • Romane Bohringer

    Romane Bohringer

    Anya

  • Alex Menglet

    Alex Menglet

    Taylor

  • Brett Stewart

    Brett Stewart

    Flip

  • Damian Walshe-Howling

    Damian Walshe-Howling

    Milo

  • Sophie Lee

    Sophie Lee

    Nina

  • Francis McMahon

    Francis McMahon

    Dirk

  • Ian Hughes

    Ian Hughes

    Iain the Socialist

  • Robert H. Rimmer

    Robert H. Rimmer

    Derek the Bank Clerk

  • Sayuri Tanoue

    Sayuri Tanoue

    Satomi Tiger

  • Linal Haft

    Linal Haft

    Brisbane Goon #1

  • Nathan Kotzur

    Nathan Kotzur

    Brisbane Goon #2

  • Haskel Daniel

    Haskel Daniel

    Jabber

  • Skye Wansey

    Skye Wansey

    Detective O'Neill

  • Ivan Tatarovic

    Ivan Tatarovic

    Uptight

  • Tim Robertson

    Tim Robertson

    Melbourne Detective #1

  • Robert Morgan

    Robert Morgan

    Melbourne Detective #2

  • Clayton Jacobson

    Clayton Jacobson

    Repo Man

  • Scott Major

    Scott Major

    Welfare Officer

  • Pascal Delair

    Pascal Delair

    The Bride

  • Wendy Roberts

    Wendy Roberts

    Cashmere Sweater Babe

  • Graeme Carroll

    Graeme Carroll

    Rugby Man

  • Terry Serio

    Terry Serio

    Sydney Policeman #1

  • Steve Bastoni

    Steve Bastoni

    Sydney Policeman #2

  • Chris Samios

    Chris Samios

    Young Singing Skin

  • Keeryn Gill

    Keeryn Gill

    Walking Mother

  • Benjamin Rich

    Benjamin Rich

    Baby in Stroller

  • Rebecca Cutler

    Rebecca Cutler

    Bridesmaid

  • Rani Hayman

    Rani Hayman

    Flowergirl

  • Stuart Nicholls

    Stuart Nicholls

    Groom

  • Harry Brentnall

    Harry Brentnall

    Groomsman

  • Norris Blanks

    Norris Blanks

    Male Guest

  • Jilly Ferguson

    Jilly Ferguson

    Female Guest

  • Jon Wicks

    Jon Wicks

    Photographer

  • Simon Wheeler

    Simon Wheeler

    O'Neill's Partner

  • Matt Dunk

    Matt Dunk

    Dirk's Friend

  • Michael Fawaz

    Michael Fawaz

    Taxi Driver

  • Skye Gamblin

    Skye Gamblin

    Cashmere Sweater orgasmic vocals

  • Torquil Neilson

    Torquil Neilson

    Rugby Man animalistic grunts

  • Glenn Newnham

    Glenn Newnham

    Brisbane Landlord phone vocal

Crew (51)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
He Died with a Felafel in His Hand

Cast (41)

  • Noah Taylor

    Noah Taylor

    Danny

  • Emily Hamilton

    Emily Hamilton

    Sam

  • Romane Bohringer

    Romane Bohringer

    Anya

  • Alex Menglet

    Alex Menglet

    Taylor

  • Brett Stewart

    Brett Stewart

    Flip

  • Damian Walshe-Howling

    Damian Walshe-Howling

    Milo

  • Sophie Lee

    Sophie Lee

    Nina

  • Francis McMahon

    Francis McMahon

    Dirk

  • Ian Hughes

    Ian Hughes

    Iain the Socialist

  • Robert H. Rimmer

    Robert H. Rimmer

    Derek the Bank Clerk

  • Sayuri Tanoue

    Sayuri Tanoue

    Satomi Tiger

  • Linal Haft

    Linal Haft

    Brisbane Goon #1

  • Nathan Kotzur

    Nathan Kotzur

    Brisbane Goon #2

  • Haskel Daniel

    Haskel Daniel

    Jabber

  • Skye Wansey

    Skye Wansey

    Detective O'Neill

  • Ivan Tatarovic

    Ivan Tatarovic

    Uptight

  • Tim Robertson

    Tim Robertson

    Melbourne Detective #1

  • Robert Morgan

    Robert Morgan

    Melbourne Detective #2

  • Clayton Jacobson

    Clayton Jacobson

    Repo Man

  • Scott Major

    Scott Major

    Welfare Officer

  • Pascal Delair

    Pascal Delair

    The Bride

  • Wendy Roberts

    Wendy Roberts

    Cashmere Sweater Babe

  • Graeme Carroll

    Graeme Carroll

    Rugby Man

  • Terry Serio

    Terry Serio

    Sydney Policeman #1

  • Steve Bastoni

    Steve Bastoni

    Sydney Policeman #2

  • Chris Samios

    Chris Samios

    Young Singing Skin

  • Keeryn Gill

    Keeryn Gill

    Walking Mother

  • Benjamin Rich

    Benjamin Rich

    Baby in Stroller

  • Rebecca Cutler

    Rebecca Cutler

    Bridesmaid

  • Rani Hayman

    Rani Hayman

    Flowergirl

  • Stuart Nicholls

    Stuart Nicholls

    Groom

  • Harry Brentnall

    Harry Brentnall

    Groomsman

  • Norris Blanks

    Norris Blanks

    Male Guest

  • Jilly Ferguson

    Jilly Ferguson

    Female Guest

  • Jon Wicks

    Jon Wicks

    Photographer

  • Simon Wheeler

    Simon Wheeler

    O'Neill's Partner

  • Matt Dunk

    Matt Dunk

    Dirk's Friend

  • Michael Fawaz

    Michael Fawaz

    Taxi Driver

  • Skye Gamblin

    Skye Gamblin

    Cashmere Sweater orgasmic vocals

  • Torquil Neilson

    Torquil Neilson

    Rugby Man animalistic grunts

  • Glenn Newnham

    Glenn Newnham

    Brisbane Landlord phone vocal

Crew (51)

session_start(); require_once 'includes/config.php'; require_once 'includes/functions.php'; require_once 'includes/tmdb_api.php'; $movie_id = (int)($_GET['id'] ?? 0); if (!$movie_id) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } $tmdb = new TMDB_API(); $movie = $tmdb->getMovieDetails($movie_id); if (!$movie) { header('HTTP/1.0 404 Not Found'); include '404.php'; exit; } // Group crew by department $crew_by_department = []; foreach ($movie['credits']['crew'] as $crew_member) { $department = $crew_member['department']; if (!isset($crew_by_department[$department])) { $crew_by_department[$department] = []; } $crew_by_department[$department][] = $crew_member; } ksort($crew_by_department); // Sort departments alphabetically $pageTitle = 'Cast & Crew for ' . htmlspecialchars($movie['title']); $pageDescription = 'Full cast and crew list for the movie ' . htmlspecialchars($movie['title']) . '.'; $pageImage = getImageUrl($movie['poster_path'], 'w500'); include 'includes/header.php'; ?>
He Died with a Felafel in His Hand

Cast (41)

  • Noah Taylor

    Noah Taylor

    Danny

  • Emily Hamilton

    Emily Hamilton

    Sam

  • Romane Bohringer

    Romane Bohringer

    Anya

  • Alex Menglet

    Alex Menglet

    Taylor

  • Brett Stewart

    Brett Stewart

    Flip

  • Damian Walshe-Howling

    Damian Walshe-Howling

    Milo

  • Sophie Lee

    Sophie Lee

    Nina

  • Francis McMahon

    Francis McMahon

    Dirk

  • Ian Hughes

    Ian Hughes

    Iain the Socialist

  • Robert H. Rimmer

    Robert H. Rimmer

    Derek the Bank Clerk

  • Sayuri Tanoue

    Sayuri Tanoue

    Satomi Tiger

  • Linal Haft

    Linal Haft

    Brisbane Goon #1

  • Nathan Kotzur

    Nathan Kotzur

    Brisbane Goon #2

  • Haskel Daniel

    Haskel Daniel

    Jabber

  • Skye Wansey

    Skye Wansey

    Detective O'Neill

  • Ivan Tatarovic

    Ivan Tatarovic

    Uptight

  • Tim Robertson

    Tim Robertson

    Melbourne Detective #1

  • Robert Morgan

    Robert Morgan

    Melbourne Detective #2

  • Clayton Jacobson

    Clayton Jacobson

    Repo Man

  • Scott Major

    Scott Major

    Welfare Officer

  • Pascal Delair

    Pascal Delair

    The Bride

  • Wendy Roberts

    Wendy Roberts

    Cashmere Sweater Babe

  • Graeme Carroll

    Graeme Carroll

    Rugby Man

  • Terry Serio

    Terry Serio

    Sydney Policeman #1

  • Steve Bastoni

    Steve Bastoni

    Sydney Policeman #2

  • Chris Samios

    Chris Samios

    Young Singing Skin

  • Keeryn Gill

    Keeryn Gill

    Walking Mother

  • Benjamin Rich

    Benjamin Rich

    Baby in Stroller

  • Rebecca Cutler

    Rebecca Cutler

    Bridesmaid

  • Rani Hayman

    Rani Hayman

    Flowergirl

  • Stuart Nicholls

    Stuart Nicholls

    Groom

  • Harry Brentnall

    Harry Brentnall

    Groomsman

  • Norris Blanks

    Norris Blanks

    Male Guest

  • Jilly Ferguson

    Jilly Ferguson

    Female Guest

  • Jon Wicks

    Jon Wicks

    Photographer

  • Simon Wheeler

    Simon Wheeler

    O'Neill's Partner

  • Matt Dunk

    Matt Dunk

    Dirk's Friend

  • Michael Fawaz

    Michael Fawaz

    Taxi Driver

  • Skye Gamblin

    Skye Gamblin

    Cashmere Sweater orgasmic vocals

  • Torquil Neilson

    Torquil Neilson

    Rugby Man animalistic grunts

  • Glenn Newnham

    Glenn Newnham

    Brisbane Landlord phone vocal

Crew (51)