The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Acme::MorningMusume::YaguchiMari;

use strict;
use warnings;

use base qw(Acme::MorningMusume::Base);

our $VERSION = '0.04';

sub info {
    return (
        first_name_ja  => '真里',
        family_name_ja => '矢口',
        first_name_en  => 'Mari',
        family_name_en => 'Yaguchi',
        nick           => [qw(まりっぺ やぐたん)],
        birthday       => Date::Simple->new('1983-01-20'),
        blood_type     => 'A',
        hometown       => '神奈川県',
        emoticon       => ['(~^◇^~)', '(~^◇^)'],
        class          => 2,
        graduate_date  => Date::Simple->new('2005-04-14'),
    );
}

1;